annotate ItemAuditor.xml @ 22:66b7c3f5937e

I have removed the ability to show debug messages in the chat window and have replaced it with a new debug frame. /ia debug will show all of the debug messages and everything that IA has printed. This commit also has a small fix so that if you sell something for your exact cost you don't get a message that you made a profit of 0c.
author Asa Ayers <Asa.Ayers@Gmail.com>
date Thu, 08 Jul 2010 19:30:30 -0700
parents
children 819bfdc5d73c
rev   line source
Asa@22 1 <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/
Asa@22 2 ../UI.xsd">
Asa@22 3
Asa@22 4 <Frame name="ItemAuditor_DebugFrame" toplevel="true" movable="false" parent="UIParent" enableMouse="true" resizable="false" frameStrata="MEDIUM" hidden="true">
Asa@22 5 <Size x="640" y="512"/>
Asa@22 6 <Anchors>
Asa@22 7 <Anchor point="CENTER"/>
Asa@22 8 </Anchors>
Asa@22 9 <Layers>
Asa@22 10 <!--
Asa@22 11 <Layer level="BACKGROUND">
Asa@22 12 <Texture name="$parent_Background" setAllPoints="true">
Asa@22 13 <Color r="0" g="0" b="1" a="0.5" />
Asa@22 14 </Texture>
Asa@22 15 </Layer>
Asa@22 16 -->
Asa@22 17 <Layer level="ARTWORK">
Asa@22 18 <Texture name="$parentTopLeft" file="Interface\HelpFrame\HelpFrame-TopLeft">
Asa@22 19 <Size x="256" y="256"/>
Asa@22 20 <Anchors>
Asa@22 21 <Anchor point="TOPLEFT"/>
Asa@22 22 </Anchors>
Asa@22 23 </Texture>
Asa@22 24 <Texture name="$parentTopRight" file="Interface\HelpFrame\HelpFrame-TopRight">
Asa@22 25 <Size x="128" y="256"/>
Asa@22 26 <Anchors>
Asa@22 27 <Anchor point="TOPRIGHT">
Asa@22 28 <Offset x="42" y="0"/>
Asa@22 29 </Anchor>
Asa@22 30 </Anchors>
Asa@22 31 </Texture>
Asa@22 32 <Texture file="Interface\HelpFrame\HelpFrame-Top">
Asa@22 33 <Size y="256"/>
Asa@22 34 <Anchors>
Asa@22 35 <Anchor point="TOPLEFT" relativeTo="$parentTopLeft" relativePoint="TOPRIGHT" />
Asa@22 36 <Anchor point="TOPRIGHT" relativeTo="$parentTopRight" relativePoint="TOPLEFT" />
Asa@22 37 </Anchors>
Asa@22 38 </Texture>
Asa@22 39 <Texture name="$parentBotLeft" file="Interface\HelpFrame\HelpFrame-BotLeft">
Asa@22 40 <Size x="256" y="256"/>
Asa@22 41 <Anchors>
Asa@22 42 <Anchor point="BOTTOMLEFT"/>
Asa@22 43 </Anchors>
Asa@22 44 </Texture>
Asa@22 45 <Texture name="$parentBotRight" file="Interface\HelpFrame\HelpFrame-BotRight">
Asa@22 46 <Size x="128" y="256"/>
Asa@22 47 <Anchors>
Asa@22 48 <Anchor point="BOTTOMRIGHT">
Asa@22 49 <Offset x="42" y="0"/>
Asa@22 50 </Anchor>
Asa@22 51 </Anchors>
Asa@22 52 </Texture>
Asa@22 53 <Texture file="Interface\HelpFrame\HelpFrame-Bottom">
Asa@22 54 <Size y="256"/>
Asa@22 55 <Anchors>
Asa@22 56 <Anchor point="BOTTOMLEFT" relativeTo="$parentBotLeft" relativePoint="BOTTOMRIGHT" />
Asa@22 57 <Anchor point="BOTTOMRIGHT" relativeTo="$parentBotRight" relativePoint="BOTTOMLEFT" />
Asa@22 58 </Anchors>
Asa@22 59 </Texture>
Asa@22 60
Asa@22 61 <FontString name="$parentTitle" inherits="GameFontNormal" text="ItemAuditor|nPlease send a screenshot with a description of the problem to Asa.Ayers@Gmail.com">
Asa@22 62 <Anchors>
Asa@22 63 <Anchor point="TOP">
Asa@22 64 <Offset x="0" y="-15"/>
Asa@22 65 </Anchor>
Asa@22 66 </Anchors>
Asa@22 67 </FontString>
Asa@22 68 </Layer>
Asa@22 69
Asa@22 70 </Layers>
Asa@22 71 <Frames>
Asa@22 72 <ScrollingMessageFrame name="$parentTxt" maxLines="100" fade="false" enableMouse="true">
Asa@22 73 <Anchors>
Asa@22 74 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
Asa@22 75 <Offset x="25" y="-45"/>
Asa@22 76 </Anchor>
Asa@22 77 <Anchor point="BOTTOMRIGHT" relativePoint="BOTTOMRIGHT">
Asa@22 78 <Offset x="-15" y="50"/>
Asa@22 79 </Anchor>
Asa@22 80 </Anchors>
Asa@22 81 <FontString font="Interface\AddOns\WowLua\fonts\VeraMono.ttf" justifyH="LEFT">
Asa@22 82 <FontHeight val="14"/>
Asa@22 83 </FontString>
Asa@22 84 </ScrollingMessageFrame>
Asa@22 85 <Button name="ItemAuditorButton_Close" inherits="UIPanelCloseButton">
Asa@22 86 <Anchors>
Asa@22 87 <Anchor point="TOPRIGHT">
Asa@22 88 <Offset x="0" y="-3"/>
Asa@22 89 </Anchor>
Asa@22 90 </Anchors>
Asa@22 91 <Scripts>
Asa@22 92 <OnClick>
Asa@22 93 ItemAuditor_DebugFrame:Hide()
Asa@22 94 </OnClick>
Asa@22 95 </Scripts>
Asa@22 96 </Button>
Asa@22 97 </Frames>
Asa@22 98 </Frame>
Asa@22 99 <Scripts>
Asa@22 100 ItemAuditor_DebugFrame:Hide()
Asa@22 101 </Scripts>
Asa@22 102 </Ui>