vanilla-wow-addons – Blame information for rev 1
?pathlinks?
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="smartselection.lua"/> |
||
4 | |||
5 | <!-- template for selection component --> |
||
6 | <Frame name="SASelectionTemplate" virtual="true"> |
||
7 | <Size> |
||
8 | <AbsDimension x="130" y="32"/> |
||
9 | </Size> |
||
10 | <Layers> |
||
11 | <Layer level="BACKGROUND"> |
||
12 | <FontString name="$parentName" inherits="GameFontNormalSmall" justifyH="LEFT" text="?"> |
||
13 | <Size> |
||
14 | <AbsDimension x="130" y="0"/> |
||
15 | </Size> |
||
16 | <Anchors> |
||
17 | <Anchor point="CENTER" relativePoint="CENTER" relativeTo="$parent"> |
||
18 | <Offset> |
||
19 | <AbsDimension x="0" y="22"/> |
||
20 | </Offset> |
||
21 | </Anchor> |
||
22 | </Anchors> |
||
23 | </FontString> |
||
24 | |||
25 | <FontString name="$parentText" inherits="GameFontNormalSmall" justifyH="CENTER" text="?" scale="0.8"> |
||
26 | <Color r="1" g="1" b="1"/> |
||
27 | <Size> |
||
28 | <AbsDimension x="130" y="0"/> |
||
29 | </Size> |
||
30 | <Anchors> |
||
31 | <Anchor point="CENTER" relativePoint="CENTER" relativeTo="$parent"> |
||
32 | <Offset> |
||
33 | <AbsDimension x="0" y="0"/> |
||
34 | </Offset> |
||
35 | </Anchor> |
||
36 | </Anchors> |
||
37 | </FontString> |
||
38 | </Layer> |
||
39 | </Layers> |
||
40 | <Frames> |
||
41 | <Button name="$parentPrevButton"> |
||
42 | <Size> |
||
43 | <AbsDimension x="32" y="32"/> |
||
44 | </Size> |
||
45 | <Anchors> |
||
46 | <Anchor point="LEFT" relativeTo="$parent"> |
||
47 | <Offset> |
||
48 | <AbsDimension x="0" y="0"/> |
||
49 | </Offset> |
||
50 | </Anchor> |
||
51 | </Anchors> |
||
52 | <NormalTexture file="Interface\Buttons\UI-SpellbookIcon-PrevPage-Up"/> |
||
53 | <PushedTexture file="Interface\Buttons\UI-SpellbookIcon-PrevPage-Down"/> |
||
54 | <DisabledTexture file="Interface\Buttons\UI-SpellbookIcon-PrevPage-Disabled"/> |
||
55 | <HighlightTexture file="Interface\Buttons\UI-Common-MouseHilight" alphaMode="ADD"/> |
||
56 | <Scripts> |
||
57 | <OnClick> |
||
58 | Selection_Prev(this:GetParent()); |
||
59 | </OnClick> |
||
60 | </Scripts> |
||
61 | </Button> |
||
62 | |||
63 | <Button name="$parentNextButton"> |
||
64 | <Size> |
||
65 | <AbsDimension x="32" y="32"/> |
||
66 | </Size> |
||
67 | <Anchors> |
||
68 | <Anchor point="RIGHT" relativeTo="$parent"> |
||
69 | <Offset> |
||
70 | <AbsDimension x="0" y="0"/> |
||
71 | </Offset> |
||
72 | </Anchor> |
||
73 | </Anchors> |
||
74 | <NormalTexture file="Interface\Buttons\UI-SpellbookIcon-NextPage-Up"/> |
||
75 | <PushedTexture file="Interface\Buttons\UI-SpellbookIcon-NextPage-Down"/> |
||
76 | <DisabledTexture file="Interface\Buttons\UI-SpellbookIcon-NextPage-Disabled"/> |
||
77 | <HighlightTexture file="Interface\Buttons\UI-Common-MouseHilight" alphaMode="ADD"/> |
||
78 | <Scripts> |
||
79 | <OnClick> |
||
80 | Selection_Next(this:GetParent()); |
||
81 | </OnClick> |
||
82 | </Scripts> |
||
83 | </Button> |
||
84 | </Frames> |
||
85 | </Frame> |
||
86 | |||
87 | </Ui> |