vanilla-wow-addons – Blame information for rev 1
?pathlinks?
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="rpgo-lib.lua"/> |
||
4 | <Script file="localization.lua"/> |
||
5 | <Script file="CharacterProfiler.lua"/> |
||
6 | <Frame name="rpgoCPframe" enableMouse="true" hidden="false" parent="CharacterNameFrame"> |
||
7 | <Scripts> |
||
8 | <OnLoad> |
||
9 | rpgoCP_OnLoad(); |
||
10 | </OnLoad> |
||
11 | <OnHide> |
||
12 | rpgoCP_EventHandler('RPGOCP_SCAN'); |
||
13 | </OnHide> |
||
14 | <OnEvent> |
||
15 | rpgoCP_EventHandler(event,arg1,arg2); |
||
16 | </OnEvent> |
||
17 | </Scripts> |
||
18 | </Frame> |
||
19 | <Button name="rpgoCPframeUISaveButton" parent="PaperDollFrame" toplevel="true" inherits="UIPanelButtonTemplate" text="RPGO_CP_TEXT_SAVE"> |
||
20 | <Size> |
||
21 | <AbsDimension x="40" y="20"/> |
||
22 | </Size> |
||
23 | <Anchors> |
||
24 | <Anchor point="TOPLEFT" relativePoint="TOPLEFT"> |
||
25 | <Offset> |
||
26 | <AbsDimension x="74" y="-35"/> |
||
27 | </Offset> |
||
28 | </Anchor> |
||
29 | </Anchors> |
||
30 | <Scripts> |
||
31 | <OnClick> |
||
32 | rpgoCP_EventHandler('RPGOCP_EXPORT'); |
||
33 | </OnClick> |
||
34 | <OnEnter> |
||
35 | rpgo_SetTooltip(); |
||
36 | GameTooltip:SetText("Click to export your CharacterProfile"); |
||
37 | </OnEnter> |
||
38 | <OnLeave> |
||
39 | GameTooltip:Hide(); |
||
40 | </OnLeave> |
||
41 | </Scripts> |
||
42 | </Button> |
||
43 | <Frame name="rpgoCPtrade" parent="TradeSkillFrame" frameStrata="LOW" toplevel="true" enableMouse="true" hidden="false"> |
||
44 | <Scripts> |
||
45 | <OnUpdate> |
||
46 | if(TradeSkillFrame and TradeSkillFrame:IsVisible()) then |
||
47 | rpgoCP_EventHandler('TRADE_SKILL_UPDATE',arg1); |
||
48 | end |
||
49 | </OnUpdate> |
||
50 | </Scripts> |
||
51 | </Frame> |
||
52 | <Frame name="rpgoCPcraft" parent="CraftFrame" frameStrata="LOW" toplevel="true" enableMouse="true" hidden="false"> |
||
53 | <Scripts> |
||
54 | <OnUpdate> |
||
55 | if(CraftFrame and CraftFrame:IsVisible()) then |
||
56 | rpgoCP_EventHandler('CRAFT_UPDATE',arg1); |
||
57 | end |
||
58 | </OnUpdate> |
||
59 | </Scripts> |
||
60 | </Frame> |
||
61 | <GameTooltip name="rpgoCPtooltip" frameStrata="TOOLTIP" inherits="GameTooltipTemplate" hidden="true"> |
||
62 | <Scripts> |
||
63 | <OnLoad> |
||
64 | this:SetOwner(UIParent,"ANCHOR_NONE"); |
||
65 | --this:SetOwner(WorldFrame, "ANCHOR_NONE"); |
||
66 | </OnLoad> |
||
67 | </Scripts> |
||
68 | </GameTooltip> |
||
69 | </Ui> |