<widget_description>

<widget name="InfoWindow" factory="pawsInfoWindow"
    visible="yes" savepositions="yes" movable="yes" resizable="yes" configurable="yes" >
    <frame x="0" y="50" width="163" height="93" border="no" />
    <bgimage resource="Info Background" alpha="100" />

<!-- Personal Info (HP, Mana, Fatigue) -->

<widget name="My HP Pct" factory="pawsTextBox" tooltip="Health/HP">
    <font name="/planeshift/data/ttf/verdana.ttf" r="200" g="200" b="200" size="5" />
    <frame x="6" y="5" width="149" height="7" border="no"/>
    <subscriptions format="percent">
        <subscribe data="fVitalValue0:Self" />
    </subscriptions>
</widget>
<widget name="My HP" factory="pawsProgressBar" tooltip="Health/HP">
    <frame x="5" y="6" width="150" height="6" border="no" />
        <color     r="50" g="0" b="0" />
        <fadecolor r="255" g="0" b="0" />
    <subscriptions>
        <subscribe data="fVitalValue0:Self" />
    </subscriptions>
</widget>

<widget name="My PysStamina Pct" factory="pawsTextBox" tooltip="Physical Stamina">
    <font name="/planeshift/data/ttf/verdana.ttf" r="200" g="200" b="200" size="5" />
    <frame x="6" y="12" width="149" height="7" border="no"/>
    <subscriptions format="percent">
        <subscribe data="fVitalValue2:Self" />
    </subscriptions>
</widget>
<widget name="My PysStamina" factory="pawsProgressBar" tooltip="Physical Stamina">
    <frame x="5" y="13" width="150" height="6" border="no" />
        <color     r="0" g="50"  b="0" />
        <fadecolor r="0" g="255" b="0" />
    <subscriptions>
        <subscribe data="fVitalValue2:Self" />
    </subscriptions>
</widget>

<widget name="My Mana Pct" factory="pawsTextBox" tooltip="Mana">
    <font name="/planeshift/data/ttf/verdana.ttf" r="200" g="200" b="200" size="5" />
    <frame x="6" y="21" width="149" height="7" border="no"/>
    <subscriptions format="percent">
        <subscribe data="fVitalValue1:Self" />
    </subscriptions>
</widget>
<widget name="My Mana" factory="pawsProgressBar" tooltip="Mana">
    <frame x="5" y="22" width="150" height="6" border="no" />
        <color     r="0"  g="0" b="50" />
        <fadecolor r="120" g="0" b="190" />
    <subscriptions>
        <subscribe data="fVitalValue1:Self" />
    </subscriptions>
</widget>

<widget name="My MenStamina Pct" factory="pawsTextBox" tooltip="Mental Stamina">
    <font name="/planeshift/data/ttf/verdana.ttf" r="200" g="200" b="200" size="5" />
    <frame x="6" y="28" width="149" height="7" border="no"/>
    <subscriptions format="percent">
        <subscribe data="fVitalValue3:Self" />
    </subscriptions>
</widget>
<widget name="My MenStamina" factory="pawsProgressBar" tooltip="Mental Stamina">
    <frame x="5" y="29" width="150" height="6" border="no" />
        <color     r="0" g="0"  b="0" />
        <fadecolor r="120" g="130" b="140" />
    <subscriptions>
        <subscribe data="fVitalValue3:Self" />
    </subscriptions>
</widget>

    <!-- Experience Points -->
    <widget name="ExperienceLbl" factory="pawsTextBox">
        <frame x="30" y="82" width="120" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="255" g="255" b="128" size="5" />
        <text string="EP:" />
    </widget>
    <widget name="ExperiencePerc" factory="pawsTextBox">
        <font name="/planeshift/data/ttf/verdana.ttf" r="255" g="255" b="64" size="5" />
        <frame x="45" y="82" width="120" height="20" border="no"/>
        <subscriptions format="percent">
            <subscribe data="fExpPts:Self" />
        </subscriptions>
    </widget>

    <!-- Progression Points -->
    <widget name="PPLabel" factory="pawsTextBox">
        <frame x="70" y="82" width="110" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="255" g="255" b="128" size="5" />
        <text string="- PP:" />
    </widget>
    
    <widget name="PPTotal" factory="pawsTextBox">
        <frame x="90" y="82" width="120" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="255" g="255" b="64" size="5" />
        <subscriptions>
            <subscribe data="fProgrPts:Self" />
        </subscriptions>
    </widget>


    <widget name="TotalTrias" factory="pawsTextBox">
        <frame x="135" y="82" width="90" height="30" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="255" g="255" b="64" size="5" />    
        <text string="0" />
        <subscriptions>
            <subscribe data="sigInvMoneyTotal" />
        </subscriptions>
    </widget>
    <widget name="TotalTriasLabel" factory="pawsTextBox">
        <frame x="105" y="82" width="50" height="30" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="255" g="255" b="128" size="5" />    
        <text string="- Trias:" />
    </widget>



<!-- Attack Stances -->

<widget name="BtnStance1" id="100" tooltip="Bloody" factory="pawsButton" visible="yes" sound="gui.toolbar">
    <frame x="6" y="37" width="25" height="25" border="no" />
    <bgimage resource="ButtonAttackBloody" />
</widget>
<widget name="BtnStance2" id="200" tooltip="Aggressive" factory="pawsButton" visible="yes" sound="gui.toolbar">
    <frame x="31" y="37" width="25" height="25" border="no" />
    <bgimage resource="ButtonAttackAggressive" />
</widget>
<widget name="BtnStance3" id="300" tooltip="Normal" factory="pawsButton" visible="yes" sound="gui.toolbar">
    <frame x="56" y="37" width="25" height="25" border="no" />
    <bgimage resource="ButtonAttackNormal" />
</widget>
<widget name="BtnStance4" id="400" tooltip="Defensive" factory="pawsButton" visible="yes" sound="gui.toolbar">
    <frame x="81" y="37" width="25" height="25" border="no" />
    <bgimage resource="ButtonAttackDefensive" />
</widget>
<widget name="BtnStance5" id="500" tooltip="Full Defensive" factory="pawsButton" visible="yes" sound="gui.toolbar">
    <frame x="106" y="37" width="25" height="25" border="no" />
    <bgimage resource="ButtonAttackFullDef" />
</widget>
<widget name="BtnStance0" id="600" tooltip="Stop Attack" factory="pawsButton" visible="yes" sound="gui.toolbar">
    <frame x="131" y="37" width="25" height="25" border="no" />
    <bgimage resource="ButtonStopAttack" />
</widget>

<!-- Spell Power -->

<widget name="KFactor" factory="pawsScrollBar" direction="horizontal" tooltip="Spell Power">
    <frame x="6" y="61" width="150" height="11" border="no" />
</widget>
<widget name="KFactor Pct" factory="pawsTextBox">
    <font name="/planeshift/data/ttf/verdana.ttf" r="200" g="200" b="200" size="6" />
    <frame x="76" y="61" width="25" height="20" border="no"/>
</widget>


<!-- Target Info -->

<widget name="Target HP Pct" factory="pawsTextBox" tooltip="Selected Target">
    <font name="/planeshift/data/ttf/verdana.ttf" r="200" g="200" b="200" size="5" />
    <frame x="6" y="72" width="29" height="7" border="no"/>
    <subscriptions format="percent">
        <subscribe data="fVitalValue0:Target" />
    </subscriptions>
</widget>
<widget name="Targeted" factory="pawsTextBox" tooltip="Selected Target">
    <font name="/planeshift/data/ttf/verdana.ttf" r="200" g="200" b="200" size="7" />
    <frame x="35" y="70" width="121" height="12" border="no"/>
    <subscriptions>
        <subscribe data="sTargetName" />
    </subscriptions>
</widget>
<widget name="Target HP" factory="pawsProgressBar" tooltip="Selected Target">
    <frame x="6" y="73" width="150" height="6" border="no" />
        <color     r="50" g="0" b="50" />
        <fadecolor r="255" g="0" b="255" />
    <subscriptions>
        <subscribe data="fVitalValue0:Target" />
    </subscriptions>
</widget>

</widget>
</widget_description>
