Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Tag: WoW API docs
m (→‎Attributes: parentArray)
Tag: WoW API docs
Line 72: Line 72:
 
</Frame>
 
</Frame>
 
: At runtime, you can refer to the child frame as either <tt>MyFrameChild</tt> or <tt>MyFrame.child</tt> .
 
: At runtime, you can refer to the child frame as either <tt>MyFrameChild</tt> or <tt>MyFrame.child</tt> .
  +
;parentArray
  +
:([[XML attribute types|string]]) Defines a name for an array in the parent element, which will reference this element at runtime.
  +
:Example:
  +
<Frame name="MyFrame">
  +
<Frames>
  +
<Frame name="$parentChild1" parentArray="children" />
  +
<Frame name="$parentChild2" parentArray="children" />
  +
</Frames>
  +
</Frame>
  +
: You can iterate over this using MyFrame.children[1], MyFrame.children[2], etc.
   
 
Inherited from <[[XML/LayoutFrame|LayoutFrame]]>:
 
Inherited from <[[XML/LayoutFrame|LayoutFrame]]>:

Revision as of 03:54, 25 April 2014

Inheritance

Derived from: <LayoutFrame>

Contained in: <Frames>, <Ui>

Runtime object: UIOBJECT_Frame

Elements

Attributes

alpha
(float) The opacity of the frame, where 1.0 is opaque and 0.0 is fully transparent.
parent
(string)
toplevel
(boolean) Whether or not the frame should be displayed on top of all the other frames in its strata (see frameStrata).
movable
(boolean) Whether the frame can be moved by the user.
resizable
(boolean) Whether the frame can be resized by the user.
frameStrata
(string) Which layer your frame should be on. Some words of caution: if you set your frameStrata to "BACKGROUND" it will be blocked from receiving mouse events unless you set frameLevel to 1 or more. Same goes for "TOOLTIP" regardless of frameLevel. Possible values are, from highest to lowest:
  • TOOLTIP
  • FULLSCREEN_DIALOG
  • FULLSCREEN
  • DIALOG
  • HIGH
  • MEDIUM
  • LOW
  • BACKGROUND
frameLevel
(int) What level your frame is on, in the strata. Normally decided by parent-child relationships and better left untouched - also, see the difference between frameLevel and frameStrata below.
id
(string)
enableMouse
(boolean) Whether mouse events are sent to the frame.
enableKeyboard
(boolean) Whether keystroke events are sent to the frame.
clampedToScreen
(boolean) Whether the frame is kept inside the screen boundaries.
protected
(boolean) Whether the frame is allowed to run protected code (only allowed in Blizzard code).
jumpNavigateEnabled
(boolean)
jumpNavigateStart
(boolean)
parentKey
(string) Defines a name for a key in the parent element, which will reference this element at runtime.
Example:
<Frame name="MyFrame">
 <Frames>
  <Frame name="$parentChild" parentKey="child" />
 </Frames>
</Frame>
At runtime, you can refer to the child frame as either MyFrameChild or MyFrame.child .
parentArray
(string) Defines a name for an array in the parent element, which will reference this element at runtime.
Example:
<Frame name="MyFrame">
 <Frames>
  <Frame name="$parentChild1" parentArray="children" />
  <Frame name="$parentChild2" parentArray="children" />
 </Frames>
</Frame>
You can iterate over this using MyFrame.children[1], MyFrame.children[2], etc.

Inherited from <LayoutFrame>:

name
(string) Defines the name of the element. This gets registered in the LUA global variables. Using the $parent tag here refers to the parent's name - or the parent's parent's name, if the parent is unnamed, or even further up.
inherits
(string) Instantiates the element using a virtual element as a template.
virtual
(boolean) Defines the element as template, to be inherited from. The element itself is not created.
setAllPoints
(boolean) Automatically anchors the TOPLEFT, TOPRIGHT, BOTTOMLEFT and BOTTOMRIGHT points to the parent.
hidden
(boolean) Makes the element hidden by default.

Description

Frames are the building blocks of the visual components of the user interface. All of the various visual elements of the UI are types of Frame, and inherit most if not all of the basic frame properties, in addition to adding some more. Frames are defined in the various .xml files in the Interface directory (except for the Bindings.xml files, which provide key bindings).

Events

In addition to Frames being the things that you can see, Frames are also the things which UI and game events are delivered to. If you're writing code that needs to know about something, it will need a Frame (though not necessarily a visible one) to receive the event. There are many types of events, though often in AddOn development it refers to a Game Event rather than other UI events.

A frame indicates its interest in events in a number of ways:

UI Interaction

The <Scripts> XML element of a frame definition defines a bunch of different handler types, for most of these (<OnEvent> being the exception) the Frame will automatically be informed of the appropriate events when they occur, via the defined handler script.

Game Interaction

Most of the useful information comes from game events, which are all passed to the frame via the generic <OnEvent> script handler. There are literally hundreds of types of Game Events, so rather than spend a lot of time passing every event to every handler, an AddOn must register its interest in a frame receiving a certain event. This is accomplished through the Frame:RegisterEvent("event") function, and is typically performed within the <OnLoad> or <OnShow> handlers. Once an event has been registered, the Frame's <OnEvent> handler will be called whenever that event occurs.

Virtual Frames

Frames can be defined as virtual, in which case instead of defining an actual UI element that shows up, the definition provides a template which can then be used multiple times by other Frames. A good example of a virtual Frame is the chat window, there are actually several virtual frames which are assembled into a chat window, but then each potential chat window simply implements the virtual one, which reduces the amount of duplicated code required.

Frame Parents

Every Frame can have a parent frame, and well behaved UI AddOns will want to set their parent to UIParent (Failure to do so means, amongst other things, that the AddOn doesn't vanish when the Hide GUI key is pressed). A complex visual element is likely formed of multiple Frames, and it's considered good design to designate a parent Frame amongst them, and have the rest use that (or its children) as their parent. Doing this is useful for a couple of reasons.

Visibility

Each Frame can be shown and hidden, if a Frame is Hidden, then it and all of its children cease to be visible. It's far simpler to show and hide the parent frame of a complex set, than to try and manage the visibility of many elements independently.

Scaling

The World of Warcraft UI engine is built to perform automatic scaling of UI elements, the entire UI (actually, the UIParent frame, which most frames are children of), or any component of it can be enlarged or shrunk to fit on a screen appropriately. Frames are scaled and located relative to their parent rather than the whole screen, which means that you only need to worry about how your subcomponents relate to each other, and then your component can be placed and sized any way necessary.

Frame Levels

Frame levels are that which determines what frame will be on top of other frame. Each frame has a frame level value. If frame A is placed in the same area as frame B, then the frame with the highest frame level will be on top of the other frame.

Instead of going around and specifying that frame A should have frame level 12, and frame B frame level 15, Blizzard uses a set of predefined "groups" of frame levels called frameStrata. The valid values for frameStrata are "PARENT", "BACKGROUND", "LOW", "MEDIUM", "HIGH", "DIALOG", "FULLSCREEN_DIALOG" and "TOOLTIP" (there may be more). For the values "BACKGROUND" through "TOOLTIP" the values are listed in their assumed ascendancy (i.e. it is assumed that "BACKGROUND" will be below "LOW"). The default value is "PARENT" if no frameStrata is specified.

There is also a special attribute called toplevel - this means (hopefully) that the frame should be on top of any other frame (or, possibly, on top of any other frame in the same frameStrata).

What is the difference between frameLevel and frameStrata?

Well first off, though you can set frameLevel in your <Frame> tag, frameLevel is dictated by XML nesting. Check this example out:

<Frame name="MyFrame" frameStrata="DIALOG" parent="UIParent">
  <Frames>
    <Button name="MyButton"/>
  </Frames>
</Frame>

Since UIParent's frameLevel is 1, the frame we created here should be frameLevel 2 and the Button should be frameLevel 3.

You can check a frame's level with Frame:GetFrameLevel() and you can set it with Frame:SetFrameLevel(). However, setting a frame's level is ill-advised. It is given its level automatically and it's best to leave it that way. If you need to change a frame's level in your own code, best thing to do is just nest your code differently.

Note: If the parent of a frame is changed by your code, the frame levels are not adjusted to compensate. You may need to adjust the frame's level to fix the way the frame displays.

Possible Values
  • 0 - No parent
  • 1 - Parent is UIParent
  • 2 and higher...

The maximum value seems to be 129. If you call SetFrameLevel with a value greater than 129, the value passed will be ignored, and the frame level will be set to 129.

In my experimentation, and with my WoW client (Windows), it seems higher values will stick, and be honored, if you call SetFrameLevel twice in a row. This is probably unreliable. If you find that you are having to set frame levels greater than 129, see if you can use a hierarchical set of parent frames instead.

A more complete explanation of how frame levels are used is found at How the user interface is rendered.