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 <Script file="URLCopy.lua"/>
3 <Frame name="URLCopyFrame" toplevel="true" frameStrata="DIALOG" movable="true" enableMouse="true" hidden="true" parent="UIParent" enableKeyboard="true">
4 <Size>
5 <AbsDimension x="400" y="125"/>
6 </Size>
7 <Anchors>
8 <Anchor point="CENTER"/>
9 </Anchors>
10 <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
11 <BackgroundInsets>
12 <AbsInset left="11" right="12" top="12" bottom="11"/>
13 </BackgroundInsets>
14 <TileSize>
15 <AbsValue val="32"/>
16 </TileSize>
17 <EdgeSize>
18 <AbsValue val="32"/>
19 </EdgeSize>
20 </Backdrop>
21 <Layers>
22 <Layer level="ARTWORK">
23 <Texture name="URLCopyFrameHeader" file="Interface\DialogFrame\UI-DialogBox-Header">
24 <Size>
25 <AbsDimension x="256" y="64"/>
26 </Size>
27 <Anchors>
28 <Anchor point="TOP">
29 <Offset>
30 <AbsDimension x="0" y="12"/>
31 </Offset>
32 </Anchor>
33 </Anchors>
34 </Texture>
35 <FontString inherits="GameFontNormal" text="URLCOPY_TITLE">
36 <Anchors>
37 <Anchor point="TOP" relativeTo="URLCopyFrameHeader">
38 <Offset>
39 <AbsDimension x="0" y="-14"/>
40 </Offset>
41 </Anchor>
42 </Anchors>
43 </FontString>
44 </Layer>
45 </Layers>
46 <Frames>
47 <EditBox name="URLCopyFrameEditBox" historyLines="0">
48 <Size>
49 <AbsDimension x="300" y="16"/>
50 </Size>
51 <Anchors>
52 <Anchor point="TOP">
53 <Offset>
54 <AbsDimension x="0" y="-50" />
55 </Offset>
56 </Anchor>
57 </Anchors>
58 <Layers>
59 <Layer level="BACKGROUND">
60 <Texture name="$parentLeft" file="Interface\ChatFrame\UI-ChatInputBorder-Left">
61 <Size>
62 <AbsDimension x="65" y="32"/>
63 </Size>
64 <Anchors>
65 <Anchor point="LEFT">
66 <Offset>
67 <AbsDimension x="-10" y="0"/>
68 </Offset>
69 </Anchor>
70 </Anchors>
71 <TexCoords left="0" right="0.2539" top="0" bottom="1.0"/>
72 </Texture>
73 <Texture name="$parentRight" file="Interface\ChatFrame\UI-ChatInputBorder-Right">
74 <Size>
75 <AbsDimension x="25" y="32"/>
76 </Size>
77 <Anchors>
78 <Anchor point="RIGHT">
79 <Offset>
80 <AbsDimension x="10" y="0"/>
81 </Offset>
82 </Anchor>
83 </Anchors>
84 <TexCoords left="0.9" right="1.0" top="0" bottom="1.0"/>
85 </Texture>
86 <Texture file="Interface\ChatFrame\UI-ChatInputBorder-Left">
87 <Size>
88 <AbsDimension x="5" y="32"/>
89 </Size>
90 <Anchors>
91 <Anchor point="LEFT" relativeTo="$parentLeft" relativePoint="RIGHT">
92 <Offset>
93 <AbsDimension x="0" y="0"/>
94 </Offset>
95 </Anchor>
96 <Anchor point="RIGHT" relativeTo="$parentRight" relativePoint="LEFT">
97 <Offset>
98 <AbsDimension x="0" y="0"/>
99 </Offset>
100 </Anchor>
101 </Anchors>
102 <TexCoords left="0.29296875" right="1.0" top="0" bottom="1.0"/>
103 </Texture>
104 </Layer>
105 </Layers>
106 <FontString inherits="ChatFontNormal"/>
107 <Scripts>
108 <OnEscapePressed>
109 URLCopyFrame:Hide();
110 </OnEscapePressed>
111 </Scripts>
112 </EditBox>
113 <Button name="URLCopyFrameDone" inherits="OptionsButtonTemplate" text="Close">
114 <Anchors>
115 <Anchor point="BOTTOM">
116 <Offset>
117 <AbsDimension x="0" y="20"/>
118 </Offset>
119 </Anchor>
120 </Anchors>
121 <Scripts>
122 <OnClick>
123 URLCopy_Toggle();
124 </OnClick>
125 </Scripts>
126 </Button>
127 </Frames>
128 <Scripts>
129 <OnLoad>
130 URLCopy_OnLoad();
131 </OnLoad>
132 <OnDragStart>
133 URLCopyFrame:StartMoving();
134 </OnDragStart>
135 <OnDragStop>
136 URLCopyFrame:StopMovingOrSizing();
137 </OnDragStop>
138 <OnMouseUp>
139 URLCopyFrame:StopMovingOrSizing();
140 </OnMouseUp>
141 </Scripts>
142 </Frame>
143 </Ui>