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="TitanClock.lua"/>
4 <Frame name="TitanPanelClockControlFrameTemplate" virtual="true" hidden="true">
5 <Size>
6 <AbsDimension x="90" y="200" />
7 </Size>
8 <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
9 <EdgeSize>
10 <AbsValue val="16"/>
11 </EdgeSize>
12 <TileSize>
13 <AbsValue val="16"/>
14 </TileSize>
15 <BackgroundInsets>
16 <AbsInset left="5" right="5" top="5" bottom="5"/>
17 </BackgroundInsets>
18 </Backdrop>
19 <Layers>
20 <Layer>
21 <FontString name="$parentTitle" inherits="GameFontNormalSmall">
22 <Anchors>
23 <Anchor point="TOP">
24 <Offset>
25 <AbsDimension x="0" y="-10" />
26 </Offset>
27 </Anchor>
28 </Anchors>
29 </FontString>
30 </Layer>
31 </Layers>
32 <Frames>
33 <Slider name="TitanPanelClockControlSlider" inherits="TitanOptionsSliderTemplate">
34 <Anchors>
35 <Anchor point="TOP">
36 <Offset>
37 <AbsDimension x="0" y="-40"/>
38 </Offset>
39 </Anchor>
40 </Anchors>
41 <Scripts>
42 <OnShow>
43 TitanPanelClockControlSlider_OnShow();
44 </OnShow>
45 <OnValueChanged>
46 TitanPanelClockControlSlider_OnValueChanged();
47 </OnValueChanged>
48 <OnEnter>
49 TitanPanelClockControlSlider_OnEnter();
50 </OnEnter>
51 <OnLeave>
52 TitanPanelClockControlSlider_OnLeave()
53 </OnLeave>
54 </Scripts>
55 </Slider>
56 <CheckButton name="TitanPanelClockControlCheckButton" inherits="OptionsCheckButtonTemplate">
57 <Size>
58 <AbsDimension x="24" y="24"/>
59 </Size>
60 <Anchors>
61 <Anchor point="TOP" relativeTo="TitanPanelClockControlSlider" relativePoint="BOTTOM">
62 <Offset>
63 <AbsDimension x="-25" y="-20"/>
64 </Offset>
65 </Anchor>
66 </Anchors>
67 <Scripts>
68 <OnShow>
69 TitanPanelClockControlCheckButton_OnShow();
70 </OnShow>
71 <OnClick>
72 TitanPanelClockControlCheckButton_OnClick();
73 </OnClick>
74 <OnEnter>
75 TitanPanelClockControlCheckButton_OnEnter();
76 </OnEnter>
77 <OnLeave>
78 TitanPanelClockControlCheckButton_OnLeave()
79 </OnLeave>
80 </Scripts>
81 </CheckButton>
82 </Frames>
83 <Scripts>
84 <OnLoad>
85 TitanPanelClockControlFrame_OnLoad();
86 </OnLoad>
87 <OnEnter>
88 TitanUtils_StopFrameCounting(this);
89 </OnEnter>
90 <OnLeave>
91 TitanUtils_StartFrameCounting(this, TITAN_CLOCK_FRAME_SHOW_TIME);
92 </OnLeave>
93 <OnUpdate>
94 TitanPanelClockControlFrame_OnUpdate(arg1);
95 </OnUpdate>
96 </Scripts>
97 </Frame>
98 <Frame parent="UIParent">
99 <Frames>
100 <Button name="TitanPanelClockButton" inherits="TitanPanelTextTemplate" frameStrata="FULLSCREEN" toplevel="true">
101 <Scripts>
102 <OnLoad>
103 TitanPanelClockButton_OnLoad();
104 TitanPanelButton_OnLoad();
105 </OnLoad>
106 </Scripts>
107 </Button>
108 <Frame name="TitanPanelClockControlFrame" inherits="TitanPanelClockControlFrameTemplate" frameStrata="FULLSCREEN" toplevel="true" />
109 </Frames>
110 </Frame>
111 </Ui>