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="LevelWiz.lua" />
4 <Frame name="LevelWizFrame" toplevel="true" enableMouse="true" movable="true" parent="UIParent">
5 <Size>
6 <AbsDimension x="208" y="25"/>
7 </Size>
8 <Anchors>
9 <Anchor point="CENTER"/>
10 </Anchors>
11 <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="false">
12 <BackgroundInsets>
13 <AbsInset left="5" right="5" top="5" bottom="5"/>
14 </BackgroundInsets>
15 <TileSize>
16 <AbsValue val="16"/>
17 </TileSize>
18 <EdgeSize>
19 <AbsValue val="16"/>
20 </EdgeSize>
21 </Backdrop>
22 <Layers>
23 <Layer level="ARTWORK">
24 <FontString name="LevelWizText" inherits="GameFontNormal" >
25 <Size>
26 <AbsDimension x="208" y="21"/> </Size>
27 <Anchors>
28 <Anchor point="TOPLEFT"/>
29 </Anchors>
30 </FontString>
31 </Layer>
32 </Layers>
33 <Frames>
34 <Button name="LevelWizClose">
35 <Size>
36 <AbsDimension x="25" y="25"/>
37 </Size>
38 <Anchors>
39 <Anchor point="RIGHT">
40 <Offset>
41 <AbsDimension x="19" y="0"/>
42 </Offset>
43 </Anchor>
44 </Anchors>
45 <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="false">
46 <BackgroundInsets>
47 <AbsInset left="5" right="5" top="5" bottom="5"/>
48 </BackgroundInsets>
49 <TileSize>
50 <AbsValue val="16"/>
51 </TileSize>
52 <EdgeSize>
53 <AbsValue val="16"/>
54 </EdgeSize>
55 </Backdrop>
56 <Scripts>
57 <OnClick>
58 CloseClick();
59 </OnClick>
60 </Scripts>
61 <NormalTexture file="Interface\Buttons\UI-Panel-MinimizeButton-Up"/>
62 <PushedTexture file="Interface\Buttons\UI-Panel-MinimizeButton-Down"/>
63 <HighlightTexture alphaMode="ADD" file="Interface\Buttons\UI-Panel-MinimizeButton-Highlight"/>
64 </Button>
65 </Frames>
66 <Scripts>
67 <OnLoad>
68 LevelWiz_OnLoad();
69 </OnLoad>
70 <OnEvent>
71 LevelWiz_OnEvent();
72 </OnEvent>
73 <OnDragStart>
74 LevelWiz_OnDragStart();
75 </OnDragStart>
76 <OnDragStop>
77 LevelWiz_OnDragStop();
78 </OnDragStop>
79 <OnEnter>
80 LevelWiz_Info();
81 </OnEnter>
82 <OnLeave>
83 GameTooltip:Hide()
84 </OnLeave>
85 <OnMouseUp>
86 LevelWiz_OnDragStop();
87 </OnMouseUp>
88 <OnUpdate>
89 LevelWiz_OnUpdate();
90 </OnUpdate>
91  
92 </Scripts>
93 </Frame>
94 </Ui>
95  
96  
97  
98  
99  
100