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  
3 <Frame name="WIM_urlCopy" movable="true" enableMouse="true" toplevel="true" frameStrata="DIALOG" parent="UIParent" hidden="true">
4 <Size>
5 <AbsDimension x="400" y="20"/>
6 </Size>
7 <Anchors>
8 <Anchor point="TOPLEFT">
9 <Offset>
10 <AbsDimension x="100" y="-125"/>
11 </Offset>
12 </Anchor>
13 </Anchors>
14 <Layers>
15 <Layer level="BACKGROUND">
16 <Texture file="Interface\AddOns\WIM\Images\urlCopy">
17 <Size>
18 <AbsDimension x="512" y="64"/>
19 </Size>
20 <Anchors>
21 <Anchor point="TOPLEFT">
22 <Offset>
23 <AbsDimension x="0" y="10"/>
24 </Offset>
25 </Anchor>
26 </Anchors>
27 </Texture>
28 <FontString name="$parentTitleBar" inherits="GameFontNormal" text="Copy URL">
29 <Anchors>
30 <Anchor point="TOPLEFT">
31 <Offset>
32 <AbsDimension x="18" y="-8"/>
33 </Offset>
34 </Anchor>
35 </Anchors>
36 </FontString>
37 </Layer>
38 </Layers>
39 <Frames>
40 <Button name="$parentExitButton">
41 <Size>
42 <AbsDimension x="32" y="32"/>
43 </Size>
44 <Anchors>
45 <Anchor point="TOPLEFT">
46 <Offset>
47 <AbsDimension x="385" y="-17"/>
48 </Offset>
49 </Anchor>
50 </Anchors>
51 <NormalTexture file="Interface\Buttons\UI-Panel-MinimizeButton-Up"/>
52 <PushedTexture file="Interface\Buttons\UI-Panel-MinimizeButton-Down"/>
53 <HighlightTexture alphaMode="ADD" file="Interface\Buttons\UI-Panel-MinimizeButton-Highlight"/>
54 <Scripts>
55 <OnLoad>
56 this:RegisterForClicks("LeftButtonUp", "RightButtonUp");
57 </OnLoad>
58 <OnClick>
59 this:GetParent():Hide();
60 </OnClick>
61 </Scripts>
62 </Button>
63 <EditBox name="$parentUrlBox" enableMouse="true" ignoreArrows="false" frameStrata="DIALOG" toplevel="true" autoFocus="true">
64 <Size>
65 <AbsDimension x="370" y="20" />
66 </Size>
67 <Anchors>
68 <Anchor point="TOPLEFT">
69 <Offset>
70 <AbsDimension x="12" y="-22" />
71 </Offset>
72 </Anchor>
73 </Anchors>
74 <FontString font="Fonts\ARIALN.TTF">
75 <FontHeight>
76 <AbsValue val="14" />
77 </FontHeight>
78 <Color r="1" g="1" b="1" />
79 <Shadow>
80 <Color r="0" g="0" b="0" />
81 <Offset>
82 <AbsDimension x="1" y="-1" />
83 </Offset>
84 </Shadow>
85 </FontString>
86 <Scripts>
87 <OnEscapePressed>
88 this:GetParent():Hide();
89 </OnEscapePressed>
90 <OnEditFocusGained>
91 this:HighlightText(0);
92 </OnEditFocusGained>
93 </Scripts>
94 </EditBox>
95 </Frames>
96 <Scripts>
97 <OnLoad>
98 this:RegisterForDrag("LeftButton");
99 </OnLoad>
100 <OnDragStart>
101 this:StartMoving();
102 this.isMoving = true;
103 </OnDragStart>
104 <OnDragStop>
105 this:StopMovingOrSizing();
106 this.isMoving = false;
107 </OnDragStop>
108 </Scripts>
109 </Frame>
110  
111 </Ui>