-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gnobesy.xml
119 lines (116 loc) · 3.43 KB
/
Gnobesy.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
<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">
<!-- Template Definitions -->
<CheckButton name="GNOBESYCheckTemplate" inherits="InterfaceOptionsCheckButtonTemplate" virtual="true">
<HitRectInsets>
<AbsInset left="0" right="0" top="0" bottom="0" />
</HitRectInsets>
</CheckButton>
<!-- Main Frame -->
<Frame name="GNOBESY_MainFrame" parent="UIParent" hidden="true">
<Scripts>
<OnLoad>
GNOBESY_MainFrame_OnLoad(self);
</OnLoad>
<OnEvent>
GNOBESY_MainFrame_OnEvent(self, event, ...);
</OnEvent>
</Scripts>
</Frame>
<!-- Options Panel -->
<Frame name="GNOBESY_OptionsPanel">
<Layers>
<Layer level="ARTWORK">
<FontString name="GNOBESY_OptionsPanel_TitleText" inherits="GameFontNormalLarge" text="GNOBESY_OPTIONSPANEL_SETTINGS">
<Anchors>
<Anchor point="TOPLEFT">
<Offset>
<AbsDimension x="16" y="-16" />
</Offset>
</Anchor>
</Anchors>
</FontString>
</Layer>
</Layers>
<Frames>
<CheckButton name="GNOBESY_OptionsPanel_SortEnabled" inherits="GNOBESYCheckTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeTo="GNOBESY_OptionsPanel_TitleText" relativePoint="BOTTOMLEFT">
<Offset>
<AbsDimension x="16" y="-16"/>
</Offset>
</Anchor>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<FontString inherits="GameFontNormal" text="GNOBESY_OPTIONSPANEL_ENABLE">
<Anchors>
<Anchor point="LEFT" relativePoint="RIGHT"/>
</Anchors>
</FontString>
</Layer>
</Layers>
<Scripts>
<OnLoad>
self.tooltipText = GNOBESY_OPTIONSPANEL_ENABLE_TIP;
</OnLoad>
</Scripts>
</CheckButton>
<CheckButton name="GNOBESY_OptionsPanel_ReverseOrder" inherits="GNOBESYCheckTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeTo="GNOBESY_OptionsPanel_SortEnabled" relativePoint="BOTTOMLEFT">
<Offset>
<AbsDimension x="16" y="-16"/>
</Offset>
</Anchor>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<FontString inherits="GameFontNormal" text="GNOBESY_OPTIONSPANEL_REVERSE">
<Anchors>
<Anchor point="LEFT" relativePoint="RIGHT"/>
</Anchors>
</FontString>
</Layer>
</Layers>
<Scripts>
<OnLoad>
self.tooltipText = GNOBESY_OPTIONSPANEL_REVERSE_TIP;
</OnLoad>
</Scripts>
</CheckButton>
<Frame>
<Size>
<AbsDimension x="1" y="1"/>
</Size>
<Layers>
<Layer level="ARTWORK">
<FontString name="GNOBESY_OptionsPanel_Credits1_Label" inherits="GameFontNormal" text="GNOBESY_OPTIONSPANEL_CREDITS1">
<Anchors>
<Anchor point="TOPLEFT" relativeTo="GNOBESY_OptionsPanel_ReverseOrder" relativePoint="BOTTOMLEFT">
<Offset>
<AbsDimension x="0" y="-12" />
</Offset>
</Anchor>
</Anchors>
</FontString>
<FontString inherits="GameFontNormal" text="GNOBESY_OPTIONSPANEL_CREDITS2">
<Anchors>
<Anchor point="TOPLEFT" relativeTo="GNOBESY_OptionsPanel_Credits1_Label" relativePoint="BOTTOMLEFT">
<Offset>
<AbsDimension x="0" y="-8" />
</Offset>
</Anchor>
</Anchors>
</FontString>
</Layer>
</Layers>
</Frame>
</Frames>
<Scripts>
<OnLoad>
GNOBESY_OptionsPanel_OnLoad(self);
</OnLoad>
</Scripts>
</Frame>
</Ui>