<?xml version="1.0"?>

<!-- 
  //////////////////////////////////////////////////////
  //////////////////////////////////////////////////////
  ////
  ////  END-USER (HUD) WINDOWS
  ////
  ////  These are windows that are the informational
  ////  for the end-user, i.e., the player's HUD.
  ////
  ////  These *CAN* be edited by the end-user.
  ////
  //////////////////////////////////////////////////////
  //////////////////////////////////////////////////////
  -->

<!--

*** READ BEFORE EDITING! ***

Designers:

(...) - indicates non-literal value (anything that fits the rule inside)
    i.e. -  (positive number) means any number >= 0 is ok
    
...|...  - separates possible values within the same property/value
    i.e. -  default | (positive number) means that you must either have the word
            default or any positive number, but not both
            
[...] - denotes optional data
    i.e. -  [relativeTo="..."] means that relativeTo is an optional attribute
    
*...* - indicates the default value if none is specified
    i.e. -  *Left* | Center | Right means that left is the default value

<UISettings>
  <frame name="(framename)">
      [<size x="*default* | (positive number)" y="*default* | (positive number)" />]
    
    *(technically optional, the anchors default to upper left corner on both the scene
      itself and the screen, which also means a parent/child relationship can never be default)
      [<anchors>
        <anchor [relativeTo="*screen* | self | (another frame/scene name)"]>
          <xAnchor [percent="(any number *0*->100)">*Left* | Center | Right</xAnchor>
          <yAnchor [percent="(any number *0*->100)">*Top* | Center | Bottom</yAnchor>
          [<offset x="(positive/negative number)" y="(positive/negative number)" />
        </anchor>
      </anchors>]
  </frame>
</UISettings>

Programmers:
   
-->

<UISettings>

  <frame name="chatbox">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Left</xAnchor>
        <yAnchor>Bottom</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Left</xAnchor>
        <yAnchor>Bottom</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="inventory">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor percent="0">Right</xAnchor>
        <yAnchor percent="7">Bottom</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Right</xAnchor>
        <yAnchor>Bottom</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="friends">
    <anchors>
      <anchor relativeTo="chatbox">
        <xAnchor>Left</xAnchor>
        <!--<yAnchor>Center</yAnchor>
        <offset x="0" y="-25" />-->
        <offset x="10" y="0" />
        <yAnchor percent="90">Bottom</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Left</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="guild">
    <anchors>
      <anchor relativeTo="chatbox">
        <xAnchor>Left</xAnchor>
        <!--<yAnchor>Center</yAnchor>
        <offset x="0" y="-25" />-->
        <offset x="40" y="0" />
        <yAnchor percent="90">Bottom</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Left</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="teams">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="score">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor percent="5">Left</xAnchor>
        <yAnchor percent="0">Top</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Left</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="flyingloot">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor percent="0">Right</xAnchor>
        <yAnchor percent="0">Bottom</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Right</xAnchor>
        <yAnchor>Bottom</yAnchor>
      </anchor>
    </anchors>
  </frame>
  
  <frame name="hudmoney">
    <anchors>     
      <anchor relativeTo="screen">
        <xAnchor percent="0">Left</xAnchor>
        <yAnchor percent="0">Top</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Left</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>
  
  <frame name="hudlife">
    <anchors>
      <anchor relativeTo="self">
        <xAnchor>Left</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
      <anchor relativeTo="screen">
        <xAnchor>Left</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>
  
  <frame name="hudrespawn">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
        <offset x="0" y="-50" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="hudlogoutmenu">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
        <offset x="0" y="-50" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="triplebuild">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
        <offset x="0" y="-250" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="hudactionbar">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Bottom</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Bottom</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="genericpopup">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="mission">
    <anchors>
     <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="hudmissiontasks">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="hudrebuildtimer">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor percent="10">Right</xAnchor>
        <yAnchor percent="0">Top</yAnchor>
      </anchor>
        <anchor relativeTo="self">
        <xAnchor percent="0">Right</xAnchor>
        <yAnchor percent="0">Top</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="hudrebuildcrosshair">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Top</yAnchor>
        <offset x="0" y="50" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="hudrebuildcountdown">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Top</yAnchor>
        <offset x="0" y="0" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>

	<frame name="bbbactionbar">
		<anchors>
			<anchor relativeTo="screen">
				<xAnchor>Center</xAnchor>
				<yAnchor>Bottom</yAnchor>
			</anchor>
			<anchor relativeTo="self">
				<xAnchor>Center</xAnchor>
				<yAnchor>Bottom</yAnchor>
			</anchor>
		</anchors>
	</frame>

	<frame name="bbbpalettepicker">
		<anchors>
			<anchor relativeTo="screen">
				<xAnchor>Left</xAnchor>
				<yAnchor>Top</yAnchor>
			</anchor>
			<anchor relativeTo="self">
				<xAnchor>Left</xAnchor>
				<yAnchor>Top</yAnchor>
			</anchor>
		</anchors>
	</frame>

	<frame name="bbbpalettemaker">
		<anchors>
			<anchor relativeTo="screen">
				<xAnchor>Center</xAnchor>
				<yAnchor>Center</yAnchor>
			</anchor>
			<anchor relativeTo="self">
				<xAnchor>Center</xAnchor>
				<yAnchor>Center</yAnchor>
			</anchor>
		</anchors>
	</frame>

  <frame name="bighelp">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="guildcreate">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="activityclose">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Right</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Right</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="floatytext">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Top</yAnchor>
        <offset x="0" y="0" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="bbbsavedock">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Left</xAnchor>
        <yAnchor>Top</yAnchor>
        <offset x="0" y="0" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Left</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="bbbsavemetadata">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
        <offset x="0" y="0" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="lootselection">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="hudsmashchain">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Bottom</yAnchor>
        <offset x="0" y="-60" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Bottom</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="opendock">
    <anchors>
        <anchor relativeTo="screen">
            <xAnchor>Right</xAnchor>
            <yAnchor>Bottom</yAnchor>
            <offset x="0" y="0" />
        </anchor>
        <anchor relativeTo="self">
            <xAnchor>Right</xAnchor>
            <yAnchor>Bottom</yAnchor>
        </anchor>
    </anchors>
  </frame>

  <frame name="activitysummaryscreen">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
        <offset x="0" y="0" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="flashingtext">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
        <offset x="0" y="0" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="backdrop">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
        <offset x="0" y="0" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Center</yAnchor>
      </anchor>
    </anchors>
  </frame>

    <frame name="exhibitvoting">
        <anchors>
            <anchor relativeTo="screen">
                <xAnchor>Center</xAnchor>
                <yAnchor>Center</yAnchor>
                <offset x="0" y="0" />
            </anchor>
            <anchor relativeTo="self">
                <xAnchor>Center</xAnchor>
                <yAnchor>Center</yAnchor>
            </anchor>
        </anchors>
    </frame>

    <frame name="exhibitplacementconfirm">
        <anchors>
            <anchor relativeTo="screen">
                <xAnchor>Center</xAnchor>
                <yAnchor>Center</yAnchor>
                <offset x="0" y="0" />
            </anchor>
            <anchor relativeTo="self">
                <xAnchor>Center</xAnchor>
                <yAnchor>Center</yAnchor>
            </anchor>
        </anchors>
    </frame>

    <frame name="moderationconfirm">
        <anchors>
            <anchor relativeTo="screen">
                <xAnchor>Center</xAnchor>
                <yAnchor>Center</yAnchor>
                <offset x="0" y="0" />
            </anchor>
            <anchor relativeTo="self">
                <xAnchor>Center</xAnchor>
                <yAnchor>Center</yAnchor>
            </anchor>
        </anchors>
    </frame>

    <frame name="modelizationconfirm">
        <anchors>
            <anchor relativeTo="screen">
                <xAnchor>Center</xAnchor>
                <yAnchor>Center</yAnchor>
                <offset x="0" y="0" />
            </anchor>
            <anchor relativeTo="self">
                <xAnchor>Center</xAnchor>
                <yAnchor>Center</yAnchor>
            </anchor>
        </anchors>
    </frame>

  <frame name="petwindow">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Left</xAnchor>
        <yAnchor>Top</yAnchor>
        <offset x="13" y="80" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Left</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="pettaming">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Bottom</yAnchor>
        <offset x="0" y="-250" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>

  <frame name="petname">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Center</xAnchor>
        <yAnchor>Top</yAnchor>
        <offset x="0" y="100" />
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Center</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>
  
    <frame name="propertyedithudactionbar">
        <anchors>
            <anchor relativeTo="screen">
                <xAnchor>Center</xAnchor>
                <yAnchor>Bottom</yAnchor>
            </anchor>
            <anchor relativeTo="self">
                <xAnchor>Center</xAnchor>
                <yAnchor>Bottom</yAnchor>
            </anchor>
        </anchors>
    </frame>

  <frame name="minimap">
    <anchors>
      <anchor relativeTo="screen">
        <xAnchor>Right</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
      <anchor relativeTo="self">
        <xAnchor>Right</xAnchor>
        <yAnchor>Top</yAnchor>
      </anchor>
    </anchors>
  </frame>

    <frame name="rentalconfirm">
        <anchors>
            <anchor relativeTo="screen">
                <xAnchor>Center</xAnchor>
                <yAnchor>Center</yAnchor>
            </anchor>
            <anchor relativeTo="self">
                <xAnchor>Center</xAnchor>
                <yAnchor>Center</yAnchor>
            </anchor>
        </anchors>
    </frame>

</UISettings>
