58 lines
1.8 KiB
XML
58 lines
1.8 KiB
XML
<Ui xsi:schemaLocation="http://www.blizzard.com/wow/ui/">
|
|
|
|
<Script file="core.lua"/>
|
|
|
|
<Frame>
|
|
<Scripts>
|
|
<OnLoad>
|
|
this:RegisterEvent('VARIABLES_LOADED')
|
|
this:RegisterEvent('ADDON_LOADED')
|
|
this:RegisterEvent('AUCTION_HOUSE_SHOW')
|
|
this:RegisterEvent('AUCTION_HOUSE_CLOSED')
|
|
this:RegisterEvent('AUCTION_BIDDER_LIST_UPDATE')
|
|
this:RegisterEvent('AUCTION_OWNED_LIST_UPDATE')
|
|
</OnLoad>
|
|
<OnEvent>
|
|
Aux:on_event()
|
|
</OnEvent>
|
|
</Scripts>
|
|
</Frame>
|
|
|
|
<Frame name="AuxFrame" toplevel="true" movable="true" enableMouse="true" hidden="true" parent="UIParent" clampedToScreen="true">
|
|
<Size><AbsDimension x="768" y="447"/></Size>
|
|
<Anchors>
|
|
<Anchor point="LEFT">
|
|
<Offset>
|
|
<AbsDimension x="100" y="0"/>
|
|
</Offset>
|
|
</Anchor>
|
|
</Anchors>
|
|
<Scripts>
|
|
<OnLoad>
|
|
this:RegisterForDrag('LeftButton')
|
|
</OnLoad>
|
|
<OnShow>
|
|
PlaySound('AuctionWindowOpen')
|
|
</OnShow>
|
|
<OnHide>
|
|
PlaySound('AuctionWindowClose')
|
|
CloseAuctionHouse()
|
|
</OnHide>
|
|
<OnDragStart>
|
|
this:StartMoving()
|
|
</OnDragStart>
|
|
<OnDragStop>
|
|
this:StopMovingOrSizing()
|
|
</OnDragStop>
|
|
</Scripts>
|
|
<Frames>
|
|
<Frame name="$parentContent">
|
|
<Anchors>
|
|
<Anchor point="TOPLEFT"><Offset><AbsDimension x="4" y="-80"/></Offset></Anchor>
|
|
<Anchor point="BOTTOMRIGHT"><Offset><AbsDimension x="-4" y="35"/></Offset></Anchor>
|
|
</Anchors>
|
|
</Frame>
|
|
</Frames>
|
|
</Frame>
|
|
</Ui>
|