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/
2 ..\FrameXML\UI.xsd">
3 <Script file="EasyUnlock.lua"/>
4 <Script file="localization.lua"/>
5 <Frame name="EasyUnlock" parent="TradeFrame" hidden="true">
6 <Frames>
7 <Button name="EasyUnlockUnlockButton" inherits="UIPanelButtonTemplate" text="EU_UNLOCKBUTTON">
8 <Size>
9 <AbsDimension x="58" y="22"/>
10 </Size>
11 <Anchors>
12 <Anchor point="TOPLEFT" relativeTo="TradeFrameTradeButton" relativePoint="TOPRIGHT">
13 <Offset>
14 <AbsDimension x="-3" y="0"/>
15 </Offset>
16 </Anchor>
17 </Anchors>
18 <Scripts>
19 <OnLoad>
20 this:Disable();
21 </OnLoad>
22 <OnClick>
23 EasyUnlockUnlockButton_OnClick();
24 </OnClick>
25 </Scripts>
26 <NormalText inherits="GameFontNormal" text="EU_UNLOCKBUTTON"/>
27 <DisabledText inherits="GameFontDisable" text="EU_UNLOCKBUTTON"/>
28 <HighlightText inherits="GameFontHighlight" text="EU_UNLOCKBUTTON"/>
29 </Button>
30 </Frames>
31 <Scripts>
32 <OnLoad>
33 EasyUnlock_OnLoad();
34 </OnLoad>
35 <OnUpdate>
36 EasyUnlock_OnUpdate(dt);
37 </OnUpdate>
38 <OnEvent>
39 EasyUnlock_OnEvent(event);
40 </OnEvent>
41 </Scripts>
42 </Frame>
43 <Frame name="EasyUnlockTooltip" parent="GameTooltip" hidden="false">
44 <Scripts>
45 <OnShow>
46 EasyUnlock_Tooltip_OnShow();
47 </OnShow>
48 </Scripts>
49 </Frame>
50 <Frame name="EasyUnlockItemRefTooltip" parent="ItemRefTooltip" hidden="false">
51 <Scripts>
52 <OnShow>
53 EasyUnlock_Tooltip_OnShow();
54 </OnShow>
55 </Scripts>
56 </Frame>
57 </Ui>