<!--
      Shopkeeper UI Layout File
      Last Updated August 26, 2014
      Written July 2014 by Dan Stone (@khaibit) - dankitymao@gmail.com
      Released under terms in license accompanying this file.
      Distribution without license is prohibited!
-->
<GuiXml>
  <Controls>
    <!-- Stats Window -->
    <TopLevelControl movable="true" mouseEnabled="true" name="ShopkeeperStatsWindow" hidden="true">
      <Dimensions x="550" y="225" />
      <OnMoveStop>
        Shopkeeper:OnWindowMoveStop(self)
      </OnMoveStop>
      <Controls>
        <Backdrop name="$(parent)BG" inherits="ZO_DefaultBackdrop" />
        <Label name="$(parent)Title" height="25" width="95" inheritAlpha="true" color="D5B526" verticalAlignment="CENTER" horizontalAlignment="CENTER" text="Shopkeeper Sales Statistics">
          <Anchor point="TOP" relativeTo="$(parent)" relativePoint="TOP" offsetX="0" offsetY="5" />
        </Label>
        <Button name="$(parent)CloseButton" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="CENTER">
          <Anchor point="CENTER" relativeTo="$(parent)" relativePoint="TOPRIGHT" offsetX="-20" offsetY="20" />
          <Dimensions x="48" y="48" />
          <Textures normal="/esoui/art/hud/radialicon_cancel_up.dds" mouseOver="/esoui/art/hud/radialicon_cancel_over.dds" />
          <OnClicked>
            ShopkeeperStatsWindow:SetHidden(true)
          </OnClicked>
        </Button>
        <Label name="$(parent)GuildChooserLabel" height="25" width="50" inheritAlpha="true" color="FFFFFF" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Guild: ">
          <Anchor point="TOP" relativeTo="$(parent)" relativePoint="TOP" offsetX="-135" offsetY="55" />
        </Label>
        <Label name="$(parent)ItemsSoldLabel" height="25" width="95" inheritAlpha="true" color="FFFFFF" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Items sold: 0">
          <Anchor point="TOP" relativeTo="$(parent)" relativePoint="TOP" offsetX="0" offsetY="85" />
        </Label>
        <Label name="$(parent)TotalGoldLabel" height="25" width="95" inheritAlpha="true" color="FFFFFF" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Total gold: 0 (0 per day)">
          <Anchor point="TOP" relativeTo="$(parent)" relativePoint="TOP" offsetX="0" offsetY="110" />
        </Label>
        <Label name="$(parent)BiggestSaleLabel" height="25" width="95" inheritAlpha="true" color="FFFFFF" verticalAlignment="CENTER" horizontalAlignment="CENTER" text="Biggest sale: (0)">
          <Anchor point="TOP" relativeTo="$(parent)" relativePoint="TOP" offsetX="0" offsetY="135" />
        </Label>
        <Label name="$(parent)SliderSettingLabel" height="25" width="95" inheritAlpha="true" color="FFFFFF" verticalAlignment="CENTER" horizontalAlignment="CENTER" text="Using all data">
          <Anchor point="TOP" relativeTo="$(parent)" relativePoint="TOP" offsetX="0" offsetY="165" />
        </Label>
        <Label name="$(parent)SliderLabel" height="25" width="50" inheritAlpha="true" color="FFFFFF" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Days: ">
          <Anchor point="BOTTOMLEFT" relativeTo="$(parent)" relativePoint="BOTTOMLEFT" offsetX="20" offsetY="-14" />
        </Label>
        <Slider name="$(parent)Slider" mouseEnabled="true" step="1" orientation="horizontal">
          <Anchor point="BOTTOM" relativeTo="$(parent)" relativePoint="BOTTOM" offsetX="25" offsetY="-15" />
          <ThumbTexture textureFile="/esoui/art/miscellaneous/scrollbox_elevator.dds" disabledTextureFile="/esoui/art/miscellaneous/scrollbox_elevator.dds" highlightedTextureFile="/esoui/art/miscellaneous/scrollbox_elevator.dds" thumbWidth="8" thumbHeight="16" left="0" top="0" bottom="1" right="1" />
          <Dimensions x="400" y="14" />
          <Limits min="0" max="30" />
          <OnValueChanged>
            Shopkeeper.OnStatsSliderMoved()
          </OnValueChanged>
          <Controls>
            <Backdrop name="$(parent)Backdrop" centerColor="000000">
              <Edge file="/EsoUI/Art/Tooltips/UI-SliderBackdrop.dds" edgeFileWidth="32" edgeFileHeight="4" />
              <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="0" offsetY="4" />
              <Anchor point="BOTTOMRIGHT" relativeTo="$(parent)" relativePoint="BOTTOMRIGHT" offsetX="0" offsetY="-4" />
            </Backdrop>
          </Controls>
        </Slider>
      </Controls>
    </TopLevelControl>

    <!-- Full-size Main Window -->
    <TopLevelControl movable="true" mouseEnabled="true" name="ShopkeeperWindow" hidden="true">
      <Dimensions x="930" y="685" />
      <OnMoveStop>
        Shopkeeper:OnWindowMoveStop(self)
      </OnMoveStop>
      <Controls>
        <Backdrop name="$(parent)BG" inherits="ZO_DefaultBackdrop" />
        <Texture name="$(parent)SearchIcon" textureFile="/esoui/art/tradinghouse/tradinghouse_browse_tabicon_up.dds" alpha="1">
          <Dimensions x="40" y="40" />
          <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="0" offsetY="3" />
          <TextureCoords left="0" right="1" top="0" bottom="1" />
        </Texture>
        <EditBox name="$(parent)SearchBox" mouseEnabled="true" editEnabled="true" textType="TEXT_TYPE_ALL" multiLine="false" newLineEnabled="false">
          <Anchor point="LEFT" relativeTo="$(parent)SearchIcon" relativePoint="RIGHT" offsetX="2" offsetY="-2" />
          <Dimensions x="175" y="25" />
          <Controls>
            <Backdrop name="$(parent)TextBG" centerColor="000000" edgeColor="AAAAAA">
              <AnchorFill />
              <Edge edgeSize="1" />
            </Backdrop>
          </Controls>
          <OnMouseDown>
            self:TakeFocus()
          </OnMouseDown>
          <OnEnter>
            self:LoseFocus()
          </OnEnter>
          <OnEscape>
            self:LoseFocus()
          </OnEscape>
        </EditBox>
        <Button name="$(parent)CloseButton" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="CENTER">
          <Anchor point="CENTER" relativeTo="$(parent)" relativePoint="TOPRIGHT" offsetX="-20" offsetY="20" />
          <Dimensions x="48" y="48" />
          <Textures normal="/esoui/art/hud/radialicon_cancel_up.dds" mouseOver="/esoui/art/hud/radialicon_cancel_over.dds" />
          <OnClicked>
            ShopkeeperWindow:SetHidden(true)
          </OnClicked>
        </Button>
        <Label name="$(parent)Title" height="25" inheritAlpha="true" color="D5B526" verticalAlignment="TOP" horizontalAlignment="CENTER" text="Shopkeeper - Your Sales">
	        <Anchor point="TOP" relativeTo="$(parent)" relativePoint="TOP" offsetX="-10" offsetY="5" />
        </Label>
        <Button name="$(parent)StatsButton" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="CENTER">
          <Anchor point="LEFT" relativeTo="$(parent)Title" relativePoint="RIGHT" offsetX="15" offsetY="0" />
          <Dimensions x="48" y="48" />
          <Textures normal="/esoui/art/tradinghouse/tradinghouse_listings_tabicon_up.dds" mouseOver="/esoui/art/tradinghouse/tradinghouse_listings_tabicon_over.dds" />
          <OnClicked>
            Shopkeeper.ToggleShopkeeperStatsWindow()
          </OnClicked>
          <OnMouseExit>
            ZO_Tooltips_HideTextTooltip()
          </OnMouseExit>
        </Button>
        <Button name="$(parent)ViewSizeButton" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="CENTER">
          <Anchor point="LEFT" relativeTo="$(parent)StatsButton" relativePoint="RIGHT" offsetX="0" offsetY="0" />
          <Dimensions x="48" y="48" />
          <Textures normal="/esoui/art/inventory/inventory_tabicon_quest_up.dds" mouseOver="/esoui/art/inventory/inventory_tabicon_quest_over.dds" />
          <OnClicked>
            Shopkeeper:ToggleViewMode()
          </OnClicked>
          <OnMouseExit>
            ZO_Tooltips_HideTextTooltip()
          </OnMouseExit>
        </Button>
        <Button name="$(parent)Buyer" inheritAlpha="true" verticalAlignment="TOP" horizontalAlignment="LEFT" text="Buyer">
          <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="10" offsetY="44" />
          <Dimensions x="78" y="25" />
          <FontColors normalColor="3689EF" mouseOverColor="3689EF" pressedColor="3689EF"/>
          <OnMouseExit>
            ZO_Tooltips_HideTextTooltip()
          </OnMouseExit>
        </Button>
        <Label name="$(parent)Guild" width="140" height="25" inheritAlpha="true" color="FFFFFF" verticalAlignment="TOP" horizontalAlignment="LEFT" text="Guild">
          <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="141" offsetY="44" />
        </Label>
        <Button name="$(parent)ItemName" inheritAlpha="true" color="FFFFFF" verticalAlignment="TOP" horizontalAlignment="LEFT" text="Item">
          <Dimensions x="200" y="25" />
          <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="350" offsetY="44" />
          <OnMouseExit>
            ZO_Tooltips_HideTextTooltip()
          </OnMouseExit>
        </Button>
        <Button name="$(parent)SellTime" inheritAlpha="true" color="FFFFFF" verticalAlignment="TOP" horizontalAlignment="LEFT" text="Sale Time">
          <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="647" offsetY="44" />
          <Dimensions x="120" y="25" />
          <OnMouseUp>
            Shopkeeper:TimeSort()
          </OnMouseUp>
          <OnMouseExit>
            ZO_Tooltips_HideTextTooltip()
          </OnMouseExit>
        </Button>
        <Texture name="$(parent)SortTime" textureFile="/esoui/art/miscellaneous/list_sortheader_icon_sortdown.dds" alpha="1">
          <Dimensions x="40" y="40" />
          <Anchor point="LEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="759" offsetY="54" />
          <TextureCoords left="0" right="1" top="0" bottom="1" />
        </Texture>
        <Button name="$(parent)Price" inheritAlpha="true" verticalAlignment="TOP" horizontalAlignment="LEFT" text="Price">
          <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="798" offsetY="44" />
          <Dimensions x="85" y="25" />
          <FontColors normalColor="D5B526" mouseOverColor="D5B526" pressedColor="D5B526" />
          <OnMouseUp>
            Shopkeeper:PriceSort()
          </OnMouseUp>
          <OnMouseExit>
            ZO_Tooltips_HideTextTooltip()
          </OnMouseExit>
        </Button>
        <Texture name="$(parent)SortPrice" textureFile="/esoui/art/miscellaneous/list_sortheader_icon_neutral.dds" alpha="1">
          <Dimensions x="40" y="40" />
          <Anchor point="LEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="873" offsetY="54" />
          <TextureCoords left="0" right="1" top="0" bottom="1" />
        </Texture>
        <Button name="ShopkeeperSwitchViewButton" inherits="ZO_DefaultButton">
          <Anchor point="BOTTOMLEFT" relativeTo="$(parent)" relativePoint="BOTTOMLEFT" offsetX="0" offsetY="-5" />
          <Dimensions x="180" />
          <OnClicked>
            Shopkeeper:SwitchViewMode()
          </OnClicked>
        </Button>
        <Button name="ShopkeeperPriceSwitchButton" inherits="ZO_DefaultButton">
          <Anchor point="LEFT" relativeTo="ShopkeeperSwitchViewButton" relativePoint="RIGHT" offsetX="0" offsetY="0" />
          <Dimensions x="180" />
          <OnClicked>
            Shopkeeper:SwitchPriceMode()
          </OnClicked>
        </Button>
        <Texture name="$(parent)LoadingIcon" textureFile="EsoUI/Art/Miscellaneous/wait_icon.dds" hidden="true">
				  <Anchor point="BOTTOM" relativeTo="$(parent)" relativePoint="BOTTOM" offsetX="0" offsetY="-3" />
					<Dimensions x="32" y="32" />
				</Texture>
        <Button name="ShopkeeperRefreshButton" inherits="ZO_DefaultButton">
          <Anchor point="BOTTOMRIGHT" relativeTo="$(parent)" relativePoint="BOTTOMRIGHT" offsetX="-20" offsetY="-5" />
          <Dimensions x="160" />
          <OnClicked>
            Shopkeeper:DoRefresh()
          </OnClicked>
        </Button>
        <Button name="ShopkeeperResetButton" inherits="ZO_DefaultButton">
          <Anchor point="RIGHT" relativeTo="ShopkeeperRefreshButton" relativePoint="LEFT" offsetX="0" offsetY="0" />
          <Dimensions x="160" />
          <OnClicked>
            ZO_Dialogs_ShowDialog("ShopkeeperResetConfirmation", nil, nil)
          </OnClicked>
        </Button>
        <Slider name="$(parent)Slider" mouseEnabled="true" step="1">
          <Anchor point="LEFT" relativeTo="$(parent)" relativePoint="RIGHT" offsetX="-20" offsetY="17" />
          <ThumbTexture textureFile="/esoui/art/miscellaneous/scrollbox_elevator.dds" disabledTextureFile="/esoui/art/miscellaneous/scrollbox_elevator.dds" highlightedTextureFile="/esoui/art/miscellaneous/scrollbox_elevator.dds" thumbWidth="20" thumbHeight="50" left="0" top="0" bottom="1" right="1" />
          <Dimensions x="20" y="561" />
          <Limits min="0" max="100" />
          <OnValueChanged>
            Shopkeeper.OnSliderMoved()
          </OnValueChanged>
          <Controls>
            <Backdrop name="$(parent)Backdrop" centerColor="000000">
              <Edge file="/EsoUI/Art/Tooltips/UI-SliderBackdrop.dds" edgeFileWidth="32" edgeFileHeight="4" />
              <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="0" offsetY="-4" />
              <Anchor point="BOTTOMRIGHT" relativeTo="$(parent)" relativePoint="BOTTOMRIGHT" offsetX="0" offsetY="4" />
            </Backdrop>
          </Controls>
        </Slider>
      </Controls>
    </TopLevelControl>

    <!-- Mini Main Window -->
    <TopLevelControl movable="true" mouseEnabled="true" name="ShopkeeperMiniWindow" hidden="true">
      <Dimensions x="670" y="416" />
      <OnMoveStop>
        Shopkeeper:OnWindowMoveStop(self)
      </OnMoveStop>
      <Controls>
        <Backdrop name="$(parent)BG" inherits="ZO_DefaultBackdrop" />
        <Texture name="$(parent)SearchIcon" textureFile="/esoui/art/tradinghouse/tradinghouse_browse_tabicon_up.dds" alpha="1">
          <Dimensions x="40" y="40" />
          <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="8" offsetY="-1" />
          <TextureCoords left="0" right="1" top="0" bottom="1" />
        </Texture>
        <EditBox name="$(parent)SearchBox" mouseEnabled="true" editEnabled="true" textType="TEXT_TYPE_ALL" multiLine="false" newLineEnabled="false">
          <Anchor point="LEFT" relativeTo="$(parent)SearchIcon" relativePoint="RIGHT" offsetX="2" offsetY="-2" />
          <Dimensions x="150" y="25" />
          <Controls>
            <Backdrop name="$(parent)TextBG" centerColor="000000" edgeColor="AAAAAA">
              <AnchorFill />
              <Edge edgeSize="1" />
            </Backdrop>
          </Controls>
          <OnMouseDown>
            self:TakeFocus()
          </OnMouseDown>
          <OnEnter>
            self:LoseFocus()
          </OnEnter>
          <OnEscape>
            self:LoseFocus()
          </OnEscape>
        </EditBox>
        <Button name="$(parent)CloseButton" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="CENTER">
          <Anchor point="CENTER" relativeTo="$(parent)" relativePoint="TOPRIGHT" offsetX="-17" offsetY="17" />
          <Dimensions x="48" y="48" />
          <Textures normal="/esoui/art/hud/radialicon_cancel_up.dds" mouseOver="/esoui/art/hud/radialicon_cancel_over.dds" />
          <OnClicked>
            ShopkeeperMiniWindow:SetHidden(true)
          </OnClicked>
        </Button>
        <Label name="$(parent)Title" height="25" inheritAlpha="true" color="D5B526" verticalAlignment="TOP" horizontalAlignment="CENTER" text="Shopkeeper - Your Sales">
	        <Anchor point="TOP" relativeTo="$(parent)" relativePoint="TOP" offsetX="0" offsetY="5" />
        </Label>
        <Button name="$(parent)StatsButton" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="CENTER">
          <Anchor point="LEFT" relativeTo="$(parent)Title" relativePoint="RIGHT" offsetX="15" offsetY="0" />
          <Dimensions x="48" y="48" />
          <Textures normal="/esoui/art/tradinghouse/tradinghouse_listings_tabicon_up.dds" mouseOver="/esoui/art/tradinghouse/tradinghouse_listings_tabicon_over.dds" />
          <OnClicked>
            Shopkeeper.ToggleShopkeeperStatsWindow()
          </OnClicked>
          <OnMouseExit>
            ZO_Tooltips_HideTextTooltip()
          </OnMouseExit>
        </Button>
        <Button name="$(parent)ViewSizeButton" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="CENTER">
          <Anchor point="LEFT" relativeTo="$(parent)StatsButton" relativePoint="RIGHT" offsetX="0" offsetY="0" />
          <Dimensions x="48" y="48" />
          <Textures normal="/esoui/art/inventory/inventory_tabicon_quest_up.dds" mouseOver="/esoui/art/inventory/inventory_tabicon_quest_over.dds" />
          <OnClicked>
            Shopkeeper:ToggleViewMode()
          </OnClicked>
          <OnMouseExit>
            ZO_Tooltips_HideTextTooltip()
          </OnMouseExit>
        </Button>
        <Label name="$(parent)Guild" width="120" height="25" inheritAlpha="true" color="FFFFFF" verticalAlignment="TOP" horizontalAlignment="LEFT" text="Guild">
          <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="15" offsetY="44" />
        </Label>
        <Button name="$(parent)ItemName" inheritAlpha="true" color="FFFFFF" verticalAlignment="TOP" horizontalAlignment="LEFT" text="Item">
          <Dimensions x="200" y="25" />
          <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="140" offsetY="44" />
          <OnMouseExit>
            ZO_Tooltips_HideTextTooltip()
          </OnMouseExit>
        </Button>
        <Button name="$(parent)SellTime" inheritAlpha="true" color="FFFFFF" verticalAlignment="TOP" horizontalAlignment="LEFT" text="Sale Time">
          <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="420" offsetY="44" />
          <Dimensions x="95" y="25" />
          <OnMouseUp>
            Shopkeeper:TimeSort()
          </OnMouseUp>
          <OnMouseExit>
            ZO_Tooltips_HideTextTooltip()
          </OnMouseExit>
        </Button>
        <Texture name="$(parent)SortTime" textureFile="/esoui/art/miscellaneous/list_sortheader_icon_sortdown.dds" alpha="1">
          <Dimensions x="40" y="40" />
          <Anchor point="LEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="515" offsetY="54" />
          <TextureCoords left="0" right="1" top="0" bottom="1" />
        </Texture>
        <Button name="$(parent)Price" inheritAlpha="true" verticalAlignment="TOP" horizontalAlignment="LEFT" text="Price">
          <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="560" offsetY="44" />
          <Dimensions x="85" y="25" />
          <FontColors normalColor="D5B526" mouseOverColor="D5B526" pressedColor="D5B526" />
          <OnMouseUp>
            Shopkeeper:PriceSort()
          </OnMouseUp>
          <OnMouseExit>
            ZO_Tooltips_HideTextTooltip()
          </OnMouseExit>
        </Button>
        <Texture name="$(parent)SortPrice" textureFile="/esoui/art/miscellaneous/list_sortheader_icon_neutral.dds" alpha="1">
          <Dimensions x="40" y="40" />
          <Anchor point="LEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="620" offsetY="54" />
          <TextureCoords left="0" right="1" top="0" bottom="1" />
        </Texture>
        <Button name="ShopkeeperMiniSwitchViewButton" inherits="ZO_DefaultButton">
          <Anchor point="BOTTOMLEFT" relativeTo="$(parent)" relativePoint="BOTTOMLEFT" offsetX="2" offsetY="-5" />
          <Dimensions x="160" />
          <OnClicked>
            Shopkeeper:SwitchViewMode()
          </OnClicked>
        </Button>
        <Button name="ShopkeeperMiniPriceSwitchButton" inherits="ZO_DefaultButton">
          <Anchor point="LEFT" relativeTo="ShopkeeperMiniSwitchViewButton" relativePoint="RIGHT" offsetX="0" offsetY="0" />
          <Dimensions x="160" />
          <OnClicked>
            Shopkeeper:SwitchPriceMode()
          </OnClicked>
        </Button>
        <Texture name="$(parent)LoadingIcon" textureFile="EsoUI/Art/Miscellaneous/wait_icon.dds" hidden="true">
				  <Anchor point="BOTTOM" relativeTo="$(parent)" relativePoint="BOTTOM" offsetX="0" offsetY="-3" />
					<Dimensions x="32" y="32" />
				</Texture>
        <Button name="ShopkeeperMiniRefreshButton" inherits="ZO_DefaultButton">
          <Anchor point="BOTTOMRIGHT" relativeTo="$(parent)" relativePoint="BOTTOMRIGHT" offsetX="-2" offsetY="-5" />
          <Dimensions x="160" />
          <OnClicked>
            Shopkeeper:DoRefresh()
          </OnClicked>
        </Button>
        <Button name="ShopkeeperMiniResetButton" inherits="ZO_DefaultButton">
          <Anchor point="RIGHT" relativeTo="ShopkeeperMiniRefreshButton" relativePoint="LEFT" offsetX="0" offsetY="0" />
          <Dimensions x="160" />
          <OnClicked>
            ZO_Dialogs_ShowDialog("ShopkeeperResetConfirmation", nil, nil)
          </OnClicked>
        </Button>
        <Slider name="$(parent)Slider" mouseEnabled="true" step="1">
          <Anchor point="LEFT" relativeTo="$(parent)" relativePoint="RIGHT" offsetX="-20" offsetY="17" />
          <ThumbTexture textureFile="/esoui/art/miscellaneous/scrollbox_elevator.dds" disabledTextureFile="/esoui/art/miscellaneous/scrollbox_elevator.dds" highlightedTextureFile="/esoui/art/miscellaneous/scrollbox_elevator.dds" thumbWidth="20" thumbHeight="50" left="0" top="0" bottom="1" right="1" />
          <Dimensions x="20" y="300" />
          <Limits min="0" max="100" />
          <OnValueChanged>
            Shopkeeper.OnSliderMoved()
          </OnValueChanged>
          <Controls>
            <Backdrop name="$(parent)Backdrop" centerColor="000000">
              <Edge file="/EsoUI/Art/Tooltips/UI-SliderBackdrop.dds" edgeFileWidth="32" edgeFileHeight="4" />
              <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="0" offsetY="-4" />
              <Anchor point="BOTTOMRIGHT" relativeTo="$(parent)" relativePoint="BOTTOMRIGHT" offsetX="0" offsetY="4" />
            </Backdrop>
          </Controls>
        </Slider>
      </Controls>
    </TopLevelControl>

    <!-- Full-size Data Row (virtual) -->
    <Control name="ShopkeeperDataRow" horizontalAlignment="LEFT" verticalAlignment="CENTER" color="CFDCBD" virtual="true">
      <Dimensions x="900" y="36" />
      <Anchor point="TOPLEFT" offsetX="25" offsetY="25" />
      <Controls>
        <Backdrop name="$(parent)BG" inherits="ZO_ThinBackdrop" />
        <Button name="$(parent)Buyer" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Buyer">
          <Anchor point="TOPLEFT" offsetX="5" offsetY="5" />
          <Dimensions x="131" y="26" />
          <FontColors normalColor="3689EF" mouseOverColor="69EFFF" pressedColor="3689EF" />
        </Button>
        <Button name="$(parent)Guild" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Guild">
          <Anchor point="TOPLEFT" offsetX="138" offsetY="5" />
          <Dimensions x="160" y="26" />
          <FontColors normalColor="FFFFFF" mouseOverColor="FFFFFF" pressedColor="FFFFFF" />
        </Button>
        <Texture name="$(parent)ItemIcon" alpha="1">
          <Dimensions x="32" y="32" />
          <Anchor point="TOPLEFT" offsetX="306" offsetY="3" />
          <TextureCoords left="0" right="1" top="0" bottom="1" />
        </Texture>
        <Button name="$(parent)ItemName" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Item Name">
          <Anchor point="TOPLEFT" offsetX="346" offsetY="5" />
          <Dimensions x="242" y="26" />
          <FontColors normalColor="0000FF" mouseOverColor="0000FF" pressedColor="0000FF" />
        </Button>
        <Label name="$(parent)Quantity" width="30" height="26" inheritAlpha="true" color="FFFFFF" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="x1">
          <Anchor point="TOPLEFT" offsetX="593" offsetY="7" />
        </Label>
        <Label name="$(parent)SellTime" width="115" height="26" inheritAlpha="true" color="FFFFFF" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Time">
          <Anchor point="TOPLEFT" offsetX="643" offsetY="7" />
        </Label>
        <Label name="$(parent)Price" width="115" height="26" inheritAlpha="true" color="D5B526" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Price">
          <Anchor point="TOPLEFT" offsetX="794" offsetY="7" />
        </Label>
      </Controls>
    </Control>

    <!-- Mini-size Data Row (virtual) -->
    <Control name="ShopkeeperMiniDataRow" horizontalAlignment="LEFT" verticalAlignment="CENTER" color="CFDCBD" virtual="true">
      <Dimensions x="635" y="36" />
      <Anchor point="TOPLEFT" offsetX="10" offsetY="25" />
      <Controls>
        <Backdrop name="$(parent)BG" inherits="ZO_ThinBackdrop" />
        <Button name="$(parent)Guild" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Guild">
          <Anchor point="TOPLEFT" offsetX="5" offsetY="5" />
          <Dimensions x="120" y="26" />
          <FontColors normalColor="FFFFFF" mouseOverColor="FFFFFF" pressedColor="FFFFFF" />
        </Button>
        <Texture name="$(parent)ItemIcon" alpha="1">
          <Dimensions x="32" y="32" />
          <Anchor point="TOPLEFT" offsetX="125" offsetY="3" />
          <TextureCoords left="0" right="1" top="0" bottom="1" />
        </Texture>
        <Button name="$(parent)ItemName" inheritAlpha="true" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Item Name">
          <Anchor point="TOPLEFT" offsetX="160" offsetY="5" />
          <Dimensions x="215" y="26" />
          <FontColors normalColor="0000FF" mouseOverColor="0000FF" pressedColor="0000FF" />
        </Button>
        <Label name="$(parent)Quantity" width="30" height="26" inheritAlpha="true" color="FFFFFF" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="x1">
          <Anchor point="TOPLEFT" offsetX="380" offsetY="7" />
        </Label>
        <Label name="$(parent)SellTime" width="115" height="26" inheritAlpha="true" color="FFFFFF" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Time">
          <Anchor point="TOPLEFT" offsetX="410" offsetY="7" />
        </Label>
        <Label name="$(parent)Price" width="115" height="26" inheritAlpha="true" color="D5B526" verticalAlignment="CENTER" horizontalAlignment="LEFT" text="Price">
          <Anchor point="TOPLEFT" offsetX="550" offsetY="7" />
        </Label>
      </Controls>
    </Control>

    <!-- Guild filter for stats window (virtual) -->
    <Control name="ShopkeeperStatsGuildDropdown" inherits="ZO_ComboBox" virtual="true">
			<OnInitialized>
			  ZO_ComboBox:New(self)
      </OnInitialized>
    </Control>

    <!-- Spinning loading icon for during scans (virtual) -->
    <Control name="ShopkeeperLoading" hidden="true" virtual="true">
		  <Controls>
			  <Texture name="$(parent)LoadingIcon" textureFile="EsoUI/Art/Miscellaneous/wait_icon.dds" layer="OVERLAY">
				  <Anchor point="BOTTOM" relativeTo="$(parent)" relativePoint="BOTTOM" offsetX="0" offsetY="-5" />
					<Dimensions x="32" y="32" />
				</Texture>
			</Controls>
		</Control>
  </Controls>
</GuiXml>