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  
3 <Frame name="GEMDebugFrame" parent="GEMMainFrame" inherits="GEMTabFrame">
4 <Frames>
5 <ScrollingMessageFrame name="GEMDebug_Log" displayDuration="1200.0" maxLines="2000">
6 <Size>
7 <AbsDimension x="450" y="450"/>
8 </Size>
9 <Anchors>
10 <Anchor point="TOP">
11 <Offset>
12 <AbsDimension x="22" y="0"/>
13 </Offset>
14 </Anchor>
15 </Anchors>
16 <Frames>
17 <Button name="$parentBottomButton">
18 <Size>
19 <AbsDimension x="32" y="32"/>
20 </Size>
21 <Anchors>
22 <Anchor point="BOTTOMLEFT">
23 <Offset>
24 <AbsDimension x="-32" y="-4"/>
25 </Offset>
26 </Anchor>
27 </Anchors>
28 <Layers>
29 <Layer level="OVERLAY">
30 <Texture name="$parentFlash" file="Interface\ChatFrame\UI-ChatIcon-BlinkHilight" hidden="true"/>
31 </Layer>
32 </Layers>
33 <Scripts>
34 <OnClick>
35 PlaySound("igChatBottom");
36 this:GetParent():ScrollToBottom();
37 </OnClick>
38 </Scripts>
39 <NormalTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollEnd-Up"/>
40 <PushedTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollEnd-Down"/>
41 <DisabledTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollEnd-Disabled"/>
42 <HighlightTexture file="Interface\Buttons\UI-Common-MouseHilight" alphaMode="ADD"/>
43 </Button>
44 <Button name="$parentDownButton">
45 <Size>
46 <AbsDimension x="32" y="32"/>
47 </Size>
48 <Anchors>
49 <Anchor point="BOTTOM" relativeTo="$parentBottomButton" relativePoint="TOP">
50 <Offset>
51 <AbsDimension x="0" y="-2"/>
52 </Offset>
53 </Anchor>
54 </Anchors>
55 <Scripts>
56 <OnLoad>
57 MessageFrameScrollButton_OnLoad();
58 </OnLoad>
59 <OnUpdate>
60 MessageFrameScrollButton_OnUpdate(arg1);
61 </OnUpdate>
62 <OnClick>
63 if ( this:GetButtonState() == "PUSHED" ) then
64 this.clickDelay = MESSAGE_SCROLLBUTTON_INITIAL_DELAY;
65 else
66 PlaySound("igChatScrollDown");
67 this:GetParent():ScrollDown();
68 end
69 </OnClick>
70 </Scripts>
71 <NormalTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollDown-Up"/>
72 <PushedTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollDown-Down"/>
73 <DisabledTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollDown-Disabled"/>
74 <HighlightTexture file="Interface\Buttons\UI-Common-MouseHilight" alphaMode="ADD"/>
75 </Button>
76 <Button name="$parentUpButton">
77 <Size>
78 <AbsDimension x="32" y="32"/>
79 </Size>
80 <Anchors>
81 <Anchor point="BOTTOM" relativeTo="$parentDownButton" relativePoint="TOP"/>
82 </Anchors>
83 <Scripts>
84 <OnLoad>
85 MessageFrameScrollButton_OnLoad();
86 </OnLoad>
87 <OnUpdate>
88 MessageFrameScrollButton_OnUpdate(arg1);
89 </OnUpdate>
90 <OnClick>
91 if ( this:GetButtonState() == "PUSHED" ) then
92 this.clickDelay = MESSAGE_SCROLLBUTTON_INITIAL_DELAY;
93 else
94 PlaySound("igChatScrollUp");
95 this:GetParent():ScrollUp();
96 end
97 </OnClick>
98 </Scripts>
99 <NormalTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollUp-Up"/>
100 <PushedTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollUp-Down"/>
101 <DisabledTexture file="Interface\ChatFrame\UI-ChatIcon-ScrollUp-Disabled"/>
102 <HighlightTexture file="Interface\Buttons\UI-Common-MouseHilight" alphaMode="ADD"/>
103 </Button>
104 </Frames>
105 <Scripts>
106 <OnHyperlinkClick>
107 ChatFrame_OnHyperlinkShow(arg1, arg2, arg3);
108 </OnHyperlinkClick>
109 <OnLoad>
110 this:SetBackdropColor(1,1,1,1);
111 this:EnableMouseWheel(1);
112 </OnLoad>
113 </Scripts>
114 <FontString justifyH="LEFT" font="Fonts\ARIALN.TTF">
115 <FontHeight>
116 <AbsValue val="12"/>
117 </FontHeight>
118 <Shadow>
119 <Offset>
120 <AbsDimension x="1" y="-1"/>
121 </Offset>
122 <Color r="0" g="0" b="0" a="0.5"/>
123 </Shadow>
124 </FontString>
125 </ScrollingMessageFrame>
126 </Frames>
127 <Scripts>
128 <OnShow>
129 --GEMDebug_OnShow();
130 </OnShow>
131 </Scripts>
132 </Frame>
133  
134 </Ui>