-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCleanBot.xml
More file actions
48 lines (45 loc) · 1.88 KB
/
Copy pathCleanBot.xml
File metadata and controls
48 lines (45 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<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">
<Frame name="CleanBotFrame" toplevel="true" parent="UIParent" movable="true" enableMouse="true" hidden="true">
<Size x="400" y="300"/>
<Anchors>
<Anchor point="CENTER"/>
</Anchors>
<Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
<BackgroundInsets>
<AbsInset left="5" right="5" top="5" bottom="5"/>
</BackgroundInsets>
<EdgeSize>
<AbsValue val="16"/>
</EdgeSize>
</Backdrop>
<Layers>
<Layer level="ARTWORK">
<FontString name="$parentTitle" inherits="GameFontNormalLarge" text="CleanBot">
<Anchors>
<Anchor point="TOP" y="-8"/>
</Anchors>
</FontString>
<FontString name="$parentText" inherits="GameFontHighlight" text="">
<Anchors>
<Anchor point="TOP" y="-40"/>
</Anchors>
</FontString>
</Layer>
</Layers>
<Scripts>
<OnLoad>self:RegisterForDrag("LeftButton");</OnLoad>
<OnDragStart>self:StartMoving();</OnDragStart>
<OnDragStop>self:StopMovingOrSizing();</OnDragStop>
</Scripts>
<Frames>
<Button name="$parentCloseButton" inherits="UIPanelCloseButton">
<Anchors>
<Anchor point="TOPRIGHT" x="-4" y="-4"/>
</Anchors>
<Scripts>
<OnClick>CleanBotFrame:Hide();</OnClick>
</Scripts>
</Button>
</Frames>
</Frame>
</Ui>