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="AceGUIEditBox.lua"/>
6  
7 <EditBox name="AceGUIEditBoxTemplate" autoFocus="false" enableMouse="true" virtual="true">
8 <Scripts>
9 <OnEditFocusGained>
10 this:CallHandler("OnEditFocusGained")
11 </OnEditFocusGained>
12 <OnEditFocusLost>
13 this:CallHandler("OnEditFocusLost")
14 </OnEditFocusLost>
15 <OnEnterPressed>
16 this:CallHandler("OnEnterPressed")
17 </OnEnterPressed>
18 <OnEscapePressed>
19 this:CallHandler("OnEscapePressed")
20 </OnEscapePressed>
21 </Scripts>
22 <FontString inherits="GameFontHighlight"/>
23 </EditBox>
24  
25 <EditBox name="AceGUIInputBoxTemplate" autoFocus="false" inherits="InputBoxTemplate" virtual="true">
26 <Layers>
27 <Layer level="BACKGROUND">
28 <FontString name="$parentLabel" inherits="GameFontNormalSmall">
29 <Anchors>
30 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
31 <Offset>
32 <AbsDimension x="-2" y="0"/>
33 </Offset>
34 </Anchor>
35 </Anchors>
36 </FontString>
37 </Layer>
38 </Layers>
39 <FontString inherits="GameFontHighlight"/>
40 <Scripts>
41 <OnEditFocusGained>
42 this:CallHandler("OnEditFocusGained")
43 </OnEditFocusGained>
44 <OnEditFocusLost>
45 this:CallHandler("OnEditFocusLost")
46 </OnEditFocusLost>
47 <OnEnterPressed>
48 this:CallHandler("OnEnterPressed")
49 </OnEnterPressed>
50 <OnEscapePressed>
51 this:CallHandler("OnEscapePressed")
52 </OnEscapePressed>
53 </Scripts>
54 </EditBox>
55 </Ui>