WoW:UI XML tutorial: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (Move page script moved page UI XML tutorial to UI XML tutorial without leaving a redirect)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{uixml}}


This is a tutorial and reference for using WoW UI XML. ''Note: this guide assumes familiarity with XML; for a quick introduction, see [[XML basics]].''
== Preface ==
As a bit of a primer for this guide, here is a short list of XML element types, to give some perspective as you work through the next sections. See: [[XML types]], [[XML attributes]] and [[XML elements]], later for a more complete list of WoW UI XML references. ''Keep in mind that there is no official Blizzard documentation for any of this.'' For description and properties of each element follow link below.
==== Example Types ====
''These are usually first in the [[XML]] file.''
*[[XML_elements#Ui|Ui]] - This is the root element, holds all the others in the XML file (worry about later)
**[[XML_elements#Include|Include]] - You specify another XML to load too (ones not listed in ToC file)
**[[XML_elements#Script|Script]] - Refers to a script file (skipped in ToC file) or contains lua script inside
**[[XML_elements#Font|Font]] - Defines a font template (can be used only inside ui tag)
''These begin to actually define screen elements, and are later in the [[XML]] file.''
*[[XML_elements#Widgets|LayoutFrame]] - a basic visible WoW UI element. also called Widgets.
**[[XML_elements#Texture|Texture]] - defines a texture or visible image. is a LayoutFrame.
**[[XML_elements#FontString|FontString]] - This is just text to read. is also a LayoutFrame.
**[[XML_elements#Frame|Frame]] -  a visible 'window' and basic container for other elements. is a LayoutFrame too.
***[[XML_elements#Button|Button]] - button you can click. A Button is a Frame, A Frame is a LayoutFrame. :)
***[[XML_elements#CheckButton|CheckButton]] - This is checkbox, used in options
***[[XML_elements#EditBox|EditBox]] - You can enter text here
***[[XML_elements#ScrollFrame|ScrollFrame]] - Used in any window you need to scroll down (quest logs etc.)
***[[XML_elements#Slider|Slider]] - it's a scroll bar for scrolling frames
***[[XML_elements#TabardModel|TabardModel]] - used to select tabard
***[[XML_elements#WorldFrame|WorldFrame]] - A frame to hold the 3D game 'world'. All 3d rendered inside here.
***[[XML_elements#UIParent|UIParent]] - Top built-in WoW 'Frame'. Contains all the 2D UI when game is running.
== Introduction ==
[[World of Warcraft]] has a fairly powerful layout engine for creating [[user interface|user interfaces]].  When combined with [[Lua]] for attaching behaviours to UI elements, this creates a flexible system with which the game's entire UI is created, as well as any custom [[AddOns]]. The XML and the WoW XML UI serve as a fundemental component of this.  If you are unfamiliar with XML, consider visiting the [[XML Basic|XML Basics]] guide.
For more information on creating AddOns, see [[AddOns]], [[Interface customization]], [[World of Warcraft API]] and especially the [[Widget API]] which describes the programming aspects of all XML objects. A more detailed reference to all the XML elements WoW UI uses can be found under [[XML elements]].
Also note that the XML declaration, <code>&lt;?xml version="1.0"?&gt;</code>, may be omitted from UI .xml files.
Also note that as of version 1.10, all types of frames can also be created from Lua with the new [[API CreateFrame|CreateFrame()]] API.
== The Basics ==
An [[XML]] file is a collection of ''elements'' (with a start and end tag), of which the User Interface files are no exception. There are two main types of elements that appear in the UI XML files. The first type are those that declare user interface items or [[widget]]s, such as [[XML/Button|Button]]s, [[XML/Frame|Frames]], [[XML/CheckButton|Checkbox]]es. We will call these widget elements. The second type of element, which always occur inside the first type, define properties and behaviour of the widgets. We will call these property elements. Here is an example:
<Button name="MyAddon_Button">
  <Anchors>
    <Anchor point="CENTER"/>
  </Anchors>
</Button>
The [[XML/Button|Button]] element is of the first type, in other words a widget element. Its appearance in the XML file causes a Button with the name '''MyAddon_Button''' to be created. The elements inside it (such as [[Anchors]], Anchor) define its properties, hence are of the second type. The general structure is always the same, you have elements representing widgets, and other elements inside them representing their properties. It can also happen that a widget element is inside another one. For example:
<Frame name="MyAddon_Frame">
  <Anchors>
    <Anchor point="CENTER"/>
  </Anchors>
  <Frames>
    <Button name="MyAddon_Button">
      <Anchors>
        <Anchor point="CENTER"/>
      </Anchors>
    </Button>
  </Frames>
</Frame>
This example has two [[widget]] elements, [[XML/Frame|Frames]] and [[XML/Button|Button]], and several property elements ([[Anchors]], Anchor). This creates a Frame, with a Button inside it. Here, '''MyAddon_Button''' is a ''child'' of '''MyAddon_Frame''', and '''MyAddon_Frame''' is a ''parent'' of '''MyAddon_Button'''. Also note how the XML convention of abbreviating an empty element such as <Anchor point="CENTER"></Anchor> as <Anchor point="CENTER"/> is used.
Many of the elements (widget and property alike) can have ''attributes'', such as the '''name''' attribute in the above examples.
A complete and valid XML file must contain exactly one element named UI, with some rather long attributes (best use copy/paste for this). Hence a minimal example of a complete UI XML file would be something like:
<Ui xmlns="<nowiki>http://www.blizzard.com/wow/ui/</nowiki>"
  xmlns:xsi="<nowiki>http://www.w3.org/2001/XMLSchema-instance</nowiki>"
  xsi:schemaLocation="<nowiki>http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd</nowiki>">
    <Frame name="MyAddon_Frame">
    </Frame>
</Ui>
Such a file will create a single [[XML/Frame|Frames]], named '''MyAddon_Frame'''. However, that Frame wouldn't be visible and wouldn't have any content.
== Validation with XSD ==
If you use the Blizzard Interface Customization tool to extract the contents of the Interface\FrameXML folder, you will come across the file UI.xsd which provides a schema definition for automated validation of your customized XML-files. Notice that [http://www.w3.org/XML/Schema XSD] is an advanced XML feature and requires a special editor as well as a good knowledge of advanced XML-concepts. If you've already worked with XML you might find this very helpful to get started with WoW.
There is also an [http://dev.averageurl.com/wow/xml/ online validator] available, which will take any XML you throw at it and check it against Blizzard's schema definitions. Unfortunately, it is not much use as a "getting started" reference, but rather it is much more useful to check what is going wrong should you lack access to the heavier tools that support XML editing with XSD support natively. Further, due to the way that the XSD was designed, it can some times throw errors which are not actually a problem. Be sure to check the [http://dev.averageurl.com/wow/xml/faq/ FAQ] for more information.
== Naming Widgets ==
Every widget element may have the '''name''' attribute. If an element has a name, it causes a global Lua variable to be created with that name. This variable can then be used to call API methods on that widget. (See [[Widget API]] for a list of methods available for the different UI widgets.) Note that global variables are truly global across the entire UI, meaning that every name must be unique across all XML files.
Here is an example. Let's say in your XML file you have a section like this:
<Frame name="MyAddon_Frame">
  ..
  <Frames>
  <Button name="MyAddon_Button">
    ..
  </Button>
  </Frames>
</Frame>
In any Lua code then you can use the variable MyAddon_Frame to refer to the frame and MyAddon_Button to refer to the button. For example, to show the frame, call MyAddon_Frame:[[API LayoutFrame Show|Show()]]. Or to disable the button, call MyAddon_Button:[[API Button Disable|Disable]]().
When defining the name of a widget, the special string '''$parent''' may be used. This will take on the name of whatever the parent of that widget is. For example:
<Frame name="MyAddon_Frame">
  ..
  <Frames>
  <Button name="$parent_Button">
  ..
  </Button>
  </Frames>
</Frame>
This results in two global Lua variables: MyAddon_Frame and MyAddon_Frame_Button.
== Managing Frames ==
''Note:'' A lot of this section applies to all user interface [[widget]]s, not just [[frame]]s. Properties for layout, sizing and so on are common to all widgets.
=== Layout ===
Frames have a combination of a size and one or more [[anchors]].  For a frame to be laid out, the combination of these needs to define a rectangle on the screen in which the frame is to be laid out.
A size is specified using a <tt>Size</tt> element with either an <tt>AbsDimension</tt> or <tt>RelDimension</tt> child element.
[[Anchors]] allow for relative positioning, and also to allow frames to dynamically reposition their content based on resizing.  A group of anchors is expressed via an <tt>Anchors</tt> element with one or more <tt>Anchor</tt> children, each of which may have an <tt>Offset</tt>.
Some examples: ''TODO: Get screenshots of all of these''
<Frame>
  <Size><AbsDimension x="100" y="100"/></Size>
  <Anchors>
  <Anchor point="TOPLEFT"/>
  </Anchors>
</Frame>
This specifies a 100x100 frame anchored so that its top left is at the top left of its parent frame.
<Frame>
  <Size><RelDimension x="0.5" y="0.5"/> </Size>
  <Anchors>
  <Anchor point="LEFT"/>
  </Anchors>
</Frame>
This specifies a frame that covers a quarter of your [[UI]] (regardless to the selected resolution).
<Frame>
  <Size><AbsDimension x="100" y="100"/></Size>
  <Anchors>
  <Anchor point="TOPLEFT" relativePoint="TOPRIGHT"/>
  </Anchors>
</Frame>
This specifies a 100x100 frame [[anchor]]ed so that its top left is at the top right of its [[parent]] frame.
<Frame>
  <Size><AbsDimension x="100" y="100"/></Size>
  <Anchors>
  <Anchor point="TOPLEFT" relativeTo="SomeOtherFrame">
    <Offset><AbsDimension x="10" y="-10"/></Offset>
  </Anchor>
  </Anchors>
</Frame>
This specifies a 100x100 frame anchored at the top left of the frame <tt>SomeOtherFrame</tt>, and offset by 10 pixels to the right and 10 pixels down.  (Note that the Y axis increases from the bottom up, so negative Y coordinates indicate downwards movement).
<Frame>
  <Anchors>
  <Anchor point="TOPLEFT" relativeTo="SomeOtherFrame">
    <Offset><AbsDimension x="5" y="-5"/></Offset>
  </Anchor>
  <Anchor point="BOTTOMRIGHT" relativeTo="SomeOtherFrame">
    <Offset><AbsDimension x="-5" y="5"/></Offset>
  </Anchor>
  </Anchors>
</Frame>
Note that no <tt>Size</tt> is specified here; the size and location of this frame is defined entirely by its relationship to <tt>SomeOtherFrame</tt>.  In particular, it will be inset by 5 pixels from the top left and bottom right of <tt>SomeOtherFrame</tt>.  As <tt>SomeOtherFrame</tt> changes size, our frame will change size as well.
=== Showing/Hiding ===
Frames may be shown or hidden by [[API LayoutFrame Hide|''FrameName'':Hide()]] and [[API LayoutFrame Show|''FrameName'':Show()]].  Also available are [[API ShowUIPanel|ShowUIPanel(''FrameName'')]] and [[API HideUIPanel|HideUIPanel(''FrameName'')]].
=== Layers and Textures ===
There are five [[XML/DRAWLAYER|levels]] of [[layer]]s, although in practice you will often only assign objects to three of the five.  Of these three, BACKGROUND is in the back, ARTWORK is in the middle and OVERLAY is in front.  The only way to be certain of where and how much of your object is visible is to assign it to a specific layer.
BACKGROUND - Level 0. Place the background of your frame here.<BR />
BORDER - Level 1. Place the border art of your frame here .<BR />
ARTWORK - Level 2. Place the artwork of your frame here.<BR />
OVERLAY - Level 3. Place your text, objects, and buttons in this level<BR />
HIGHLIGHT - Level 4. Place your text, objects, and buttons in this level<BR />
*Elements in the '''HIGHLIGHT''' Layer are '''automatically shown or hidden''' when the mouse enters or leaves!
*For Highlighting to work you need '''enableMouse="true"''' in your ''<Frame>'' attributes.
''Note: The above are capitalized for a reason. See example:''<BR />
<pre>
<Layers>
  <Layer level="BACKGROUND">
    ...
  </Layer>
  <Layer level="ARTWORK">
    ...
  </Layer>
  <Layer level="OVERLAY">
    ...
  </Layer>
</Layers>
</pre>
=== Using Templates ===
Templates are used when you want to create a common layout for several frames. In this way you can save on the amount of code needed to recreate each frame, as the frames will automatically take on the properties, children, and attributes from whatever template it inherits. There are several rules that must be following when initially creating the template:
<ul><li>Templates are created at the root of the file. Meaning that you cannot have a template that is a child of another element</li><li>Templates must have their virtual attributes set to true</li><li>Templates must have a name, and it cannot use the $parent keyword</li><li>Children of a template do not need to be named, but when doing so, you should use the $parent keyword</li></ul><br/>
As discussed above, there is a special keyword that can be used when naming something inside the template. When you inherit a frame, any object inside the template that is inherited, which has the keyword $parent, will automatically replace the keyword with the name of the parent which inherited the template. Example:
<Button name="MyAddonButtonTemplate" parent="UIParent" virtual="true">
      <ButtonText name="$parentText"/>
</Button>
<Button name="MyAddonSpecialButton" inherits="MyAddonButtonTemplate">
      <Size><AbsDimension x="40" y="22"/></Size>
</Button>
Is the same as doing:
<Button name="MyAddonSpecialButton" parent="UIParent">
      <Size><AbsDimension x="40" y="22"/></Size>
      <ButtonText name="MyAddonSpecialButtonText"/>
</Button>
Be aware that any inherited attributes, properties, or children can also be overridden. Example:
<Button name="MyAddonButtonTemplate" parent="UIParent" movable="true" virtual="true">
      <ButtonText name="$parentText"/>
</Button>
<Button name="MyAddonSpecialButton" inherits="MyAddonButtonTemplate" movable="false">
      <Size><AbsDimension x="40" y="22"/></Size>
</Button>
Is the same as doing:
<Button name="MyAddonSpecialButton" parent="UIParent" movable="false">
      <Size><AbsDimension x="40" y="22"/></Size>
      <ButtonText name="MyAddonSpecialButtonText"/>
</Button>
Templates can inherit other templates as well. When done in this way, any $parent keywords used in the template being inherited carry over to the template that inherits it. Example:
<Button name="MyAddonButtonTemplate1" parent="UIParent" movable="true" virtual="true">
      <ButtonText name="$parentText"/>
</Button>
<Button name="MyAddonButtonTemplate2" clampedToScreen="true" inherits="MyAddonButtonTemplate1" virtual="true">
      <NormalFont inherits="GameFontNormal"/>
</Button>
<Button name="MyAddonSpecialButton" inherits="MyAddonButtonTemplate2">
      <Size><AbsDimension x="40" y="22"/></Size>
</Button>
Is the same as doing:
<Button name="MyAddonSpecialButton" parent="UIParent" clampedToScreen="true" movable="true">
      <Size><AbsDimension x="40" y="22"/></Size>
      <ButtonText name="MyAddonSpecialButtonText"/>
      <NormalFont inherits="GameFontNormal"/>
      <HighlightFont inherits="GameFontHighlight"/>
</Button>
== Scripts ==
To attach behaviour to the UI elements defined in the XML files, you must use Lua. There are two methods of attaching Lua code to UI elements.
* Short codes can go directly in the XML files in the appropriate event handler element (see later).
* Long codes should go in a separate .lua file, and included via a Script element.
To include Lua code via a Script element, you must have one or more <Script> elements at the start of the XML file. For example:
<Ui ... >
  <Script file="mycode.lua"/>
  <Frame name="MyFrame">
  ...
  </Frame>
</Ui>
When the XML file is read, the contents of the ''mycode.lua'' file is read and interpreted. The code in that file is then available for the rest of this XML file, ''and'' any XML files that are read ''after'' this one. Functions that are defined in ''mycode.lua'' can be called from event handlers in the XML file.
=== Basic Event Handling concepts ===
''If you are not used to event handled programming, read this section, otherwise you can skip right through it.''
Traditional programming style involves writing a program that has a start and finish. Execution starts at the beginning, and after following through the algorithm in the program, it eventually gets to the end.
Event handled programming is somewhat different. In this case, you create several, independent sections of code, with no clear start or finish. Each of these sections of code are designed to be executed in response to a certain event occurring. Such a section of code is called an ''event handler''. An event handler may get executed once, many times, or maybe even never. This kind of programming style is used whenever you want your code to interact with an external program, and do things in response to whatever that program is doing.
In the case of [[World of Warcraft]], the core game is external to the interface code. Whenever something happens in the game, it asks the interface code to respond to it, by calling one of the event handlers.
=== Handling UI Events ===
To handle UI events, you must include event handler elements in your XML code. You do this by having a Scripts element, inside of which you have one or more Onxxxx event handler elements. For example:
<Frame name="MyFrame">
  <Scripts>
  <OnShow>
    message("Hello!");
  </OnShow>
  </Scripts>
</Frame>
This frame has one event handler only, which is executed every time this Frame becomes visible. The contents of the OnShow element can be any valid Lua code. In this example, it's a single statement, which calls the function '''message''', which causes a dialog box to pop up with "Hello" inside it. ('''message''' is a function defined in BasicControls.xml and is available by default.)
Here is a more complete example of how you include Lua code and then reference it from the event handlers.
'''mymod.xml''':
<Ui ... >
  <Script file="mymod.lua"/>
  <Frame name="MyModMainFrame">
    <Scripts>
      <OnLoad>
        MyMod_ShowMessage();
      </OnLoad>
    </Scripts>
  </Frame>
</Ui>
'''mymod.lua''':
function MyMod_ShowMessage()
  message("Hello World!");
end
When '''MyModMainFrame''' gets loaded (which happens once, at the start of the game, when all the XML files are read in), the OnLoad handler gets executed. In this case, the single Lua statement there simply calls the MyMod_ShowMessage function.
It is recommended that you prefix the names of all of your functions, UI objects and global variables with the name of your AddOn like above; all data is shared between Blizzard's own UI and all your addons, so picking a unique prefix helps avoid clashes with other people's code.
''For the above example to actually work, you must either create an AddOn with the mymod.lua and mymod.xml files, or include them in the FrameXML directory and reference myframe.xml from FrameXML.toc.'' See [[AddOns]] on how to combine these files into an AddOn.
=== Event Handler reference ===
[[Widget Handlers]] is a complete reference of what event handlers can be used by each object type.
* ''Note'': the OnEvent handler is special (see below).
You will notice that the event handlers in the list mostly cover UI related events. The '''OnEvent''' handler is special in that it is a general, collective handler for a large number of other events. It gets called for any of the remaining hundreds of game related events. See [[Events (API)|Events]] for a list of game events and how to register for them and handle them.
== Default User Interface ==
The default user interface that is visible without any installed third-party addons is built into the MPQ files. It can't be modified because it is protected by a digital signature, but using the World of Warcraft Interface AddOn Kit ([http://us.battle.net/support/en/article/download-the-world-of-warcraft-interface-addon-kit US], [http://eu.battle.net/support/en/article/download-the-world-of-warcraft-interface-addonkit EU]) provided by Blizzard, the files can be extracted to see how the interface works.
== See also ==
* [[XML basics]]
* [[XML UI]]
== External links ==
;Official
{{elink|type=bnetus|site=Battle.net Support (US)|link=http://us.battle.net/support/en/article/download-the-world-of-warcraft-interface-addon-kit|desc=Download the World of Warcraft Interface AddOn Kit|bydate=Updated: Mar 8, 2012; Article ID: 533}}
{{elink|type=bnetus|site=Battle.net Support (EU)|link=http://eu.battle.net/support/en/article/download-the-world-of-warcraft-interface-addonkit|desc=Download the World of Warcraft Interface AddOnKit|bydate=Updated: 30-May-2012; Article ID: 533}}
;Other info
{{elink|site=wow.go-hero.net|link=http://wow.go-hero.net/framexml/builds|desc=Available FrameXML Builds|bydate=(.lua, .toc, and .xml viewer)}}
[[Category:Guides]]
[[Category:Interface customization]]

Latest revision as of 04:49, 15 August 2023

XML UI


This is a tutorial and reference for using WoW UI XML. Note: this guide assumes familiarity with XML; for a quick introduction, see XML basics.

Preface[edit]

As a bit of a primer for this guide, here is a short list of XML element types, to give some perspective as you work through the next sections. See: XML types, XML attributes and XML elements, later for a more complete list of WoW UI XML references. Keep in mind that there is no official Blizzard documentation for any of this. For description and properties of each element follow link below.

Example Types[edit]

These are usually first in the XML file.

  • Ui - This is the root element, holds all the others in the XML file (worry about later)
    • Include - You specify another XML to load too (ones not listed in ToC file)
    • Script - Refers to a script file (skipped in ToC file) or contains lua script inside
    • Font - Defines a font template (can be used only inside ui tag)

These begin to actually define screen elements, and are later in the XML file.

  • LayoutFrame - a basic visible WoW UI element. also called Widgets.
    • Texture - defines a texture or visible image. is a LayoutFrame.
    • FontString - This is just text to read. is also a LayoutFrame.
    • Frame - a visible 'window' and basic container for other elements. is a LayoutFrame too.
      • Button - button you can click. A Button is a Frame, A Frame is a LayoutFrame. :)
      • CheckButton - This is checkbox, used in options
      • EditBox - You can enter text here
      • ScrollFrame - Used in any window you need to scroll down (quest logs etc.)
      • Slider - it's a scroll bar for scrolling frames
      • TabardModel - used to select tabard
      • WorldFrame - A frame to hold the 3D game 'world'. All 3d rendered inside here.
      • UIParent - Top built-in WoW 'Frame'. Contains all the 2D UI when game is running.

Introduction[edit]

World of Warcraft has a fairly powerful layout engine for creating user interfaces. When combined with Lua for attaching behaviours to UI elements, this creates a flexible system with which the game's entire UI is created, as well as any custom AddOns. The XML and the WoW XML UI serve as a fundemental component of this. If you are unfamiliar with XML, consider visiting the XML Basics guide.

For more information on creating AddOns, see AddOns, Interface customization, World of Warcraft API and especially the Widget API which describes the programming aspects of all XML objects. A more detailed reference to all the XML elements WoW UI uses can be found under XML elements.

Also note that the XML declaration, <?xml version="1.0"?>, may be omitted from UI .xml files.

Also note that as of version 1.10, all types of frames can also be created from Lua with the new CreateFrame() API.

The Basics[edit]

An XML file is a collection of elements (with a start and end tag), of which the User Interface files are no exception. There are two main types of elements that appear in the UI XML files. The first type are those that declare user interface items or widgets, such as Buttons, Frames, Checkboxes. We will call these widget elements. The second type of element, which always occur inside the first type, define properties and behaviour of the widgets. We will call these property elements. Here is an example:

<Button name="MyAddon_Button">
  <Anchors>
    <Anchor point="CENTER"/>
  </Anchors>
</Button>

The Button element is of the first type, in other words a widget element. Its appearance in the XML file causes a Button with the name MyAddon_Button to be created. The elements inside it (such as Anchors, Anchor) define its properties, hence are of the second type. The general structure is always the same, you have elements representing widgets, and other elements inside them representing their properties. It can also happen that a widget element is inside another one. For example:

<Frame name="MyAddon_Frame">
  <Anchors>
    <Anchor point="CENTER"/>
  </Anchors>
  <Frames>
    <Button name="MyAddon_Button">
      <Anchors>
        <Anchor point="CENTER"/>
      </Anchors>
    </Button>
  </Frames>
</Frame>

This example has two widget elements, Frames and Button, and several property elements (Anchors, Anchor). This creates a Frame, with a Button inside it. Here, MyAddon_Button is a child of MyAddon_Frame, and MyAddon_Frame is a parent of MyAddon_Button. Also note how the XML convention of abbreviating an empty element such as <Anchor point="CENTER"></Anchor> as <Anchor point="CENTER"/> is used.

Many of the elements (widget and property alike) can have attributes, such as the name attribute in the above examples.

A complete and valid XML file must contain exactly one element named UI, with some rather long attributes (best use copy/paste for this). Hence a minimal example of a complete UI XML file would be something like:

<Ui xmlns="http://www.blizzard.com/wow/ui/"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd">
   <Frame name="MyAddon_Frame">
   </Frame>
</Ui>

Such a file will create a single Frames, named MyAddon_Frame. However, that Frame wouldn't be visible and wouldn't have any content.

Validation with XSD[edit]

If you use the Blizzard Interface Customization tool to extract the contents of the Interface\FrameXML folder, you will come across the file UI.xsd which provides a schema definition for automated validation of your customized XML-files. Notice that XSD is an advanced XML feature and requires a special editor as well as a good knowledge of advanced XML-concepts. If you've already worked with XML you might find this very helpful to get started with WoW.

There is also an online validator available, which will take any XML you throw at it and check it against Blizzard's schema definitions. Unfortunately, it is not much use as a "getting started" reference, but rather it is much more useful to check what is going wrong should you lack access to the heavier tools that support XML editing with XSD support natively. Further, due to the way that the XSD was designed, it can some times throw errors which are not actually a problem. Be sure to check the FAQ for more information.

Naming Widgets[edit]

Every widget element may have the name attribute. If an element has a name, it causes a global Lua variable to be created with that name. This variable can then be used to call API methods on that widget. (See Widget API for a list of methods available for the different UI widgets.) Note that global variables are truly global across the entire UI, meaning that every name must be unique across all XML files.

Here is an example. Let's say in your XML file you have a section like this:

<Frame name="MyAddon_Frame">
 ..
 <Frames>
  <Button name="MyAddon_Button">
   ..
  </Button>
 </Frames>
</Frame>

In any Lua code then you can use the variable MyAddon_Frame to refer to the frame and MyAddon_Button to refer to the button. For example, to show the frame, call MyAddon_Frame:Show(). Or to disable the button, call MyAddon_Button:Disable().

When defining the name of a widget, the special string $parent may be used. This will take on the name of whatever the parent of that widget is. For example:

<Frame name="MyAddon_Frame">
 ..
 <Frames>
  <Button name="$parent_Button">
  ..
  </Button>
 </Frames>
</Frame>

This results in two global Lua variables: MyAddon_Frame and MyAddon_Frame_Button.

Managing Frames[edit]

Note: A lot of this section applies to all user interface widgets, not just frames. Properties for layout, sizing and so on are common to all widgets.

Layout[edit]

Frames have a combination of a size and one or more anchors. For a frame to be laid out, the combination of these needs to define a rectangle on the screen in which the frame is to be laid out.

A size is specified using a Size element with either an AbsDimension or RelDimension child element.

Anchors allow for relative positioning, and also to allow frames to dynamically reposition their content based on resizing. A group of anchors is expressed via an Anchors element with one or more Anchor children, each of which may have an Offset.

Some examples: TODO: Get screenshots of all of these

<Frame>
 <Size><AbsDimension x="100" y="100"/></Size>
 <Anchors>
  <Anchor point="TOPLEFT"/>
 </Anchors>
</Frame>

This specifies a 100x100 frame anchored so that its top left is at the top left of its parent frame.

<Frame>
 <Size><RelDimension x="0.5" y="0.5"/> </Size>
 <Anchors>
  <Anchor point="LEFT"/>
 </Anchors>
</Frame>

This specifies a frame that covers a quarter of your UI (regardless to the selected resolution).

<Frame>
 <Size><AbsDimension x="100" y="100"/></Size>
 <Anchors>
  <Anchor point="TOPLEFT" relativePoint="TOPRIGHT"/>
 </Anchors>
</Frame>

This specifies a 100x100 frame anchored so that its top left is at the top right of its parent frame.

<Frame>
 <Size><AbsDimension x="100" y="100"/></Size>
 <Anchors>
  <Anchor point="TOPLEFT" relativeTo="SomeOtherFrame">
   <Offset><AbsDimension x="10" y="-10"/></Offset>
  </Anchor>
 </Anchors>
</Frame>

This specifies a 100x100 frame anchored at the top left of the frame SomeOtherFrame, and offset by 10 pixels to the right and 10 pixels down. (Note that the Y axis increases from the bottom up, so negative Y coordinates indicate downwards movement).

<Frame>
 <Anchors>
  <Anchor point="TOPLEFT" relativeTo="SomeOtherFrame">
   <Offset><AbsDimension x="5" y="-5"/></Offset>
  </Anchor>
  <Anchor point="BOTTOMRIGHT" relativeTo="SomeOtherFrame">
   <Offset><AbsDimension x="-5" y="5"/></Offset>
  </Anchor>
 </Anchors>
</Frame>

Note that no Size is specified here; the size and location of this frame is defined entirely by its relationship to SomeOtherFrame. In particular, it will be inset by 5 pixels from the top left and bottom right of SomeOtherFrame. As SomeOtherFrame changes size, our frame will change size as well.

Showing/Hiding[edit]

Frames may be shown or hidden by <i>FrameName</i>:Hide() and <i>FrameName</i>:Show(). Also available are ShowUIPanel(<i>FrameName</i>) and HideUIPanel(<i>FrameName</i>).

Layers and Textures[edit]

There are five levels of layers, although in practice you will often only assign objects to three of the five. Of these three, BACKGROUND is in the back, ARTWORK is in the middle and OVERLAY is in front. The only way to be certain of where and how much of your object is visible is to assign it to a specific layer.

BACKGROUND - Level 0. Place the background of your frame here.
BORDER - Level 1. Place the border art of your frame here .
ARTWORK - Level 2. Place the artwork of your frame here.
OVERLAY - Level 3. Place your text, objects, and buttons in this level
HIGHLIGHT - Level 4. Place your text, objects, and buttons in this level

  • Elements in the HIGHLIGHT Layer are automatically shown or hidden when the mouse enters or leaves!
  • For Highlighting to work you need enableMouse="true" in your <Frame> attributes.


Note: The above are capitalized for a reason. See example:

<Layers>
  <Layer level="BACKGROUND">
    ...
  </Layer>
  <Layer level="ARTWORK">
    ...
  </Layer>
  <Layer level="OVERLAY">
    ...
  </Layer>
</Layers>

Using Templates[edit]

Templates are used when you want to create a common layout for several frames. In this way you can save on the amount of code needed to recreate each frame, as the frames will automatically take on the properties, children, and attributes from whatever template it inherits. There are several rules that must be following when initially creating the template:

  • Templates are created at the root of the file. Meaning that you cannot have a template that is a child of another element
  • Templates must have their virtual attributes set to true
  • Templates must have a name, and it cannot use the $parent keyword
  • Children of a template do not need to be named, but when doing so, you should use the $parent keyword


As discussed above, there is a special keyword that can be used when naming something inside the template. When you inherit a frame, any object inside the template that is inherited, which has the keyword $parent, will automatically replace the keyword with the name of the parent which inherited the template. Example:

<Button name="MyAddonButtonTemplate" parent="UIParent" virtual="true">
     <ButtonText name="$parentText"/>
</Button>
<Button name="MyAddonSpecialButton" inherits="MyAddonButtonTemplate">
     <Size><AbsDimension x="40" y="22"/></Size>
</Button>

Is the same as doing:

<Button name="MyAddonSpecialButton" parent="UIParent">
     <Size><AbsDimension x="40" y="22"/></Size>
     <ButtonText name="MyAddonSpecialButtonText"/>
</Button>

Be aware that any inherited attributes, properties, or children can also be overridden. Example:

<Button name="MyAddonButtonTemplate" parent="UIParent" movable="true" virtual="true">
     <ButtonText name="$parentText"/>
</Button>
<Button name="MyAddonSpecialButton" inherits="MyAddonButtonTemplate" movable="false">
     <Size><AbsDimension x="40" y="22"/></Size>
</Button>

Is the same as doing:

<Button name="MyAddonSpecialButton" parent="UIParent" movable="false">
     <Size><AbsDimension x="40" y="22"/></Size>
     <ButtonText name="MyAddonSpecialButtonText"/>
</Button>

Templates can inherit other templates as well. When done in this way, any $parent keywords used in the template being inherited carry over to the template that inherits it. Example:

<Button name="MyAddonButtonTemplate1" parent="UIParent" movable="true" virtual="true">
     <ButtonText name="$parentText"/>
</Button>
<Button name="MyAddonButtonTemplate2" clampedToScreen="true" inherits="MyAddonButtonTemplate1" virtual="true">
     <NormalFont inherits="GameFontNormal"/>
</Button>
<Button name="MyAddonSpecialButton" inherits="MyAddonButtonTemplate2">
     <Size><AbsDimension x="40" y="22"/></Size>
</Button>

Is the same as doing:

<Button name="MyAddonSpecialButton" parent="UIParent" clampedToScreen="true" movable="true">
     <Size><AbsDimension x="40" y="22"/></Size>
     <ButtonText name="MyAddonSpecialButtonText"/>
     <NormalFont inherits="GameFontNormal"/>
     <HighlightFont inherits="GameFontHighlight"/>
</Button>

Scripts[edit]

To attach behaviour to the UI elements defined in the XML files, you must use Lua. There are two methods of attaching Lua code to UI elements.

  • Short codes can go directly in the XML files in the appropriate event handler element (see later).
  • Long codes should go in a separate .lua file, and included via a Script element.

To include Lua code via a Script element, you must have one or more <Script> elements at the start of the XML file. For example:

<Ui ... >
 <Script file="mycode.lua"/>
 <Frame name="MyFrame">
  ...
 </Frame>
</Ui>

When the XML file is read, the contents of the mycode.lua file is read and interpreted. The code in that file is then available for the rest of this XML file, and any XML files that are read after this one. Functions that are defined in mycode.lua can be called from event handlers in the XML file.

Basic Event Handling concepts[edit]

If you are not used to event handled programming, read this section, otherwise you can skip right through it.

Traditional programming style involves writing a program that has a start and finish. Execution starts at the beginning, and after following through the algorithm in the program, it eventually gets to the end.

Event handled programming is somewhat different. In this case, you create several, independent sections of code, with no clear start or finish. Each of these sections of code are designed to be executed in response to a certain event occurring. Such a section of code is called an event handler. An event handler may get executed once, many times, or maybe even never. This kind of programming style is used whenever you want your code to interact with an external program, and do things in response to whatever that program is doing.

In the case of World of Warcraft, the core game is external to the interface code. Whenever something happens in the game, it asks the interface code to respond to it, by calling one of the event handlers.

Handling UI Events[edit]

To handle UI events, you must include event handler elements in your XML code. You do this by having a Scripts element, inside of which you have one or more Onxxxx event handler elements. For example:

<Frame name="MyFrame">
 <Scripts>
  <OnShow>
   message("Hello!");
  </OnShow>
 </Scripts>
</Frame>

This frame has one event handler only, which is executed every time this Frame becomes visible. The contents of the OnShow element can be any valid Lua code. In this example, it's a single statement, which calls the function message, which causes a dialog box to pop up with "Hello" inside it. (message is a function defined in BasicControls.xml and is available by default.)

Here is a more complete example of how you include Lua code and then reference it from the event handlers.

mymod.xml:

<Ui ... >
  <Script file="mymod.lua"/>
  <Frame name="MyModMainFrame">
    <Scripts>
      <OnLoad>
        MyMod_ShowMessage();
      </OnLoad>
    </Scripts>
  </Frame>
</Ui>

mymod.lua:

function MyMod_ShowMessage()
  message("Hello World!");
end

When MyModMainFrame gets loaded (which happens once, at the start of the game, when all the XML files are read in), the OnLoad handler gets executed. In this case, the single Lua statement there simply calls the MyMod_ShowMessage function.

It is recommended that you prefix the names of all of your functions, UI objects and global variables with the name of your AddOn like above; all data is shared between Blizzard's own UI and all your addons, so picking a unique prefix helps avoid clashes with other people's code.

For the above example to actually work, you must either create an AddOn with the mymod.lua and mymod.xml files, or include them in the FrameXML directory and reference myframe.xml from FrameXML.toc. See AddOns on how to combine these files into an AddOn.

Event Handler reference[edit]

Widget Handlers is a complete reference of what event handlers can be used by each object type.

  • Note: the OnEvent handler is special (see below).

You will notice that the event handlers in the list mostly cover UI related events. The OnEvent handler is special in that it is a general, collective handler for a large number of other events. It gets called for any of the remaining hundreds of game related events. See Events for a list of game events and how to register for them and handle them.

Default User Interface[edit]

The default user interface that is visible without any installed third-party addons is built into the MPQ files. It can't be modified because it is protected by a digital signature, but using the World of Warcraft Interface AddOn Kit (US, EU) provided by Blizzard, the files can be extracted to see how the interface works.

See also[edit]

External links[edit]

Official
Other info