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/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd">
2 <Script file="HA_debug.lua"/>
3  
4 <Frame name="HADebugFrame" parent="UIParent" hidden="true" toplevel="true" enableMouse="true" movable="true">
5 <Size>
6 <AbsDimension x="490" y="490"/>
7 </Size>
8 <Anchors>
9 <Anchor point="TOPLEFT">
10 <Offset>
11 <AbsDimension x="100" y="-104"/>
12 </Offset>
13 </Anchor>
14 </Anchors>
15 <Backdrop name="$parentBackdrop" bgFile="Interface\TutorialFrame\TutorialFrameBackground" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
16 <EdgeSize>
17 <AbsValue val="16"/>
18 </EdgeSize>
19 <TileSize>
20 <AbsValue val="16"/>
21 </TileSize>
22 <BackgroundInsets>
23 <AbsInset left="3" right="5" top="3" bottom="5"/>
24 </BackgroundInsets>
25 </Backdrop>
26 <Layers>
27 <Layer level="BACKGROUND">
28 <FontString name="$parentTitel" inherits="GameFontNormal" text="Healers Assist Debug Log">
29 <Anchors>
30 <Anchor point="TOP" relativePoint="TOP">
31 <Offset>
32 <AbsDimension x="0" y="-6"/>
33 </Offset>
34 </Anchor>
35 </Anchors>
36 </FontString>
37 </Layer>
38 </Layers>
39 <Frames>
40 <Button name="$parentCloseButton" inherits="UIPanelCloseButton">
41 <Anchors>
42 <Anchor point="TOPRIGHT">
43 <Offset>
44 <AbsDimension x="2" y="2"/>
45 </Offset>
46 </Anchor>
47 </Anchors>
48 </Button>
49 <ScrollingMessageFrame name="HADebug_Log" displayDuration="1200.0" maxLines="2000">
50 <Size>
51 <AbsDimension x="450" y="450"/>
52 </Size>
53 <Anchors>
54 <Anchor point="TOP">
55 <Offset>
56 <AbsDimension x="22" y="-22"/>
57 </Offset>
58 </Anchor>
59 </Anchors>
60 <Frames>
61 <Button name="$parentBottomButton">
62 <Size>
63 <AbsDimension x="32" y="32"/>
64 </Size>
65 <Anchors>
66 <Anchor point="BOTTOMLEFT">
67 <Offset>
68 <AbsDimension x="-32" y="-4"/>
69 </Offset>
70 </Anchor>
71 </Anchors>
72 <Layers>
73 <Layer level="OVERLAY">
74 <Texture name="$parentFlash" file="Interface\ChatFrame\UI-ChatIcon-BlinkHilight" hidden="true"/>
75 </Layer>
76 </Layers>
77 <Scripts>
78 <OnClick>
79 PlaySound("igChatBottom");
80 this:GetParent():ScrollToBottom();
81 </OnClick>
82 </Scripts>
83 <NormalTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollEnd-Up"/>
84 <PushedTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollEnd-Down"/>
85 <DisabledTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollEnd-Disabled"/>
86 <HighlightTexture file="Interface\Buttons\UI-Common-MouseHilight" alphaMode="ADD"/>
87 </Button>
88 <Button name="$parentDownButton">
89 <Size>
90 <AbsDimension x="32" y="32"/>
91 </Size>
92 <Anchors>
93 <Anchor point="BOTTOM" relativeTo="$parentBottomButton" relativePoint="TOP">
94 <Offset>
95 <AbsDimension x="0" y="-2"/>
96 </Offset>
97 </Anchor>
98 </Anchors>
99 <Scripts>
100 <OnLoad>
101 MessageFrameScrollButton_OnLoad();
102 </OnLoad>
103 <OnUpdate>
104 MessageFrameScrollButton_OnUpdate(arg1);
105 </OnUpdate>
106 <OnClick>
107 if ( this:GetButtonState() == "PUSHED" ) then
108 this.clickDelay = MESSAGE_SCROLLBUTTON_INITIAL_DELAY;
109 else
110 PlaySound("igChatScrollDown");
111 this:GetParent():ScrollDown();
112 end
113 </OnClick>
114 </Scripts>
115 <NormalTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollDown-Up"/>
116 <PushedTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollDown-Down"/>
117 <DisabledTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollDown-Disabled"/>
118 <HighlightTexture file="Interface\Buttons\UI-Common-MouseHilight" alphaMode="ADD"/>
119 </Button>
120 <Button name="$parentUpButton">
121 <Size>
122 <AbsDimension x="32" y="32"/>
123 </Size>
124 <Anchors>
125 <Anchor point="BOTTOM" relativeTo="$parentDownButton" relativePoint="TOP"/>
126 </Anchors>
127 <Scripts>
128 <OnLoad>
129 MessageFrameScrollButton_OnLoad();
130 </OnLoad>
131 <OnUpdate>
132 MessageFrameScrollButton_OnUpdate(arg1);
133 </OnUpdate>
134 <OnClick>
135 if ( this:GetButtonState() == "PUSHED" ) then
136 this.clickDelay = MESSAGE_SCROLLBUTTON_INITIAL_DELAY;
137 else
138 PlaySound("igChatScrollUp");
139 this:GetParent():ScrollUp();
140 end
141 </OnClick>
142 </Scripts>
143 <NormalTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollUp-Up"/>
144 <PushedTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollUp-Down"/>
145 <DisabledTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollUp-Disabled"/>
146 <HighlightTexture file="Interface\Buttons\UI-Common-MouseHilight" alphaMode="ADD"/>
147 </Button>
148 </Frames>
149 <Scripts>
150 <OnHyperlinkClick>
151 ChatFrame_OnHyperlinkShow(arg1, arg2, arg3);
152 </OnHyperlinkClick>
153 <OnLoad>
154 this:SetBackdropColor(1,1,1,1);
155 this:EnableMouseWheel(1);
156 </OnLoad>
157 </Scripts>
158 <FontString justifyH="LEFT" font="Fonts\ARIALN.TTF">
159 <FontHeight>
160 <AbsValue val="12"/>
161 </FontHeight>
162 <Shadow>
163 <Offset>
164 <AbsDimension x="1" y="-1"/>
165 </Offset>
166 <Color r="0" g="0" b="0" a="0.5"/>
167 </Shadow>
168 </FontString>
169 </ScrollingMessageFrame>
170 </Frames>
171 <Scripts>
172 <OnMouseUp>
173 if ( this.isMoving ) then
174 this:StopMovingOrSizing();
175 this.isMoving = false;
176 end
177 </OnMouseUp>
178 <OnMouseDown>
179 if ( ( ( not this.isLocked ) or ( this.isLocked == 0 ) ) and ( arg1 == "LeftButton" ) ) then
180 this:StartMoving();
181 this.isMoving = true;
182 end
183 </OnMouseDown>
184 <OnHide>
185 if ( this.isMoving ) then
186 this:StopMovingOrSizing();
187 this.isMoving = false;
188 end
189 </OnHide>
190 </Scripts>
191 </Frame>
192  
193 </Ui>