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="spot.lua"/> |
||
6 | |||
7 | <EditBox name="BagnonSpot" inherits="BagnonPopupFrame" autoFocus="false"> |
||
8 | <Scripts> |
||
9 | <OnLoad> |
||
10 | this:SetTextInsets(8, 8, 0, 0) |
||
11 | </OnLoad> |
||
12 | <OnShow> |
||
13 | this:SetFocus() |
||
14 | </OnShow> |
||
15 | <OnHide> |
||
16 | this:SetText("") |
||
17 | BagnonSpot_ClearSearch() |
||
18 | </OnHide> |
||
19 | <OnEscapePressed> |
||
20 | this:ClearFocus(); |
||
21 | </OnEscapePressed> |
||
22 | <OnEditFocusLost> |
||
23 | this:HighlightText(); |
||
24 | </OnEditFocusLost> |
||
25 | <OnTextChanged> |
||
26 | BagnonSpot_Search(this:GetText()) |
||
27 | </OnTextChanged> |
||
28 | </Scripts> |
||
29 | <FontString font="ChatFontNormal"/> |
||
30 | </EditBox> |
||
31 | </Ui> |