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/"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://www.blizzard.com/wow/ui/..\FrameXML\UI.xsd">
4  
5 <Script file="Bag.lua"/>
6  
7 <Frame name="BagnonBagSlotsTemplate" virtual="true"/>
8  
9 <!-- A Bagnon bag template, based off the normal one but with no XML dependencies -->
10 <Button name="BagnonBagTemplate" virtual="true">
11 <Size x="37" y="37"/>
12  
13 <Layers>
14 <Layer level="BORDER">
15 <Texture name="$parentIconTexture" setAllPoints="true"/>
16  
17 <FontString name="$parentCount" font="NumberFontNormalSmall" justifyH="RIGHT" hidden="true">
18 <Anchors>
19 <Anchor point="BOTTOMRIGHT">
20 <Offset x="1" y="2"/>
21 </Anchor>
22 <FontHeight>
23 <AbsValue val="10"/>
24 </FontHeight>
25 </Anchors>
26 </FontString>
27 </Layer>
28 </Layers>
29  
30 <NormalTexture name="$parentNormalTexture" file="Interface\Buttons\UI-Quickslot2">
31 <Size x="64" y="64"/>
32 <Anchors>
33 <Anchor point="CENTER">
34 <Offset x="0" y="-1"/>
35 </Anchor>
36 </Anchors>
37 </NormalTexture>
38 <PushedTexture file="Interface\Buttons\UI-Quickslot-Depress"/>
39 <HighlightTexture file="Interface\Buttons\ButtonHilight-Square" alphaMode="ADD"/>
40  
41 <Scripts>
42 <OnLoad>
43 BagnonBag_OnLoad();
44 </OnLoad>
45 <OnShow>
46 BagnonBag_OnShow();
47 </OnShow>
48 <OnEvent>
49 BagnonBag_OnEvent();
50 </OnEvent>
51 <OnEnter>
52 BagnonBag_OnEnter();
53 </OnEnter>
54 <OnLeave>
55 BagnonBag_OnLeave();
56 </OnLeave>
57 <OnClick>
58 BagnonBag_OnClick();
59 </OnClick>
60 <OnDragStart>
61 BagnonBag_OnDrag();
62 </OnDragStart>
63 <OnReceiveDrag>
64 BagnonBag_OnClick();
65 </OnReceiveDrag>
66 </Scripts>
67 </Button>
68 </Ui>