Mercurial > wow > buffalo2
view ObjectiveWidgets.xml @ 10:f03c75f63566
ObjectiveStyle & ObjectiveFrame
- abstract aesthetic details away from ObjectiveFrame
- revise SetBlockStyle into a more general algorithm for every frame
- implement caching of resolved attribute combinations
- use loadstring functions to store resolved attributes and call upon those when, for example, a MouseUp leads a tracker block to restore its original style
author | Nenue |
---|---|
date | Sat, 02 Apr 2016 03:19:25 -0400 |
parents | 2698173edd40 |
children | 8238cddaddb1 |
line wrap: on
line source
<Ui> <!-- houses objective widget templates --> <Frame name="VeneerObjectiveCriteriaProgressBar" virtual="true" hidden="true"> <Size x="250" y="30" /> <Scripts> <OnLoad> self.widgetType = 'ProgressBar' Veneer.ObjectiveTracker.RegisterWidget(self) </OnLoad> <OnShow> Veneer.ObjectiveTracker.InitializeWidget(self) </OnShow> <OnHide> Veneer.ObjectiveTracker.ReleaseWidget(self) </OnHide> <OnEvent> </OnEvent> </Scripts> <Layers> <Layer level="BACKGROUND"> <Texture name="$parentBackground" parentKey="bg"> <Color r="0" g="0" b="0" a="0.70" /> <Anchors> <Anchor point="BOTTOMLEFT" /> <Anchor point="TOPRIGHT" /> </Anchors> </Texture> </Layer> <Layer level="ARTWORK"> <Texture name="$parentForeground" parentKey="fg"> <Color r="1" g="1" b="1" a="1" /> </Texture> </Layer> <Layer level="OVERLAY"> <FontString name="$parentQuantityString" parentKey="quantityString" inherits="VeneerCriteriaFont"> <Anchors> <Anchor point="CENTER" /> </Anchors> </FontString> </Layer> </Layers> </Frame> <Frame name="VeneerObjectiveCriteriaEvent" virtual="true" hidden="true"> <Size x="250" y="24" /> <Scripts> <OnLoad> self.widgetType = 'Event' self.lines = 1 Veneer.ObjectiveTracker.RegisterWidget(self) </OnLoad> <OnShow> Veneer.ObjectiveTracker.InitializeWidget(self) </OnShow> <OnHide> Veneer.ObjectiveTracker.ReleaseWidget(self) </OnHide> </Scripts> <Layers> <Layer level="OVERLAY"> <FontString name="$parentQuantityString" parentKey="quantityString" inherits="VeneerCriteriaFont"> </FontString> </Layer> </Layers> </Frame> </Ui>