160 lines
6.0 KiB
XML
160 lines
6.0 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>
|
|
|
|
<GameTooltip name="AuxTooltip" inherits="GameTooltipTemplate">
|
|
<Scripts>
|
|
<OnTooltipAddMoney>
|
|
this.money = arg1
|
|
</OnTooltipAddMoney>
|
|
</Scripts>
|
|
</GameTooltip>
|
|
|
|
<CheckButton name="AuxRadioButtonTemplate" virtual="true">
|
|
<Size><AbsDimension x="16" y="16"/></Size>
|
|
<Layers>
|
|
<Layer level="BACKGROUND">
|
|
<FontString name="$parentText" inherits="GameFontHighlightSmall">
|
|
<Anchors>
|
|
<Anchor point="LEFT" relativePoint="RIGHT">
|
|
<Offset>
|
|
<AbsDimension x="5" y="0"/>
|
|
</Offset>
|
|
</Anchor>
|
|
</Anchors>
|
|
</FontString>
|
|
</Layer>
|
|
</Layers>
|
|
<Scripts>
|
|
<OnClick>
|
|
SendMailRadioButton_OnClick(this:GetID());
|
|
</OnClick>
|
|
</Scripts>
|
|
<NormalTexture file="Interface\Buttons\UI-RadioButton">
|
|
<TexCoords left="0" right="0.25" top="0" bottom="1"/>
|
|
</NormalTexture>
|
|
<HighlightTexture file="Interface\Buttons\UI-RadioButton" alphaMode="ADD">
|
|
<TexCoords left="0.5" right="0.75" top="0" bottom="1"/>
|
|
</HighlightTexture>
|
|
<CheckedTexture file="Interface\Buttons\UI-RadioButton">
|
|
<TexCoords left="0.25" right="0.5" top="0" bottom="1"/>
|
|
</CheckedTexture>
|
|
</CheckButton>
|
|
|
|
<Frame name="AuxFrameBoxTemplate" virtual="true">
|
|
<Layers>
|
|
<Layer level="BACKGROUND">
|
|
<FontString name="$parentTitle" inherits="GameFontHighlight">
|
|
<Anchors>
|
|
<Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
|
|
<Offset>
|
|
<AbsDimension x="9" y="4"/>
|
|
</Offset>
|
|
</Anchor>
|
|
</Anchors>
|
|
</FontString>
|
|
</Layer>
|
|
</Layers>
|
|
<Backdrop bgFile="Interface\Buttons\WHITE8X8" edgeFile="Interface\Buttons\WHITE8X8" tile="true">
|
|
<EdgeSize>
|
|
<AbsValue val="1.5"/>
|
|
</EdgeSize>
|
|
<Color r="0.09411764705882353" g="0.09411764705882353" b="0.09411764705882353"/>
|
|
<!--24/255-->
|
|
<BorderColor r="1" g="1" b="1" a="0.03"/>
|
|
</Backdrop>
|
|
</Frame>
|
|
|
|
<Frame name="AuxItemTemplate" virtual="true">
|
|
<Size><AbsDimension x="193" y="37"/></Size>
|
|
<Layers>
|
|
<Layer level="BORDER">
|
|
<Texture name="$parentIconTexture">
|
|
<Size><AbsDimension x="32" y="32"/></Size>
|
|
<Anchors><Anchor point="LEFT"><Offset><AbsDimension x="2" y="0"/></Offset></Anchor></Anchors>
|
|
</Texture>
|
|
<Texture file="Interface\Buttons\UI-Quickslot2">
|
|
<Size><AbsDimension x="60" y="60"/></Size>
|
|
<Anchors><Anchor point="CENTER" relativeTo="$parentIconTexture"><Offset><AbsDimension x="0" y="0"/></Offset></Anchor></Anchors>
|
|
</Texture>
|
|
<FontString name="$parentCount" inherits="NumberFontNormal" justifyH="RIGHT">
|
|
<Anchors><Anchor point="BOTTOMRIGHT" relativeTo="$parentIconTexture"><Offset><AbsDimension x="-5" y="2"/></Offset></Anchor></Anchors>
|
|
</FontString>
|
|
<FontString name="$parentName" font="Fonts\ARIALN.TTF" justifyH="LEFT">
|
|
<FontHeight>
|
|
<AbsValue val="14"/>
|
|
</FontHeight>
|
|
<Anchors>
|
|
<Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentIconTexture"><Offset><AbsDimension x="10" y="0"/></Offset></Anchor>
|
|
<Anchor point="RIGHT"><Offset><AbsDimension x="-10" y="0"/></Offset></Anchor>
|
|
<Anchor point="TOP"><Offset><AbsDimension x="0" y="-5"/></Offset></Anchor>
|
|
<Anchor point="BOTTOM"><Offset><AbsDimension x="0" y="5"/></Offset></Anchor>
|
|
</Anchors>
|
|
</FontString>
|
|
</Layer>
|
|
</Layers>
|
|
</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>
|
|
<Backdrop bgFile="Interface\Buttons\WHITE8X8" edgeFile="Interface\Buttons\WHITE8X8" tile="true">
|
|
<EdgeSize>
|
|
<AbsValue val="1.5"/>
|
|
</EdgeSize>
|
|
<Color r="0.09411764705882353" g="0.09411764705882353" b="0.09411764705882353" a="0.93"/>
|
|
<!--24/255-->
|
|
<BorderColor r="0.11764705882352941" g="0.11764705882352941" b="0.11764705882352941" a="1"/>
|
|
<!--30/255-->
|
|
</Backdrop>
|
|
</Frame>
|
|
</Ui>
|