-
Notifications
You must be signed in to change notification settings - Fork 0
/
CraftLog.xml
46 lines (46 loc) · 1.52 KB
/
CraftLog.xml
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
<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="CraftLogTreeElement" virtual="true">
<Frames>
<Button name="$parentExpandCollapse" text="+">
<Anchors>
<Anchor point="LEFT"/>
</Anchors>
<Size x="20" y="20"/>
</Button>
</Frames>
</Frame>
<Frame name="CraftLogFrame" inherits="BasicFrameTemplateWithInset" hidden="true" movable="true" resizable="true" enableMouse="true" clampedToScreen="true" scale="0.6">
<Anchors>
<Anchor point="CENTER" />
</Anchors>
<Size x="800" y="600" />
<!--<ResizeBounds>
<minResize x="300" y="200"/>
</ResizeBounds>-->
<Scripts>
<OnLoad>
tinsert(UISpecialFrames, self:GetName());
self:RegisterForDrag("LeftButton");
</OnLoad>
<OnDragStart>
self:StartMoving();
</OnDragStart>
<onDragStop>
self:StopMovingOrSizing();
</onDragStop>
</Scripts>
<Frames>
<ScrollFrame inherits="UIPanelScrollFrameTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeTo="$parent" x="20" y="-60" />
<Anchor point="BOTTOMRIGHT" relativeTo="$parent" x="-20" y="20" />
</Anchors>
<ScrollChild>
<Frame name="scScroll">
<Size x="780" y="1"/>
</Frame>
</ScrollChild>
</ScrollFrame>
</Frames>
</Frame>
</Ui>