vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <Ui xmlns="http://www.blizzard.com/wow/ui/"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://www.blizzard.com/wow/ui/FrameXML/UI.xsd">
4  
5 <Script file="AceGUIDropDown.lua"/>
6  
7 <Frame name="AceGUIDropDownMenuTemplate" inherits="AceGUIListBoxTemplate" hidden="true" virtual="true">
8 <Anchors>
9 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT">
10 <Offset>
11 <AbsDimension x="-6" y="7"/>
12 </Offset>
13 </Anchor>
14 </Anchors>
15 <Frames>
16 <Button name="$parentRow1" inherits="AceGUIListBoxRowTemplate"/>
17 <Button name="$parentRow2" inherits="AceGUIListBoxRowTemplate"/>
18 <Button name="$parentRow3" inherits="AceGUIListBoxRowTemplate"/>
19 <Button name="$parentRow4" inherits="AceGUIListBoxRowTemplate"/>
20 <Button name="$parentRow5" inherits="AceGUIListBoxRowTemplate"/>
21 <Button name="$parentRow6" inherits="AceGUIListBoxRowTemplate"/>
22 <Button name="$parentRow7" inherits="AceGUIListBoxRowTemplate"/>
23 <Button name="$parentRow8" inherits="AceGUIListBoxRowTemplate"/>
24 <Button name="$parentRow9" inherits="AceGUIListBoxRowTemplate"/>
25 <Button name="$parentRow10" inherits="AceGUIListBoxRowTemplate"/>
26 <Button name="$parentRow11" inherits="AceGUIListBoxRowTemplate"/>
27 <Button name="$parentRow12" inherits="AceGUIListBoxRowTemplate"/>
28 <Button name="$parentRow13" inherits="AceGUIListBoxRowTemplate"/>
29 <Button name="$parentRow14" inherits="AceGUIListBoxRowTemplate"/>
30 <Button name="$parentRow15" inherits="AceGUIListBoxRowTemplate"/>
31 <Button name="$parentRow16" inherits="AceGUIListBoxRowTemplate"/>
32 <Button name="$parentRow17" inherits="AceGUIListBoxRowTemplate"/>
33 <Button name="$parentRow18" inherits="AceGUIListBoxRowTemplate"/>
34 <Button name="$parentRow19" inherits="AceGUIListBoxRowTemplate"/>
35 <Button name="$parentRow20" inherits="AceGUIListBoxRowTemplate"/>
36 </Frames>
37 </Frame>
38  
39  
40 <!-- DropDown box template -->
41 <Button name="AceGUIDropDownTemplate" virtual="true">
42 <Size>
43 <AbsDimension x="160" y="26"/>
44 </Size>
45 <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background"
46 edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
47 <EdgeSize>
48 <AbsValue val="16"/>
49 </EdgeSize>
50 <TileSize>
51 <AbsValue val="16"/>
52 </TileSize>
53 <BackgroundInsets>
54 <AbsInset left="5" right="5" top="5" bottom="5"/>
55 </BackgroundInsets>
56 </Backdrop>
57 <Layers>
58 <Layer level="BACKGROUND">
59 <FontString name="$parentLabel" inherits="GameFontNormalSmall">
60 <Anchors>
61 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
62 <Offset>
63 <AbsDimension x="5" y="1"/>
64 </Offset>
65 </Anchor>
66 </Anchors>
67 </FontString>
68 <FontString name="$parentSelection" inherits="GameFontHighlightSmall" justifyH="RIGHT">
69 <Size>
70 <AbsDimension x="0" y="16"/>
71 </Size>
72 <Anchors>
73 <Anchor point="RIGHT">
74 <Offset>
75 <AbsDimension x="-26" y="0"/>
76 </Offset>
77 </Anchor>
78 </Anchors>
79 </FontString>
80 </Layer>
81 </Layers>
82 <Frames>
83 <Button name="$parentButton">
84 <Size>
85 <AbsDimension x="24" y="24"/>
86 </Size>
87 <Anchors>
88 <Anchor point="RIGHT">
89 <Offset>
90 <AbsDimension x="-1" y="0"/>
91 </Offset>
92 </Anchor>
93 </Anchors>
94 <Scripts>
95 <OnClick>
96 this:GetParent():ToggleMenu()
97 </OnClick>
98 </Scripts>
99 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\UI-ChatIcon-ScrollDown-Up">
100 <Size>
101 <AbsDimension x="24" y="24"/>
102 </Size>
103 <Anchors>
104 <Anchor point="RIGHT"/>
105 </Anchors>
106 </NormalTexture>
107 <PushedTexture name="$parentPushedTexture" file="Interface\ChatFrame\UI-ChatIcon-ScrollDown-Down">
108 <Size>
109 <AbsDimension x="24" y="24"/>
110 </Size>
111 <Anchors>
112 <Anchor point="RIGHT"/>
113 </Anchors>
114 </PushedTexture>
115 <DisabledTexture name="$parentDisabledTexture" file="Interface\ChatFrame\UI-ChatIcon-ScrollDown-Disabled">
116 <Size>
117 <AbsDimension x="24" y="24"/>
118 </Size>
119 <Anchors>
120 <Anchor point="RIGHT"/>
121 </Anchors>
122 </DisabledTexture>
123 <HighlightTexture name="$parentHighlightTexture" file="Interface\Buttons\UI-Common-MouseHilight" alphaMode="ADD">
124 <Size>
125 <AbsDimension x="24" y="24"/>
126 </Size>
127 <Anchors>
128 <Anchor point="RIGHT"/>
129 </Anchors>
130 </HighlightTexture>
131 </Button>
132 <Frame name="$parentMenu" frameStrata="FULLSCREEN_DIALOG" inherits="AceGUIDropDownMenuTemplate">
133 <Anchors>
134 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT">
135 <Offset>
136 <AbsDimension x="0" y="5"/>
137 </Offset>
138 </Anchor>
139 </Anchors>
140 </Frame>
141 </Frames>
142 <Scripts>
143 <OnClick>
144 this:ToggleMenu()
145 </OnClick>
146 <OnHide>
147 this:CallHandler("OnHide")
148 </OnHide>
149 <OnEnter>
150 this:CallHandler("OnEnter")
151 </OnEnter>
152 <OnLeave>
153 this:CallHandler("OnLeave")
154 </OnLeave>
155 </Scripts>
156 </Button>
157 </Ui>