-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVMainGUI.xml
126 lines (123 loc) · 4.8 KB
/
VMainGUI.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0" ?>
<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/ http://wowprogramming.com/FrameXML/UI.xsd">
<Frame name="VossiAuctionScanFrame" parent="UIParent" inherits="BasicFrameTemplate" hidden="true" movable="false" enableMouse="true">
<Scripts>
<OnLoad>self:RegisterForDrag("LeftButton");</OnLoad>
<OnDragStart>self:StartMoving();</OnDragStart>
<OnDragStop>self:StopMovingOrSizing();</OnDragStop>
</Scripts>
<Size x="300" y="400" />
<Anchors>
<Anchor point="LEFT" relativeTo="UIParent" relativePoint="RIGHT" x="0" y="0" />
</Anchors>
<Layers>
<Layer level="OVERLAY">
<FontString name="VMenuHeader" inherits="GameFontWhite" justifyH="CENTER" justifyV="CENTER" wordwrap="true" nonspacewrap="true" text="vossi auction scanner">
<Size>
<AbsDimension x="280" y="20" />
</Size>
<Anchors>
<Anchor point="TOP" relativeTo="VossiAuctionScanFrame">
<Offset>
<AbsDimension x="0" y="0" />
</Offset>
</Anchor>
</Anchors>
</FontString>
<FontString name="VScanText" inherits="GameFontWhite" justifyH="LEFT" justifyV="TOP" wordwrap="true" nonspacewrap="true" text="Scanning page X of">
<Size>
<AbsDimension x="280" y="20" />
</Size>
<Anchors>
<Anchor point="TOP" relativeTo="VossiAuctionScanFrame">
<Offset>
<AbsDimension x="0" y="-30" />
</Offset>
</Anchor>
</Anchors>
</FontString>
<FontString name="VTimeSpentText" inherits="GameFontWhite" justifyH="LEFT" justifyV="TOP" wordwrap="true" nonspacewrap="true" text="Time spent: 23 min 5 sec">
<Size>
<AbsDimension x="280" y="20" />
</Size>
<Anchors>
<Anchor point="TOP" relativeTo="VossiAuctionScanFrame">
<Offset>
<AbsDimension x="0" y="-50" />
</Offset>
</Anchor>
</Anchors>
</FontString>
<FontString name="VTimePredictText" inherits="GameFontWhite" justifyH="RIGHT" justifyV="TOP" wordwrap="true" nonspacewrap="true" text="Time left: 2 min 0 sec">
<Size>
<AbsDimension x="280" y="20" />
</Size>
<Anchors>
<Anchor point="TOP" relativeTo="VossiAuctionScanFrame">
<Offset>
<AbsDimension x="0" y="-50" />
</Offset>
</Anchor>
</Anchors>
</FontString>
<FontString name="VScanName" inherits="GameFontWhite" justifyH="RIGHT" justifyV="TOP" wordwrap="true" nonspacewrap="true" text="Scan Snapshot Name: 23234">
<Size>
<AbsDimension x="280" y="20" />
</Size>
<Anchors>
<Anchor point="TOP" relativeTo="VossiAuctionScanFrame">
<Offset>
<AbsDimension x="0" y="-100" />
</Offset>
</Anchor>
</Anchors>
</FontString>
<FontString name="VScansCount" inherits="GameFontWhite" justifyH="CENTER" justifyV="MIDDLE" wordwrap="true" nonspacewrap="true" text="Scans Stored: 10/10">
<Size>
<AbsDimension x="280" y="16" />
</Size>
<Anchors>
<Anchor point="BOTTOM" relativeTo="VossiAuctionScanFrame">
<Offset>
<AbsDimension x="0" y="5" />
</Offset>
</Anchor>
</Anchors>
</FontString>
</Layer>
</Layers>
<Frames>
<Frame name="VScansFrame">
<Size x="280" y="230" />
<Anchors>
<Anchor point="TOP" relativeTo="VossiAuctionScanFrame" relativePoint="TOP">
<Offset>
<AbsDimension x="0" y="-150" />
</Offset>
</Anchor>
</Anchors>
<Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" tile="true" edgeFile="Interface\DialogFrame\UI-DialogBox-Border">
<TileSize>
<AbsValue val="32" />
</TileSize>
<EdgeSize>
<AbsValue val="32" />
</EdgeSize>
<BackgroundInsets>
<AbsInset left="11" right="12" top="12" bottom="11" />
</BackgroundInsets>
<Color r="255" g="255" b="255" />
</Backdrop>
</Frame>
<Button name="VScanButton" inherits="UIPanelButtonTemplate" text="Start Scan">
<Size x="100" y="21" />
<Anchors>
<Anchor point="BOTTOMLEFT" relativeTo="VScansFrame" relativePoint="TOPLEFT" />
</Anchors>
<Scripts>
<OnClick> ScanButtonClick(); </OnClick>
</Scripts>
</Button>
</Frames>
</Frame>
</Ui>