mirror of
https://codeberg.org/Duvelcorp/MetaHunt.git
synced 2026-09-22 07:36:58 +00:00
124 lines
4.1 KiB
XML
124 lines
4.1 KiB
XML
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
|
|
..\FrameXML\UI.xsd">
|
|
<Frame name="MetaHuntOptionsTemplate" toplevel="true" frameStrata="DIALOG" movable="true" enableMouse="true" hidden="true" parent="UIParent" virtual="true">
|
|
<Size>
|
|
<AbsDimension x="720" y="650"/>
|
|
</Size>
|
|
<Anchors>
|
|
<Anchor point="CENTER"/>
|
|
</Anchors>
|
|
<Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
|
|
<BackgroundInsets>
|
|
<AbsInset left="11" right="12" top="12" bottom="11"/>
|
|
</BackgroundInsets>
|
|
<TileSize>
|
|
<AbsValue val="32"/>
|
|
</TileSize>
|
|
<EdgeSize>
|
|
<AbsValue val="32"/>
|
|
</EdgeSize>
|
|
</Backdrop>
|
|
<Layers>
|
|
<Layer level="ARTWORK">
|
|
<Texture name="$parentHeader" file="Interface\DialogFrame\UI-DialogBox-Header">
|
|
<Size>
|
|
<AbsDimension x="256" y="64"/>
|
|
</Size>
|
|
<Anchors>
|
|
<Anchor point="TOP">
|
|
<Offset>
|
|
<AbsDimension x="0" y="12"/>
|
|
</Offset>
|
|
</Anchor>
|
|
</Anchors>
|
|
</Texture>
|
|
<FontString name="$parentHeaderText" inherits="GameFontNormal" text="MetaHunt Options">
|
|
<Anchors>
|
|
<Anchor point="TOP" relativeTo="$parentHeader">
|
|
<Offset>
|
|
<AbsDimension x="0" y="-14"/>
|
|
</Offset>
|
|
</Anchor>
|
|
</Anchors>
|
|
</FontString>
|
|
</Layer>
|
|
</Layers>
|
|
<Frames>
|
|
<Frame name="$parentNav" enableMouse="true">
|
|
<Size>
|
|
<AbsDimension x="120" y="566"/>
|
|
</Size>
|
|
<Anchors>
|
|
<Anchor point="TOPLEFT">
|
|
<Offset>
|
|
<AbsDimension x="12" y="-58"/>
|
|
</Offset>
|
|
</Anchor>
|
|
</Anchors>
|
|
<Backdrop bgFile="Interface\Buttons\WHITE8X8" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
|
|
<BackgroundInsets>
|
|
<AbsInset left="3" right="3" top="3" bottom="3"/>
|
|
</BackgroundInsets>
|
|
<TileSize><AbsValue val="16"/></TileSize>
|
|
<EdgeSize><AbsValue val="16"/></EdgeSize>
|
|
</Backdrop>
|
|
</Frame>
|
|
|
|
<!-- Content Areas -->
|
|
<Frame name="$parentGeneral" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentProfiles" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentMessages" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentPet" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentTrack" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentAspect" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentTrap" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentRanged" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentAmmo" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentMounts" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentCompanions" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentToys" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentSmartAmmo" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentFeedOMatic" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentAutoBuy" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentAutoQuest" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentICU" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentExpAmmo" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentChronometer" hidden="true" enableMouse="true"/>
|
|
<Frame name="$parentCredits" hidden="true" enableMouse="true"/>
|
|
|
|
<!-- Top-right close button -->
|
|
<Button name="$parentCloseButton" inherits="UIPanelButtonTemplate" text="X">
|
|
<Size>
|
|
<AbsDimension x="22" y="22"/>
|
|
</Size>
|
|
<Anchors>
|
|
<Anchor point="TOPRIGHT">
|
|
<Offset>
|
|
<AbsDimension x="-8" y="-8"/>
|
|
</Offset>
|
|
</Anchor>
|
|
</Anchors>
|
|
</Button>
|
|
</Frames>
|
|
<Scripts>
|
|
<OnLoad>
|
|
this:RegisterForDrag("LeftButton")
|
|
</OnLoad>
|
|
<OnMouseUp>
|
|
if ( this.isMoving ) then
|
|
this:StopMovingOrSizing();
|
|
this.isMoving = false;
|
|
end
|
|
</OnMouseUp>
|
|
<OnDragStart>
|
|
this:StartMoving();
|
|
this.isMoving = true;
|
|
</OnDragStart>
|
|
<OnDragStop>
|
|
this:StopMovingOrSizing();
|
|
this.isMoving = false;
|
|
</OnDragStop>
|
|
</Scripts>
|
|
</Frame>
|
|
</Ui>
|