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/ ..\FrameXML\UI.xsd">
2 <Frame name="GRSSSettings" parent="UIParent" enableMouse="true" movable="true">
3 <Size>
4 <AbsDimension x="120" y="160" />
5 </Size>
6 <Anchors>
7 <Anchor point="TOPRIGHT" relativeTo="GRSS" relativePoint="TOPLEFT">
8 <Offset>
9 <AbsDimension x="10" y="0" />
10 </Offset>
11 </Anchor>
12 </Anchors>
13 <Scripts>
14 <OnLoad>
15 tinsert(UISpecialFrames,"GRSSSettings");
16 </OnLoad>
17 <OnMouseUp>
18 if ( this.isMoving ) then
19 this:StopMovingOrSizing();
20 this.isMoving = false;
21 end
22 </OnMouseUp>
23 <OnMouseDown>
24 if ( ( ( not this.isLocked ) or ( this.isLocked == 0 ) ) and ( arg1 == "LeftButton" ) ) then
25 this:StartMoving();
26 this.isMoving = true;
27 end
28 </OnMouseDown>
29 <OnHide>
30 if ( this.isMoving ) then
31 this:StopMovingOrSizing();
32 this.isMoving = false;
33 end
34 </OnHide>
35  
36 </Scripts>
37 <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
38 <BackgroundInsets>
39 <AbsInset left="4" right="4" top="4" bottom="4" />
40 </BackgroundInsets>
41 <TileSize>
42 <AbsValue val="16" />
43 </TileSize>
44 <EdgeSize>
45 <AbsValue val="16" />
46 </EdgeSize>
47 </Backdrop>
48 <Frames>
49 <Button name="$parentCloseButton" inherits="UIPanelCloseButton">
50 <Size>
51 <AbsDimension x="27" y="27"/>
52 </Size>
53 <Anchors>
54 <Anchor point="TOPRIGHT">
55 <Offset>
56 <AbsDimension x="0" y="0"/>
57 </Offset>
58 </Anchor>
59 </Anchors>
60 </Button>
61 <CheckButton name="$parentAutoSnapShot" inherits="OptionsCheckButtonTemplate" checked="true">
62 <Anchors>
63 <Anchor point="LEFT">
64 <Offset>
65 <AbsDimension x="20" y="0"></AbsDimension>
66 </Offset>
67 </Anchor>
68 </Anchors>
69 </CheckButton>
70 </Frames>
71 </Frame>
72 </Ui>
73