<GuiXml>
    <Controls>
        <TopLevelControl name="EnchantMaker" mouseEnabled="true" movable="true" hidden="true">
            <Dimensions x="750" y="590" />
            <Controls>
                <Backdrop name="$(parent)BG" inherits="ZO_ThinBackdrop" />
                <Backdrop name="$(parent)SearchBG" inherits="ZO_ThinBackdrop" >
                    <Dimensions x="650" y="390" />
                    <Anchor point="TOPLEFT" offsetX="50" offsetY="105" />
                </Backdrop>
                <Button name="$(parent)SearchButton" font="ZoFontGame" color="CFDCBD" mouseEnabled="true"
                        verticalAlignment="CENTER" horizontalAlignment="CENTER" text="Search" hidden="false" inherits="ZO_DefaultButton" >
                    <Dimensions x="150" y="30" />
                    <Anchor point="CENTER" offsetX="0" offsetY="250" />
                    <OnMouseDown>
                        EnchMaker.search()
                    </OnMouseDown>
                </Button>
                <Button name="$(parent)CloseButton" font="ZoFontGame" mouseEnabled="true"
                        text="X" hidden="false" inherits="ZO_DefaultButton" >
                    <Dimensions x="20" y="20" />
                    <Anchor point="TOPRIGHT" offsetX="0" offsetY="0" />
                    <OnMouseDown>
                        EnchMaker.close()
                    </OnMouseDown>
                </Button>
                <Label name="EnchantMakerLabel" font="ZoFontHeader4" color="INTERFACE_COLOR_TYPE_TEXT_COLORS:INTERFACE_TEXT_COLOR_NORMAL" text="Enchant Maker" >
                    <Anchor point="TOP"  offsetY="20" />
                </Label>
                <Label name="EnchantMakerPotencyLabel" font="ZoFontGame" color="INTERFACE_COLOR_TYPE_TEXT_COLORS:INTERFACE_TEXT_COLOR_NORMAL" text="Potency have:" >
                    <Anchor point="TOPLEFT" offsetY="70" offsetX="60" />
                </Label>
                <Label name="EnchantMakerEssenceLabel" font="ZoFontGame" color="INTERFACE_COLOR_TYPE_TEXT_COLORS:INTERFACE_TEXT_COLOR_NORMAL" text="Potency not have:" >
                    <Anchor point="TOPLEFT"  offsetY="70" offsetX="340" />
                </Label>
                <Label name="EnchantMakerAspectLabel" font="ZoFontGame" color="INTERFACE_COLOR_TYPE_TEXT_COLORS:INTERFACE_TEXT_COLOR_NORMAL" text="Aspect:" >
                    <Anchor point="TOPLEFT"  offsetY="70" offsetX="550" />
                </Label>
            </Controls>
        </TopLevelControl>

        <TopLevelControl name="EnchantMakerOutput" mouseEnabled="true" movable="true" hidden="true">
            <Dimensions x="750" y="590" />
            <Controls>
                <Backdrop name="$(parent)BG" inherits="ZO_ThinBackdrop" />
                <Backdrop name="$(parent)ResultsBG" inherits="ZO_ThinBackdrop" >
                    <Dimensions x="650" y="390" />
                    <Anchor point="TOPLEFT" offsetX="50" offsetY="105" />
                </Backdrop>
                <Label name="EnchantMakerOutputLabel" font="ZoFontHeader4" color="INTERFACE_COLOR_TYPE_TEXT_COLORS:INTERFACE_TEXT_COLOR_NORMAL" text="Search Results" >
                    <Anchor point="TOP"  offsetY="20" />
                </Label>
                <Button name="$(parent)SearchButton" font="ZoFontGame" color="CFDCBD" mouseEnabled="true"
                        verticalAlignment="CENTER" horizontalAlignment="CENTER" text="Search again" hidden="false" inherits="ZO_DefaultButton" >
                    <Dimensions x="150" y="30" />
                    <Anchor point="CENTER" offsetX="0" offsetY="250" />
                    <OnMouseDown>
                        EnchMaker.searchAgain()
                    </OnMouseDown>
                </Button>
                <Button name="$(parent)NextButton" font="ZoFontGame" color="CFDCBD" mouseEnabled="true"
                        verticalAlignment="CENTER" horizontalAlignment="CENTER" text="Next" hidden="false" inherits="ZO_DefaultButton" >
                    <Dimensions x="150" y="30" />
                    <Anchor point="CENTER" offsetX="160" offsetY="250" />
                    <OnMouseDown>
                        EnchMaker.next()
                    </OnMouseDown>
                </Button>
                <Button name="$(parent)PreviousButton" font="ZoFontGame" color="CFDCBD" mouseEnabled="true"
                        verticalAlignment="CENTER" horizontalAlignment="CENTER" text="Previous" hidden="false" inherits="ZO_DefaultButton" >
                    <Dimensions x="150" y="30" />
                    <Anchor point="CENTER" offsetX="-160" offsetY="250" />
                    <OnMouseDown>
                        EnchMaker.previous()
                    </OnMouseDown>
                </Button>
                <Button name="$(parent)CloseButton" font="ZoFontGame" mouseEnabled="true"
                        text="X" hidden="false" inherits="ZO_DefaultButton" >
                    <Dimensions x="20" y="20" />
                    <Anchor point="TOPRIGHT" offsetX="0" offsetY="0" />
                    <OnMouseDown>
                        EnchMaker.close()
                    </OnMouseDown>
                </Button>
            </Controls>
        </TopLevelControl>

        <Button name="EnchantMakerCheckBox" inherits="ZO_CheckButton" virtual="true" text="">
            <Dimensions x="20" y="20" />
            <Anchor point="TOPLEFT" offsetX="50" offsetY="50" />
        </Button>

        <Label name="EnchantMakerCheckBoxText" font="ZoFontGame" color="INTERFACE_COLOR_TYPE_TEXT_COLORS:INTERFACE_TEXT_COLOR_NORMAL" virtual="true" text="" >
            <Anchor point="LEFT" relativePoint="RIGHT" offsetX="5" />
        </Label>

        <Label name="EnchantMakerResult" font="ZoFontGame" color="CFDCBD" wrapMode="ELLIPSIS" virtual="true" verticalAlignment="CENTER" horizontalAlignment="LEFT" text=":">
            <Dimensions x="650" y="28" />
            <Anchor point="TOPLEFT" offsetX="50" offsetY="50" />
            <Controls>
                <Backdrop name="$(parent)BG" inherits="ZO_ThinBackdrop" />
<!--                 <Button name="$(parent)CreateButton" hidden="true" font="ZoFontGameSmall" color="CFDCBD" mouseEnabled="true" verticalAlignment="CENTER" horizontalAlignment="CENTER" text="Create">
                    <Dimensions x="60" y="30" />
                    <Anchor point="RIGHT" />
                     <OnMouseDown>
                        EnchMaker.Enchant.create(self)
                    </OnMouseDown>
                </Button> -->

                <Button name="$(parent)ShowButton" font="ZoFontGameSmall" color="CFDCBD" mouseEnabled="true" verticalAlignment="CENTER" horizontalAlignment="CENTER" text="Show">
                    <Dimensions x="60" y="30" />
                    <Anchor point="RIGHT" />
                     <OnMouseDown>
                        EnchMaker.Enchant.show(self)
                    </OnMouseDown>
                </Button>
            </Controls>
        </Label>

        <Backdrop name="EnchantMakerVirtualBG" inherits="ZO_ThinBackdrop" virtual="true" />
    </Controls>
</GuiXml>