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/" |
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="context.lua"/> |
||
6 | |||
7 | <CheckButton name="BOptionsContextButton" inherits="BongosCheckButtonTemplate" virtual="true"> |
||
8 | <Scripts> |
||
9 | <OnClick> |
||
10 | BActionBar.SetContextPaging(tonumber(this:GetText()), this:GetChecked()); |
||
11 | </OnClick> |
||
12 | <OnMouseWheel> |
||
13 | BOptionsContext_OnMousewheel(BOptionsPanelContextScrollFrame, arg1); |
||
14 | </OnMouseWheel> |
||
15 | </Scripts> |
||
16 | </CheckButton> |
||
17 | |||
18 | <Frame name="BongosOptionsContext" inherits="BongosOptionsPanel" virtual="true"> |
||
19 | <Frames> |
||
20 | <ScrollFrame name="$parentScrollFrame" inherits="FauxScrollFrameTemplate"> |
||
21 | <Anchors> |
||
22 | <Anchor point="TOPLEFT" relativeTo="$parent" relativePoint="TOPRIGHT"> |
||
23 | <Offset x="-48" y="-32"/> |
||
24 | </Anchor> |
||
25 | <Anchor point="BOTTOMRIGHT"> |
||
26 | <Offset x="-24" y="6"/> |
||
27 | </Anchor> |
||
28 | </Anchors> |
||
29 | <Scripts> |
||
30 | <OnVerticalScroll> |
||
31 | FauxScrollFrame_OnVerticalScroll(18, BOptionsContextScrollBar_Update); |
||
32 | </OnVerticalScroll> |
||
33 | </Scripts> |
||
34 | </ScrollFrame> |
||
35 | </Frames> |
||
36 | |||
37 | <Scripts> |
||
38 | <OnLoad> |
||
39 | BOptionsContext_OnLoad(); |
||
40 | </OnLoad> |
||
41 | <OnShow> |
||
42 | BOptionsContextScrollBar_Update(); |
||
43 | </OnShow> |
||
44 | <OnMouseWheel> |
||
45 | BOptionsContext_OnMousewheel(BOptionsPanelContextScrollFrame, arg1); |
||
46 | </OnMouseWheel> |
||
47 | </Scripts> |
||
48 | </Frame> |
||
49 | </Ui> |