107 lines
4.4 KiB
XML
107 lines
4.4 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")
|
|
</OnLoad>
|
|
<OnEvent>
|
|
Aux_OnEvent()
|
|
</OnEvent>
|
|
</Scripts>
|
|
</Frame>
|
|
|
|
<ScrollingMessageFrame name="AuxLogFrame" hidden="false" maxLines="500">
|
|
<Size><AbsDimension x="400" y="45"/></Size>
|
|
<Layers>
|
|
<Layer level="BACKGROUND">
|
|
<Texture name="$parentLeft" file="Interface\AuctionFrame\UI-AuctionItemNameFrame" hidden="true">
|
|
<Size><AbsDimension x="10" y="60"/></Size>
|
|
<Anchors><Anchor point="LEFT"><Offset><AbsDimension x="-3" y="-4"/></Offset></Anchor></Anchors>
|
|
<TexCoords left="0" right="0.078125" top="0" bottom="1.0"/>
|
|
</Texture>
|
|
<Texture name="$parentRight" file="Interface\AuctionFrame\UI-AuctionItemNameFrame" hidden="true">
|
|
<Size><AbsDimension x="10" y="60"/></Size>
|
|
<Anchors><Anchor point="RIGHT"><Offset><AbsDimension x="0" y="-4"/></Offset></Anchor>
|
|
</Anchors>
|
|
<TexCoords left="0.75" right="0.828125" top="0" bottom="1.0"/>
|
|
</Texture>
|
|
<Texture name="$parentMiddle" file="Interface\AuctionFrame\UI-AuctionItemNameFrame" hidden="true">
|
|
<Size><AbsDimension x="10" y="60"/></Size>
|
|
<Anchors>
|
|
<Anchor point="LEFT" relativeTo="$parentLeft" relativePoint="RIGHT"><Offset><AbsDimension x="0" y="0"/></Offset></Anchor>
|
|
<Anchor point="RIGHT" relativeTo="$parentRight" relativePoint="LEFT"><Offset><AbsDimension x="0" y="0"/></Offset></Anchor>
|
|
</Anchors>
|
|
<TexCoords left="0.078125" right="0.75" top="0" bottom="1.0"/>
|
|
</Texture>
|
|
</Layer>
|
|
</Layers>
|
|
<Scripts>
|
|
<OnLoad>
|
|
Aux.log_frame_load()
|
|
</OnLoad>
|
|
<OnUpdate>
|
|
Aux.log_frame_update(arg1)
|
|
</OnUpdate>
|
|
<OnEnter>
|
|
getglobal(this:GetName()..'Left'):Show()
|
|
getglobal(this:GetName()..'Right'):Show()
|
|
getglobal(this:GetName()..'Middle'):Show()
|
|
</OnEnter>
|
|
<OnLeave>
|
|
getglobal(this:GetName()..'Left'):Hide()
|
|
getglobal(this:GetName()..'Right'):Hide()
|
|
getglobal(this:GetName()..'Middle'):Hide()
|
|
</OnLeave>
|
|
<OnHyperlinkClick>
|
|
<!--ChatFrame_OnHyperlinkShow(arg1) TODO not working because of center -->
|
|
</OnHyperlinkClick>
|
|
<OnMouseWheel>
|
|
if arg1 == 1 then
|
|
this:ScrollUp()
|
|
elseif arg1 == -1 then
|
|
this:ScrollDown()
|
|
end
|
|
</OnMouseWheel>
|
|
</Scripts>
|
|
<FontString inherits="ChatFontNormal" justifyH="CENTER"/>
|
|
</ScrollingMessageFrame>
|
|
<Slider name="AuxSliderTemplate" orientation="HORIZONTAL" virtual="true" enableMouse="true">
|
|
<Size>
|
|
<AbsDimension x="128" y="17"/>
|
|
</Size>
|
|
<HitRectInsets>
|
|
<AbsInset left="0" right="0" top="-10" bottom="-10"/>
|
|
</HitRectInsets>
|
|
<Backdrop bgFile="Interface\Buttons\UI-SliderBar-Background" edgeFile="Interface\Buttons\UI-SliderBar-Border" tile="true">
|
|
<EdgeSize>
|
|
<AbsValue val="8"/>
|
|
</EdgeSize>
|
|
<TileSize>
|
|
<AbsValue val="8"/>
|
|
</TileSize>
|
|
<BackgroundInsets>
|
|
<AbsInset left="3" right="3" top="6" bottom="6"/>
|
|
</BackgroundInsets>
|
|
</Backdrop>
|
|
<Layers>
|
|
<Layer level="ARTWORK">
|
|
<FontString name="$parentText" inherits="GameFontHighlightSmall">
|
|
<Anchors>
|
|
<Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT"/>
|
|
</Anchors>
|
|
</FontString>
|
|
</Layer>
|
|
</Layers>
|
|
<ThumbTexture name="$parentThumb" file="Interface\Buttons\UI-SliderBar-Button-Horizontal">
|
|
<Size>
|
|
<AbsDimension x="32" y="32"/>
|
|
</Size>
|
|
</ThumbTexture>
|
|
</Slider>
|
|
</Ui> |