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 <Script file="Menu.lua"/>
4  
5 <!-- a player name checkbox -->
6 <CheckButton name="BagnonForeverMenuNameBox" virtual="true">
7 <Size x="140" y="24"/>
8  
9 <ButtonText>
10 <Anchors>
11 <Anchor point="LEFT">
12 <Offset x="24" y="0"/>
13 </Anchor>
14 </Anchors>
15 </ButtonText>
16  
17 <NormalFont font = "GameFontNormalLarge"/>
18 <HighlightFont font="GameFontHighlightLarge"/>
19  
20 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check">
21 <Anchors>
22 <Anchor point="TOPLEFT"/>
23 <Anchor point="BOTTOMRIGHT" relativePoint="BOTTOMLEFT">
24 <Offset x="24" y="0"/>
25 </Anchor>
26 </Anchors>
27 </CheckedTexture>
28  
29 <Scripts>
30 <OnClick>
31 BagnonForever_ChangeCharacter(this:GetParent().frame, this:GetText());
32 this:GetParent():Hide();
33 </OnClick>
34 </Scripts>
35 </CheckButton>
36  
37 <!-- The double click menu -->
38 <Button name="BagnonForeverMenu" clampedToScreen="true" enableMouse="true" toplevel="true" parent="UIParent" frameStrata="DIALOG" hidden="true">
39 <Size x="160" y="236"/>
40  
41 <Backdrop bgFile="Interface\CharacterFrame\UI-Party-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
42 <BackgroundInsets>
43 <AbsInset left="11" right="12" top="12" bottom="11"/>
44 </BackgroundInsets>
45 <TileSize>
46 <AbsValue val="32"/>
47 </TileSize>
48 <EdgeSize>
49 <AbsValue val="32"/>
50 </EdgeSize>
51 </Backdrop>
52  
53 <Layers>
54 <Layer level="ARTWORK">
55 <FontString name="$parentText" font="GameFontHighlightLarge" text="Characters">
56 <Anchors>
57 <Anchor point="TOP">
58 <Offset x="0" y="-10"/>
59 </Anchor>
60 </Anchors>
61 </FontString>
62 </Layer>
63 </Layers>
64  
65 <Scripts>
66 <OnHide>
67 this:SetParent(UIParent);
68 </OnHide>
69 </Scripts>
70 </Button>
71 </Ui>