Ported GWEN Skin

Help and discussion regarding skinning, themes, and other artistic content.

Moderators: CEGUI MVP, CEGUI Team

HyperNexus
Just popping in
Just popping in
Posts: 5
Joined: Mon Jan 02, 2012 06:08

Ported GWEN Skin

Postby HyperNexus » Mon Jan 09, 2012 15:51

Hello all,

Over the last two weeks I've been working on a porting the default skin for GWEN across to CEGUI. Here it is!

Image

Download

I used TaharezLook as the base for this skin modifying it when I saw fit. I'm not sure what the diagonal lines are through some of the textures but they are not caused by the skin(If you could help me fix this then see this thread).

Here is a list of know differences/issues:
Combo Edit Box/EditBox
    * Caret Color in Text Boxes made pink because CEGUI won't make it blink
    * Selected Text Box state not ported
    * Read Only edit boxes have pink outline. This is usually used for hover part in GWEN.
Combo Edit Box
    * Menu Box seems to leave white faded border on left
    * Didn't use shadow on drop down
Group Box
    * Groupbox in CEGUI only supports images for the borders. Therefore I've displayed the label at the top. Alternatively could display white or another color behind the text
    * ComboDropLists and Listboxes uses GWEN disabled color
Image Button
    * Set the disabled image button to be displayed as normal because otherwise it is not shown
Listbox
    * Items don't have odd and even coloring or correct highlighting on mouse over
Menu
    * No shadow around popup
    * Forced padding on Menu Items as Font Horizontal Extend was too short
Multicolumn List
    * Whitespace appears on the far right of the list headers
    * Should add mouse cursor when resizing columns
Progress Bar
    * Can only support 1px wide border for progress bar
    * Disabled Progress bar is not supported in GWEN. Therefore adopted greyed out approach.
Tab Control
    * Couldn't replicate GWEN tab system exactly.

Enjoy.

User avatar
Kulik
CEGUI Team
Posts: 1382
Joined: Mon Jul 26, 2010 18:47
Location: Czech Republic
Contact:

Re: Ported GWEN Skin

Postby Kulik » Mon Jan 09, 2012 16:55

Impressive work!

Now that I have the data, I will test whether I can reproduce the white line on triangle edges. I have a hunch that this is related to something you do to the OpenGL state at your side.

I will get back to this in the evening.

User avatar
Kulik
CEGUI Team
Posts: 1382
Joined: Mon Jul 26, 2010 18:47
Location: Czech Republic
Contact:

Re: Ported GWEN Skin

Postby Kulik » Mon Jan 09, 2012 21:00

I got it working in CEED and made a little test - http://www.youtube.com/watch?v=t4hM1Wa0sZs

No edge lines :-( Could you send me your layout just in case this is some sort of a Z-fighting issue or something? (though I really really doubt that). Most likely it's something about your OpenGL state.

HyperNexus
Just popping in
Just popping in
Posts: 5
Joined: Mon Jan 02, 2012 06:08

Re: Ported GWEN Skin

Postby HyperNexus » Mon Jan 09, 2012 22:55

Here is the layout that I'm using. At the moment I'm adding different items to the combo box, drop down menu and tree via C++ code and not XML as I couldn't find a way to do so in the CEED editor.

Code: Select all

<?xml version="1.0" encoding="utf-8"?>

<GUILayout>
  <Window Name="root" Type="DefaultWindow">
    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    <Property Name="Font" Value="OpenSans-8" />
    <Window Name="root/StaticImage" Type="GWEN/StaticImage">
      <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
      <Property Name="Font" Value="OpenSans-8" />
      <Window Name="root/StaticImage/button" Type="GWEN/Button">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,5},{0,125},{0,25}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Button" />
      </Window>
      <Window Name="root/StaticImage/disabledListbox" Type="GWEN/Listbox">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,420},{0,205},{0,480}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Disabled" Value="True" />
        <AutoWindow NameSuffix="__auto_hscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_vscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="AlwaysOnTop" Value="True" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
        <Window Name="root/StaticImage/disabledListbox/ListboxItem" Type="GWEN/ListboxItem">
          <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{0,200},{0,20}}" />
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="Text" Value="Item 1" />
          <Property Name="Selected" Value="True" />
        </Window>
        <Window Name="root/StaticImage/disabledListbox/ListboxItem2" Type="GWEN/ListboxItem">
          <Property Name="UnifiedAreaRect" Value="{{0,0},{0,20},{0,200},{0,40}}" />
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="Text" Value="Item 2" />
        </Window>
        <Window Name="root/StaticImage/disabledListbox/ListboxItem3" Type="GWEN/ListboxItem">
          <Property Name="UnifiedAreaRect" Value="{{0,0},{0,40},{0,200},{0,60}}" />
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="Text" Value="Item 3" />
          <Property Name="AutoRenderingSurface" Value="True" />
        </Window>
      </Window>
      <Window Name="root/StaticImage/listbox" Type="GWEN/Listbox">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,335},{0,205},{0,415}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="ForceHorzScrollbar" Value="True" />
        <Property Name="ForceVertScrollbar" Value="True" />
        <AutoWindow NameSuffix="__auto_hscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_vscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="AlwaysOnTop" Value="True" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
        <Window Name="root/StaticImage/listbox/ListboxItem" Type="GWEN/ListboxItem">
          <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{0,200},{0,20}}" />
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="Text" Value="Item 1" />
          <Property Name="AutoRenderingSurface" Value="True" />
        </Window>
        <Window Name="root/StaticImage/listbox/ListboxItem2" Type="GWEN/ListboxItem">
          <Property Name="UnifiedAreaRect" Value="{{0,0},{0,20},{0,200},{0,40}}" />
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="Text" Value="Item 2" />
          <Property Name="AutoRenderingSurface" Value="True" />
        </Window>
        <Window Name="root/StaticImage/listbox/ListboxItem3" Type="GWEN/ListboxItem">
          <Property Name="UnifiedAreaRect" Value="{{0,0},{0,40},{0,200},{0,60}}" />
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="Text" Value="Item 3" />
        </Window>
      </Window>
      <Window Name="root/StaticImage/disabledScrollbar" Type="GWEN/HorizontalScrollbar">
        <Property Name="UnifiedAreaRect" Value="{{0,210},{0,280},{0,410},{0,295}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Disabled" Value="True" />
        <AutoWindow NameSuffix="__auto_thumb__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_decbtn__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_incbtn__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/scrollbar" Type="GWEN/HorizontalScrollbar">
        <Property Name="UnifiedAreaRect" Value="{{0,210},{0,260},{0,410},{0,275}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <AutoWindow NameSuffix="__auto_thumb__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_decbtn__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_incbtn__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/disabledVertProgressBar" Type="GWEN/VUMeter">
        <Property Name="UnifiedAreaRect" Value="{{0,235},{0,315},{0,255},{0,515}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Disabled" Value="True" />
        <Property Name="StepSize" Value="0.01" />
        <Property Name="CurrentProgress" Value="0.5" />
      </Window>
      <Window Name="root/StaticImage/disabledSlider" Type="GWEN/Slider">
        <Property Name="UnifiedAreaRect" Value="{{0,285},{0,315},{0,305},{0,515}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Disabled" Value="True" />
        <Property Name="CurrentValue" Value="1" />
        <AutoWindow NameSuffix="__auto_thumb__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/disabledProgressBar" Type="GWEN/ProgressBar">
        <Property Name="UnifiedAreaRect" Value="{{0,210},{0,235},{0,410},{0,255}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Disabled" Value="True" />
        <Property Name="StepSize" Value="0.01" />
        <Property Name="CurrentProgress" Value="0.01" />
      </Window>
      <Window Name="root/StaticImage/progressBar" Type="GWEN/ProgressBar">
        <Property Name="UnifiedAreaRect" Value="{{0,210},{0,210},{0,410},{0,230}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="StepSize" Value="0.01" />
        <Property Name="CurrentProgress" Value="0.5" />
      </Window>
      <Window Name="root/StaticImage/disabledGroupBox" Type="GWEN/GroupBox">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,270},{0,205},{0,320}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Group Box Disabled" />
        <AutoWindow NameSuffix="__auto_contentpane__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/titlebar" Type="GWEN/Titlebar">
        <Property Name="UnifiedAreaRect" Value="{{0,130},{0,30},{0,330},{0,50}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Title Bar" />
        <Property Name="AlwaysOnTop" Value="True" />
      </Window>
      <Window Name="root/StaticImage/disabledEditbox" Type="GWEN/Editbox">
        <Property Name="UnifiedAreaRect" Value="{{0,380},{0,5},{0,500},{0,25}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Disabled" />
        <Property Name="Disabled" Value="True" />
      </Window>
      <Window Name="root/StaticImage/disabledTitlebar" Type="GWEN/Titlebar">
        <Property Name="UnifiedAreaRect" Value="{{0,345},{0,30},{0,545},{0,50}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Disabled Title Bar" />
        <Property Name="Disabled" Value="True" />
        <Property Name="AlwaysOnTop" Value="True" />
      </Window>
      <Window Name="root/StaticImage/readOnlyEditbox" Type="GWEN/Editbox">
        <Property Name="UnifiedAreaRect" Value="{{0,505},{0,5},{0,625},{0,25}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Read Only" />
        <Property Name="ReadOnly" Value="True" />
      </Window>
      <Window Name="root/StaticImage/vertProgressBar" Type="GWEN/VUMeter">
        <Property Name="UnifiedAreaRect" Value="{{0,210},{0,315},{0,230},{0,515}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="StepSize" Value="0.01" />
        <Property Name="CurrentProgress" Value="0.5" />
      </Window>
      <Window Name="root/StaticImage/slider" Type="GWEN/Slider">
        <Property Name="UnifiedAreaRect" Value="{{0,260},{0,315},{0,280},{0,515}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="CurrentValue" Value="1" />
        <AutoWindow NameSuffix="__auto_thumb__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/checkBox2" Type="GWEN/Checkbox">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,130},{0,125},{0,150}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="CheckBox 2" />
      </Window>
      <Window Name="root/StaticImage/disabledCheckedRadioButton" Type="GWEN/RadioButton">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,90},{0,125},{0,110}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Disabled Marked" />
        <Property Name="Disabled" Value="True" />
        <Property Name="Selected" Value="True" />
      </Window>
      <Window Name="root/StaticImage/disabledButton" Type="GWEN/Button">
        <Property Name="UnifiedAreaRect" Value="{{0,130},{0,5},{0,250},{0,25}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Disabled" />
        <Property Name="Disabled" Value="True" />
      </Window>
      <Window Name="root/StaticImage/radioButton1" Type="GWEN/RadioButton">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,30},{0,125},{0,50}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Radio Button 1" />
      </Window>
      <Window Name="root/StaticImage/radioButton2" Type="GWEN/RadioButton">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,50},{0,125},{0,70}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Radio Button 2" />
      </Window>
      <Window Name="root/StaticImage/disabledUncheckedRadioButton" Type="GWEN/RadioButton">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,70},{0,125},{0,90}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Disabled Unmarked" />
        <Property Name="Disabled" Value="True" />
      </Window>
      <Window Name="root/StaticImage/checkBox1" Type="GWEN/Checkbox">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,110},{0,125},{0,130}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="CheckBox 1" />
      </Window>
      <Window Name="root/StaticImage/frameWindow" Type="GWEN/FrameWindow">
        <Property Name="UnifiedAreaRect" Value="{{0,130},{0,60},{0,330},{0,200}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Frame Window" />
        <Property Name="CaptionFont" Value="OpenSans-8" />
        <AutoWindow NameSuffix="__auto_titlebar__">
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_closebutton__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/groupBox" Type="GWEN/GroupBox">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,210},{0,205},{0,260}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Group Box" />
        <AutoWindow NameSuffix="__auto_contentpane__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/scrollbar2" Type="GWEN/VerticalScrollbar">
        <Property Name="UnifiedAreaRect" Value="{{0,310},{0,315},{0,325},{0,515}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <AutoWindow NameSuffix="__auto_thumb__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_decbtn__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_incbtn__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/disabledScrollbar2" Type="GWEN/VerticalScrollbar">
        <Property Name="UnifiedAreaRect" Value="{{0,330},{0,315},{0,345},{0,515}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Disabled" Value="True" />
        <AutoWindow NameSuffix="__auto_thumb__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_decbtn__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_incbtn__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/editbox" Type="GWEN/Editbox">
        <Property Name="UnifiedAreaRect" Value="{{0,255},{0,5},{0,375},{0,25}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Edit Box" />
      </Window>
      <Window Name="root/StaticImage/disabledCheckedCheckbox" Type="GWEN/Checkbox">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,170},{0,125},{0,190}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Disabled Marked" />
        <Property Name="Disabled" Value="True" />
        <Property Name="Selected" Value="True" />
      </Window>
      <Window Name="root/StaticImage/disabledUncheckedCheckbox" Type="GWEN/Checkbox">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,150},{0,125},{0,170}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Disabled Unmarked" />
        <Property Name="Disabled" Value="True" />
      </Window>
      <Window Name="root/StaticImage/ComboEditbox" Type="GWEN/ComboEditbox">
        <Property Name="UnifiedAreaRect" Value="{{0,630},{0,5},{0,790},{0,25}}" />
        <Property Name="Font" Value="OpenSans-8" />
      </Window>
      <Window Name="root/StaticImage/disabledComboBox" Type="GWEN/Combobox">
        <Property Name="UnifiedAreaRect" Value="{{0,675},{0,30},{0,795},{0,150}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Disabled" Value="True" />
        <Property Name="ReadOnly" Value="True" />
        <AutoWindow NameSuffix="__auto_button__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="AlwaysOnTop" Value="True" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_editbox__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="ReadOnly" Value="True" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_droplist__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_hscrollbar__">
            <Property Name="Font" Value="OpenSans-8" />
            <AutoWindow NameSuffix="__auto_thumb__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
            <AutoWindow NameSuffix="__auto_decbtn__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
            <AutoWindow NameSuffix="__auto_incbtn__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_vscrollbar__">
            <Property Name="Font" Value="OpenSans-8" />
            <AutoWindow NameSuffix="__auto_thumb__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
            <AutoWindow NameSuffix="__auto_decbtn__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
            <AutoWindow NameSuffix="__auto_incbtn__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
          </AutoWindow>
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/combobox" Type="GWEN/Combobox">
        <Property Name="UnifiedAreaRect" Value="{{0,550},{0,30},{0,670},{0,150}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <AutoWindow NameSuffix="__auto_button__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="AlwaysOnTop" Value="True" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_editbox__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_droplist__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_hscrollbar__">
            <Property Name="Font" Value="OpenSans-8" />
            <AutoWindow NameSuffix="__auto_thumb__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
            <AutoWindow NameSuffix="__auto_decbtn__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
            <AutoWindow NameSuffix="__auto_incbtn__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_vscrollbar__">
            <Property Name="Font" Value="OpenSans-8" />
            <AutoWindow NameSuffix="__auto_thumb__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
            <AutoWindow NameSuffix="__auto_decbtn__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
            <AutoWindow NameSuffix="__auto_incbtn__">
              <Property Name="Font" Value="OpenSans-8" />
            </AutoWindow>
          </AutoWindow>
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/Spinner" Type="GWEN/Spinner">
        <Property Name="UnifiedAreaRect" Value="{{0,550},{0,60},{0,600},{0,80}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="0" />
        <Property Name="AutoRenderingSurface" Value="True" />
        <AutoWindow NameSuffix="__auto_decbtn__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="WantsMultiClickEvents" Value="False" />
          <Property Name="MouseAutoRepeatEnabled" Value="True" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_incbtn__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="WantsMultiClickEvents" Value="False" />
          <Property Name="MouseAutoRepeatEnabled" Value="True" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_editbox__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="Text" Value="0" />
          <Property Name="ValidationString" Value="-?\d*" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/Spinner2" Type="GWEN/Spinner">
        <Property Name="UnifiedAreaRect" Value="{{0,610},{0,60},{0,660},{0,80}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="0" />
        <Property Name="Disabled" Value="True" />
        <AutoWindow NameSuffix="__auto_decbtn__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="WantsMultiClickEvents" Value="False" />
          <Property Name="MouseAutoRepeatEnabled" Value="True" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_incbtn__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="WantsMultiClickEvents" Value="False" />
          <Property Name="MouseAutoRepeatEnabled" Value="True" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_editbox__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="Text" Value="0" />
          <Property Name="ValidationString" Value="-?\d*" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/StaticImage" Type="GWEN/StaticImage">
        <Property Name="UnifiedAreaRect" Value="{{0,550},{0,85},{0,678},{0,174}}" />
        <Property Name="Font" Value="OpenSans-8" />
      </Window>
      <Window Name="root/StaticImage/StaticText" Type="GWEN/StaticText">
        <Property Name="UnifiedAreaRect" Value="{{0,685},{0,60},{0,885},{0,175}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text">Let's talk about text baby. Let's talk about you and me. Let's talk about all the good things and the bad things that maybe. Let's talk aboooout text. Let's talk about text!</Property>
        <AutoWindow NameSuffix="__auto_hscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_vscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/MultiColumnList" Type="GWEN/MultiColumnList">
        <Property Name="UnifiedAreaRect" Value="{{0,400},{0,500},{0,950},{0,600}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="ColumnHeader" Value="text:Server Name width:{0.33,0} id:0" />
        <Property Name="ColumnHeader" Value="text:Address width:{0.5,0} id:1" />
        <Property Name="ColumnHeader" Value="text:Ping width:{0.2,0} id:2" />
        <AutoWindow NameSuffix="__auto_hscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_listheader__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_seg_0">
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_seg_1">
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_seg_2">
          </AutoWindow>
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_vscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/MultiLineEditbox" Type="GWEN/MultiLineEditbox">
        <Property Name="UnifiedAreaRect" Value="{{0,420},{0,210},{0,620},{0,290}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text"></Property>
        <Property Name="WordWrap" Value="False" />
        <Property Name="BlinkCaret" Value="True" />
        <Property Name="AutoRenderingSurface" Value="True" />
        <AutoWindow NameSuffix="__auto_hscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_vscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/MultiLineEditbox2" Type="GWEN/MultiLineEditbox">
        <Property Name="UnifiedAreaRect" Value="{{0,420},{0,300},{0,620},{0,380}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text">Let's talk about text baby. Let's talk about you and me. Let's talk about all the good things and the bad things that may be. Let's talk aboooout text. Let's talk about text!</Property>
        <Property Name="ReadOnly" Value="True" />
        <AutoWindow NameSuffix="__auto_hscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_vscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/MultiLineEditbox3" Type="GWEN/MultiLineEditbox">
        <Property Name="UnifiedAreaRect" Value="{{0,420},{0,390},{0,620},{0,470}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text">This is text that belongs to a dsibaled.</Property>
        <Property Name="Disabled" Value="True" />
        <Property Name="AutoRenderingSurface" Value="True" />
        <AutoWindow NameSuffix="__auto_hscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_vscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/Button" Type="GWEN/Button">
        <Property Name="UnifiedAreaRect" Value="{{0,800},{0,5},{0,920},{0,25}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Tool Tip on Roll over" />
        <Property Name="TooltipText" Value="This is a lonely button. :(" />
      </Window>
      <Window Name="root/StaticImage/ScrollablePane" Type="GWEN/ScrollablePane">
        <Property Name="UnifiedAreaRect" Value="{{0,630},{0,180},{0,830},{0,290}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="ForceHorzScrollbar" Value="True" />
        <Property Name="ForceVertScrollbar" Value="True" />
        <AutoWindow NameSuffix="__auto_container__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="MouseInputPropagationEnabled" Value="True" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_hscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="AlwaysOnTop" Value="True" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_vscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="AlwaysOnTop" Value="True" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/TabControl" Type="GWEN/TabControl">
        <Property Name="UnifiedAreaRect" Value="{{0,5},{0,500},{0,205},{0,620}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="TabHeight" Value="{0,-1}" />
        <Property Name="TabPanePosition" Value="Bottom" />
        <AutoWindow NameSuffix="__auto_TabPane__">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="EnableTop" Value="1" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_TabPane__Buttons">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="EnableBottom" Value="0" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_TabPane__ScrollLeft">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="Visible" Value="False" />
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_TabPane__ScrollRight">
          <Property Name="Font" Value="OpenSans-8" />
          <Property Name="Visible" Value="False" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/Menubar" Type="GWEN/Menubar">
        <Property Name="UnifiedAreaRect" Value="{{0,630},{0,300},{0,830},{0,320}}" />
        <Property Name="Font" Value="OpenSans-8" />
      </Window>
      <Window Name="root/StaticImage/Tree" Type="GWEN/Tree">
        <Property Name="UnifiedAreaRect" Value="{{0,630},{0,330},{0,830},{0,490}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="ForceHorzScrollbar" Value="True" />
        <Property Name="ForceVertScrollbar" Value="True" />
        <AutoWindow NameSuffix="__auto_hscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_vscrollbar__">
          <Property Name="Font" Value="OpenSans-8" />
          <AutoWindow NameSuffix="__auto_thumb__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_decbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
          <AutoWindow NameSuffix="__auto_incbtn__">
            <Property Name="Font" Value="OpenSans-8" />
          </AutoWindow>
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/FrameWindow" Type="GWEN/FrameWindow">
        <Property Name="UnifiedAreaRect" Value="{{0,345},{0,60},{0,545},{0,200}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="Text" Value="Disabled Frame Window" />
        <Property Name="Disabled" Value="True" />
        <Property Name="CaptionFont" Value="OpenSans-8" />
        <AutoWindow NameSuffix="__auto_titlebar__">
        </AutoWindow>
        <AutoWindow NameSuffix="__auto_closebutton__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/HorizontalSlider" Type="GWEN/HorizontalSlider">
        <Property Name="UnifiedAreaRect" Value="{{0,215},{0,530},{0,385},{0,560}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <AutoWindow NameSuffix="__auto_thumb__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
      <Window Name="root/StaticImage/HorizontalSlider2" Type="GWEN/HorizontalSlider">
        <Property Name="UnifiedAreaRect" Value="{{0,215},{0,570},{0,385},{0,600}}" />
        <Property Name="Font" Value="OpenSans-8" />
        <AutoWindow NameSuffix="__auto_thumb__">
          <Property Name="Font" Value="OpenSans-8" />
        </AutoWindow>
      </Window>
    </Window>
  </Window>
</GUILayout>


If I save the XML after loading in everything I get this.

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>

<GUILayout >
    <Window Type="DefaultWindow" Name="root" >
        <Property Name="Font" Value="OpenSans-8" />
        <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
        <Window Type="GWEN/StaticImage" Name="root/StaticImage" >
            <Property Name="Font" Value="OpenSans-8" />
            <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
            <Window Type="GWEN/Button" Name="root/StaticImage/button" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Button" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,5},{0,125},{0,25}}" />
            </Window>
            <Window Type="GWEN/Listbox" Name="root/StaticImage/disabledListbox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Disabled" Value="True" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,420},{0,205},{0,480}}" />
                <AutoWindow NameSuffix="__auto_hscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_vscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="AlwaysOnTop" Value="True" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
                <Window Type="GWEN/ListboxItem" Name="root/StaticImage/disabledListbox/ListboxItem" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Text" Value="Item 1" />
                    <Property Name="Selected" Value="True" />
                    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{0,200},{0,20}}" />
                </Window>
                <Window Type="GWEN/ListboxItem" Name="root/StaticImage/disabledListbox/ListboxItem2" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Text" Value="Item 2" />
                    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,20},{0,200},{0,40}}" />
                </Window>
                <Window Type="GWEN/ListboxItem" Name="root/StaticImage/disabledListbox/ListboxItem3" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Text" Value="Item 3" />
                    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,40},{0,200},{0,60}}" />
                    <Property Name="AutoRenderingSurface" Value="True" />
                </Window>
            </Window>
            <Window Type="GWEN/Listbox" Name="root/StaticImage/listbox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,335},{0,205},{0,415}}" />
                <Property Name="ForceHorzScrollbar" Value="True" />
                <Property Name="ForceVertScrollbar" Value="True" />
                <AutoWindow NameSuffix="__auto_hscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_vscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="AlwaysOnTop" Value="True" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
                <Window Type="GWEN/ListboxItem" Name="root/StaticImage/listbox/ListboxItem" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Text" Value="Item 1" />
                    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{0,200},{0,20}}" />
                    <Property Name="AutoRenderingSurface" Value="True" />
                </Window>
                <Window Type="GWEN/ListboxItem" Name="root/StaticImage/listbox/ListboxItem2" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Text" Value="Item 2" />
                    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,20},{0,200},{0,40}}" />
                    <Property Name="AutoRenderingSurface" Value="True" />
                </Window>
                <Window Type="GWEN/ListboxItem" Name="root/StaticImage/listbox/ListboxItem3" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Text" Value="Item 3" />
                    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,40},{0,200},{0,60}}" />
                </Window>
            </Window>
            <Window Type="GWEN/HorizontalScrollbar" Name="root/StaticImage/disabledScrollbar" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Disabled" Value="True" />
                <Property Name="PageSize" Value="0" />
                <Property Name="StepSize" Value="1" />
                <Property Name="OverlapSize" Value="0" />
                <Property Name="DocumentSize" Value="1" />
                <Property Name="ScrollPosition" Value="0" />
                <Property Name="UnifiedAreaRect" Value="{{0,210},{0,280},{0,410},{0,295}}" />
                <AutoWindow NameSuffix="__auto_incbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_decbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_thumb__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/HorizontalScrollbar" Name="root/StaticImage/scrollbar" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="PageSize" Value="0" />
                <Property Name="StepSize" Value="1" />
                <Property Name="OverlapSize" Value="0" />
                <Property Name="DocumentSize" Value="1" />
                <Property Name="ScrollPosition" Value="0" />
                <Property Name="UnifiedAreaRect" Value="{{0,210},{0,260},{0,410},{0,275}}" />
                <AutoWindow NameSuffix="__auto_incbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_decbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_thumb__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/VUMeter" Name="root/StaticImage/disabledVertProgressBar" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Disabled" Value="True" />
                <Property Name="StepSize" Value="0.01" />
                <Property Name="CurrentProgress" Value="0.5" />
                <Property Name="UnifiedAreaRect" Value="{{0,235},{0,315},{0,255},{0,515}}" />
            </Window>
            <Window Type="GWEN/Slider" Name="root/StaticImage/disabledSlider" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Disabled" Value="True" />
                <Property Name="CurrentValue" Value="1" />
                <Property Name="MaximumValue" Value="1" />
                <Property Name="ClickStepSize" Value="0.01" />
                <Property Name="UnifiedAreaRect" Value="{{0,285},{0,315},{0,305},{0,515}}" />
                <AutoWindow NameSuffix="__auto_thumb__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/ProgressBar" Name="root/StaticImage/disabledProgressBar" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Disabled" Value="True" />
                <Property Name="StepSize" Value="0.01" />
                <Property Name="CurrentProgress" Value="0.01" />
                <Property Name="UnifiedAreaRect" Value="{{0,210},{0,235},{0,410},{0,255}}" />
            </Window>
            <Window Type="GWEN/ProgressBar" Name="root/StaticImage/progressBar" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="StepSize" Value="0.01" />
                <Property Name="CurrentProgress" Value="0.5" />
                <Property Name="UnifiedAreaRect" Value="{{0,210},{0,210},{0,410},{0,230}}" />
            </Window>
            <Window Type="GWEN/GroupBox" Name="root/StaticImage/disabledGroupBox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Group Box Disabled" />
                <Property Name="RiseOnClick" Value="False" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,270},{0,205},{0,320}}" />
                <AutoWindow NameSuffix="__auto_contentpane__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/Titlebar" Name="root/StaticImage/titlebar" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Title Bar" />
                <Property Name="AlwaysOnTop" Value="True" />
                <Property Name="UnifiedAreaRect" Value="{{0,130},{0,30},{0,330},{0,50}}" />
            </Window>
            <Window Type="GWEN/Editbox" Name="root/StaticImage/disabledEditbox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Disabled" />
                <Property Name="Disabled" Value="True" />
                <Property Name="MaxTextLength" Value="4294967295" />
                <Property Name="UnifiedAreaRect" Value="{{0,380},{0,5},{0,500},{0,25}}" />
                <Property Name="TextParsingEnabled" Value="False" />
            </Window>
            <Window Type="GWEN/Titlebar" Name="root/StaticImage/disabledTitlebar" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Disabled Title Bar" />
                <Property Name="Disabled" Value="True" />
                <Property Name="AlwaysOnTop" Value="True" />
                <Property Name="UnifiedAreaRect" Value="{{0,345},{0,30},{0,545},{0,50}}" />
            </Window>
            <Window Type="GWEN/Editbox" Name="root/StaticImage/readOnlyEditbox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Read Only" />
                <Property Name="ReadOnly" Value="True" />
                <Property Name="MaxTextLength" Value="4294967295" />
                <Property Name="UnifiedAreaRect" Value="{{0,505},{0,5},{0,625},{0,25}}" />
                <Property Name="TextParsingEnabled" Value="False" />
            </Window>
            <Window Type="GWEN/VUMeter" Name="root/StaticImage/vertProgressBar" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="StepSize" Value="0.01" />
                <Property Name="CurrentProgress" Value="0.5" />
                <Property Name="UnifiedAreaRect" Value="{{0,210},{0,315},{0,230},{0,515}}" />
            </Window>
            <Window Type="GWEN/Slider" Name="root/StaticImage/slider" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="CurrentValue" Value="1" />
                <Property Name="MaximumValue" Value="1" />
                <Property Name="ClickStepSize" Value="0.01" />
                <Property Name="UnifiedAreaRect" Value="{{0,260},{0,315},{0,280},{0,515}}" />
                <AutoWindow NameSuffix="__auto_thumb__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/Checkbox" Name="root/StaticImage/checkBox2" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="CheckBox 2" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,130},{0,125},{0,150}}" />
            </Window>
            <Window Type="GWEN/RadioButton" Name="root/StaticImage/disabledCheckedRadioButton" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Disabled Marked" />
                <Property Name="Disabled" Value="True" />
                <Property Name="Selected" Value="True" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,90},{0,125},{0,110}}" />
            </Window>
            <Window Type="GWEN/Button" Name="root/StaticImage/disabledButton" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Disabled" />
                <Property Name="Disabled" Value="True" />
                <Property Name="UnifiedAreaRect" Value="{{0,130},{0,5},{0,250},{0,25}}" />
            </Window>
            <Window Type="GWEN/RadioButton" Name="root/StaticImage/radioButton1" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Radio Button 1" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,30},{0,125},{0,50}}" />
            </Window>
            <Window Type="GWEN/RadioButton" Name="root/StaticImage/radioButton2" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Radio Button 2" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,50},{0,125},{0,70}}" />
            </Window>
            <Window Type="GWEN/RadioButton" Name="root/StaticImage/disabledUncheckedRadioButton" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Disabled Unmarked" />
                <Property Name="Disabled" Value="True" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,70},{0,125},{0,90}}" />
            </Window>
            <Window Type="GWEN/Checkbox" Name="root/StaticImage/checkBox1" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="CheckBox 1" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,110},{0,125},{0,130}}" />
            </Window>
            <Window Type="GWEN/FrameWindow" Name="root/StaticImage/frameWindow" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Frame Window" />
                <Property Name="CaptionFont" Value="OpenSans-8" />
                <Property Name="TitlebarEnabled" Value="True" />
                <Property Name="UnifiedAreaRect" Value="{{0,130},{0,60},{0,330},{0,200}}" />
                <AutoWindow NameSuffix="__auto_titlebar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Text" Value="Frame Window" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_closebutton__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/GroupBox" Name="root/StaticImage/groupBox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Group Box" />
                <Property Name="RiseOnClick" Value="False" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,210},{0,205},{0,260}}" />
                <AutoWindow NameSuffix="__auto_contentpane__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/VerticalScrollbar" Name="root/StaticImage/scrollbar2" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="PageSize" Value="0" />
                <Property Name="StepSize" Value="1" />
                <Property Name="OverlapSize" Value="0" />
                <Property Name="DocumentSize" Value="1" />
                <Property Name="ScrollPosition" Value="0" />
                <Property Name="UnifiedAreaRect" Value="{{0,310},{0,315},{0,325},{0,515}}" />
                <AutoWindow NameSuffix="__auto_incbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_decbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_thumb__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/VerticalScrollbar" Name="root/StaticImage/disabledScrollbar2" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Disabled" Value="True" />
                <Property Name="PageSize" Value="0" />
                <Property Name="StepSize" Value="1" />
                <Property Name="OverlapSize" Value="0" />
                <Property Name="DocumentSize" Value="1" />
                <Property Name="ScrollPosition" Value="0" />
                <Property Name="UnifiedAreaRect" Value="{{0,330},{0,315},{0,345},{0,515}}" />
                <AutoWindow NameSuffix="__auto_incbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_decbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_thumb__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/Editbox" Name="root/StaticImage/editbox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Edit Box" />
                <Property Name="MaxTextLength" Value="4294967295" />
                <Property Name="UnifiedAreaRect" Value="{{0,255},{0,5},{0,375},{0,25}}" />
                <Property Name="TextParsingEnabled" Value="False" />
            </Window>
            <Window Type="GWEN/Checkbox" Name="root/StaticImage/disabledCheckedCheckbox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Disabled Marked" />
                <Property Name="Disabled" Value="True" />
                <Property Name="Selected" Value="True" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,170},{0,125},{0,190}}" />
            </Window>
            <Window Type="GWEN/Checkbox" Name="root/StaticImage/disabledUncheckedCheckbox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Disabled Unmarked" />
                <Property Name="Disabled" Value="True" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,150},{0,125},{0,170}}" />
            </Window>
            <Window Type="GWEN/ComboEditbox" Name="root/StaticImage/ComboEditbox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="MaxTextLength" Value="4294967295" />
                <Property Name="UnifiedAreaRect" Value="{{0,630},{0,5},{0,790},{0,25}}" />
                <Property Name="TextParsingEnabled" Value="False" />
            </Window>
            <Window Type="GWEN/Combobox" Name="root/StaticImage/disabledComboBox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Disabled" Value="True" />
                <Property Name="ReadOnly" Value="True" />
                <Property Name="UnifiedAreaRect" Value="{{0,675},{0,30},{0,795},{0,150}}" />
                <Property Name="MaxEditTextLength" Value="4294967295" />
                <AutoWindow NameSuffix="__auto_editbox__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="ReadOnly" Value="True" />
                    <Property Name="MaxTextLength" Value="4294967295" />
                    <Property Name="TextParsingEnabled" Value="False" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_droplist__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Visible" Value="False" />
                    <Property Name="DistributeCapturedInputs" Value="True" />
                    <AutoWindow NameSuffix="__auto_hscrollbar__" >
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="RestoreOldCapture" Value="True" />
                        <AutoWindow NameSuffix="__auto_incbtn__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                        <AutoWindow NameSuffix="__auto_decbtn__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                        <AutoWindow NameSuffix="__auto_thumb__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_vscrollbar__" >
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="RestoreOldCapture" Value="True" />
                        <AutoWindow NameSuffix="__auto_incbtn__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                        <AutoWindow NameSuffix="__auto_decbtn__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                        <AutoWindow NameSuffix="__auto_thumb__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_button__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="AlwaysOnTop" Value="True" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/Combobox" Name="root/StaticImage/combobox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="UnifiedAreaRect" Value="{{0,550},{0,30},{0,670},{0,150}}" />
                <Property Name="MaxEditTextLength" Value="4294967295" />
                <AutoWindow NameSuffix="__auto_editbox__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="MaxTextLength" Value="4294967295" />
                    <Property Name="TextParsingEnabled" Value="False" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_droplist__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Visible" Value="False" />
                    <Property Name="DistributeCapturedInputs" Value="True" />
                    <AutoWindow NameSuffix="__auto_hscrollbar__" >
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="RestoreOldCapture" Value="True" />
                        <AutoWindow NameSuffix="__auto_incbtn__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                        <AutoWindow NameSuffix="__auto_decbtn__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                        <AutoWindow NameSuffix="__auto_thumb__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_vscrollbar__" >
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="RestoreOldCapture" Value="True" />
                        <AutoWindow NameSuffix="__auto_incbtn__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                        <AutoWindow NameSuffix="__auto_decbtn__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                        <AutoWindow NameSuffix="__auto_thumb__" >
                            <Property Name="Font" Value="OpenSans-8" />
                            <Property Name="RestoreOldCapture" Value="True" />
                        </AutoWindow>
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_button__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="AlwaysOnTop" Value="True" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/Spinner" Name="root/StaticImage/Spinner" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="0" />
                <Property Name="StepSize" Value="1" />
                <Property Name="CurrentValue" Value="0" />
                <Property Name="MaximumValue" Value="32767" />
                <Property Name="MinimumValue" Value="-32768" />
                <Property Name="UnifiedAreaRect" Value="{{0,550},{0,60},{0,600},{0,80}}" />
                <Property Name="AutoRenderingSurface" Value="True" />
                <AutoWindow NameSuffix="__auto_editbox__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Text" Value="0" />
                    <Property Name="MaxTextLength" Value="4294967295" />
                    <Property Name="ValidationString" Value="-?\d*" />
                    <Property Name="TextParsingEnabled" Value="False" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_incbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="WantsMultiClickEvents" Value="False" />
                    <Property Name="MouseButtonDownAutoRepeat" Value="True" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_decbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="WantsMultiClickEvents" Value="False" />
                    <Property Name="MouseButtonDownAutoRepeat" Value="True" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/Spinner" Name="root/StaticImage/Spinner2" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="0" />
                <Property Name="Disabled" Value="True" />
                <Property Name="StepSize" Value="1" />
                <Property Name="CurrentValue" Value="0" />
                <Property Name="MaximumValue" Value="32767" />
                <Property Name="MinimumValue" Value="-32768" />
                <Property Name="UnifiedAreaRect" Value="{{0,610},{0,60},{0,660},{0,80}}" />
                <AutoWindow NameSuffix="__auto_editbox__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Text" Value="0" />
                    <Property Name="MaxTextLength" Value="4294967295" />
                    <Property Name="ValidationString" Value="-?\d*" />
                    <Property Name="TextParsingEnabled" Value="False" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_incbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="WantsMultiClickEvents" Value="False" />
                    <Property Name="MouseButtonDownAutoRepeat" Value="True" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_decbtn__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="WantsMultiClickEvents" Value="False" />
                    <Property Name="MouseButtonDownAutoRepeat" Value="True" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/StaticImage" Name="root/StaticImage/StaticImage" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Image" Value="set:Logo image:full_image" />
                <Property Name="UnifiedAreaRect" Value="{{0,550},{0,85},{0,678},{0,174}}" />
            </Window>
            <Window Type="GWEN/StaticText" Name="root/StaticImage/StaticText" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Let&apos;s talk about text baby. Let&apos;s talk about you and me. Let&apos;s talk about all the good things and the bad things that maybe. Let&apos;s talk aboooout text. Let&apos;s talk about text!" />
                <Property Name="UnifiedAreaRect" Value="{{0,685},{0,60},{0,885},{0,175}}" />
                <AutoWindow NameSuffix="__auto_hscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_vscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
            </Window>
            <Window Type="GWEN/MultiColumnList" Name="root/StaticImage/MultiColumnList" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="UnifiedAreaRect" Value="{{0,400},{0,500},{0,950},{0,600}}" />
                <Property Name="ColumnHeader" Value="text:Server Name width:{0.33,0} id:0" />
                <Property Name="ColumnHeader" Value="text:Address width:{0.5,0} id:1" />
                <Property Name="ColumnHeader" Value="text:Ping width:{0.2,0} id:2" />
                <AutoWindow NameSuffix="__auto_listheader__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_seg_0" >
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="Text" Value="Server Name" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_seg_1" >
                        <Property Name="ID" Value="1" />
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="Text" Value="Address" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_seg_2" >
                        <Property Name="ID" Value="2" />
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="Text" Value="Ping" />
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_hscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_vscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
            </Window>
            <Window Type="GWEN/MultiLineEditbox" Name="root/StaticImage/MultiLineEditbox" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" >
</Property>
                <Property Name="WordWrap" Value="False" />
                <Property Name="BlinkCaret" Value="True" />
                <Property Name="MaxTextLength" Value="4294967295" />
                <Property Name="UnifiedAreaRect" Value="{{0,420},{0,210},{0,620},{0,290}}" />
                <Property Name="TextParsingEnabled" Value="False" />
                <Property Name="AutoRenderingSurface" Value="True" />
                <AutoWindow NameSuffix="__auto_hscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_vscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
            </Window>
            <Window Type="GWEN/MultiLineEditbox" Name="root/StaticImage/MultiLineEditbox2" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" >Let&apos;s talk about text baby. Let&apos;s talk about you and me. Let&apos;s talk about all the good things and the bad things that may be. Let&apos;s talk aboooout text. Let&apos;s talk about text!
</Property>
                <Property Name="ReadOnly" Value="True" />
                <Property Name="MaxTextLength" Value="4294967295" />
                <Property Name="UnifiedAreaRect" Value="{{0,420},{0,300},{0,620},{0,380}}" />
                <Property Name="TextParsingEnabled" Value="False" />
                <AutoWindow NameSuffix="__auto_hscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_vscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
            </Window>
            <Window Type="GWEN/MultiLineEditbox" Name="root/StaticImage/MultiLineEditbox3" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" >This is text that belongs to a dsibaled.
</Property>
                <Property Name="Disabled" Value="True" />
                <Property Name="MaxTextLength" Value="4294967295" />
                <Property Name="UnifiedAreaRect" Value="{{0,420},{0,390},{0,620},{0,470}}" />
                <Property Name="TextParsingEnabled" Value="False" />
                <Property Name="AutoRenderingSurface" Value="True" />
                <AutoWindow NameSuffix="__auto_hscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_vscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
            </Window>
            <Window Type="GWEN/Button" Name="root/StaticImage/Button" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Tool Tip on Roll over" />
                <Property Name="Tooltip" Value="Always tip a good waiter." />
                <Property Name="UnifiedAreaRect" Value="{{0,800},{0,5},{0,920},{0,25}}" />
            </Window>
            <Window Type="GWEN/ScrollablePane" Name="root/StaticImage/ScrollablePane" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="ContentArea" Value="l:0 t:0 r:0 b:0" />
                <Property Name="HorzStepSize" Value="0.1" />
                <Property Name="VertStepSize" Value="0.1" />
                <Property Name="HorzOverlapSize" Value="0.01" />
                <Property Name="UnifiedAreaRect" Value="{{0,630},{0,180},{0,830},{0,290}}" />
                <Property Name="VertOverlapSize" Value="0.01" />
                <Property Name="ForceHorzScrollbar" Value="True" />
                <Property Name="ForceVertScrollbar" Value="True" />
                <Property Name="HorzScrollPosition" Value="0" />
                <Property Name="VertScrollPosition" Value="0" />
                <AutoWindow NameSuffix="__auto_container__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="ContentArea" Value="l:0 t:0 r:0 b:0" />
                    <Property Name="ChildExtentsArea" Value="l:0 t:0 r:0 b:0" />
                    <Property Name="MouseInputPropagationEnabled" Value="True" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_hscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="AlwaysOnTop" Value="True" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_vscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="AlwaysOnTop" Value="True" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
            </Window>
            <Window Type="GWEN/TabControl" Name="root/StaticImage/TabControl" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="TabHeight" Value="{0,22.98}" />
                <Property Name="TabPanePosition" Value="Bottom" />
                <Property Name="UnifiedAreaRect" Value="{{0,5},{0,500},{0,205},{0,620}}" />
                <AutoWindow NameSuffix="__auto_TabPane__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="EnableTop" Value="1" />
                    <Window Type="DefaultWindow" Name="root/StaticImage/TabContentPane/Tab1tab" >
                        <Property Name="Text" Value="Page one" />
                        <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
                    </Window>
                    <Window Type="DefaultWindow" Name="root/StaticImage/TabContentPane/Tab2Page2" >
                        <Property Name="Text" Value="Page two" />
                        <Property Name="Visible" Value="False" />
                        <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
                    </Window>
                    <Window Type="DefaultWindow" Name="root/StaticImage/TabContentPane/Tab3Page2" >
                        <Property Name="Text" Value="Page two" />
                        <Property Name="Visible" Value="False" />
                        <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
                    </Window>
                    <Window Type="DefaultWindow" Name="root/StaticImage/TabContentPane/Tab4Page2" >
                        <Property Name="Text" Value="Page two" />
                        <Property Name="Visible" Value="False" />
                        <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
                    </Window>
                    <Window Type="DefaultWindow" Name="root/StaticImage/TabContentPane/Tab5Page2" >
                        <Property Name="Text" Value="Page two" />
                        <Property Name="Visible" Value="False" />
                        <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
                    </Window>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_TabPane__Buttons" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="EnableBottom" Value="0" />
                    <AutoWindow NameSuffix="__auto_btnroot/StaticImage/TabContentPane/Tab1tab" >
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="Text" Value="Page one" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_btnroot/StaticImage/TabContentPane/Tab2Page2" >
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="Text" Value="Page two" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_btnroot/StaticImage/TabContentPane/Tab3Page2" >
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="Text" Value="Page two" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_btnroot/StaticImage/TabContentPane/Tab4Page2" >
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="Text" Value="Page two" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_btnroot/StaticImage/TabContentPane/Tab5Page2" >
                        <Property Name="Font" Value="OpenSans-8" />
                        <Property Name="Text" Value="Page two" />
                        <Property Name="Visible" Value="False" />
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_TabPane__ScrollLeft" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Visible" Value="False" />
                    <Property Name="WantsMultiClickEvents" Value="False" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_TabPane__ScrollRight" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="WantsMultiClickEvents" Value="False" />
                </AutoWindow>
                <Window Type="DefaultWindow" Name="root/StaticImage/TabContentPane/Tab1tab" >
                    <Property Name="Text" Value="Page one" />
                    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
                </Window>
                <Window Type="DefaultWindow" Name="root/StaticImage/TabContentPane/Tab2Page2" >
                    <Property Name="Text" Value="Page two" />
                    <Property Name="Visible" Value="False" />
                    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
                </Window>
                <Window Type="DefaultWindow" Name="root/StaticImage/TabContentPane/Tab3Page2" >
                    <Property Name="Text" Value="Page two" />
                    <Property Name="Visible" Value="False" />
                    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
                </Window>
                <Window Type="DefaultWindow" Name="root/StaticImage/TabContentPane/Tab4Page2" >
                    <Property Name="Text" Value="Page two" />
                    <Property Name="Visible" Value="False" />
                    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
                </Window>
                <Window Type="DefaultWindow" Name="root/StaticImage/TabContentPane/Tab5Page2" >
                    <Property Name="Text" Value="Page two" />
                    <Property Name="Visible" Value="False" />
                    <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
                </Window>
            </Window>
            <Window Type="GWEN/Menubar" Name="root/StaticImage/Menubar" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="ItemSpacing" Value="10" />
                <Property Name="UnifiedAreaRect" Value="{{0,630},{0,300},{0,830},{0,320}}" />
                <Window Type="GWEN/MenuItem" >
                    <Property Name="Text" Value="File" />
                    <Property Name="UnifiedAreaRect" Value="{{0,5},{0,0},{0,54},{0,17}}" />
                    <Property Name="AutoPopupTimeout" Value="0" />
                    <Property Name="VerticalAlignment" Value="Centre" />
                    <Window Type="GWEN/PopupMenu" >
                        <Property Name="Visible" Value="False" />
                        <Property Name="FadeInTime" Value="0" />
                        <Property Name="FadeOutTime" Value="0" />
                        <Property Name="ItemSpacing" Value="2" />
                        <Property Name="ClippedByParent" Value="False" />
                        <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{0,63},{0,26.98}}" />
                        <Property Name="AutoResizeEnabled" Value="True" />
                        <Window Type="GWEN/MenuItem" >
                            <Property Name="Text" Value="Quit" />
                            <Property Name="UnifiedAreaRect" Value="{{0,5},{0,5},{0,58},{0,22}}" />
                            <Property Name="AutoPopupTimeout" Value="0" />
                        </Window>
                    </Window>
                </Window>
                <Window Type="GWEN/MenuItem" >
                    <Property Name="Text" Value="Demo" />
                    <Property Name="UnifiedAreaRect" Value="{{0,64},{0,0},{0,127},{0,17}}" />
                    <Property Name="AutoPopupTimeout" Value="0" />
                    <Property Name="VerticalAlignment" Value="Centre" />
                    <Window Type="GWEN/PopupMenu" >
                        <Property Name="Visible" Value="False" />
                        <Property Name="FadeInTime" Value="0" />
                        <Property Name="FadeOutTime" Value="0" />
                        <Property Name="ItemSpacing" Value="2" />
                        <Property Name="ClippedByParent" Value="False" />
                        <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{0,111},{0,45.9399}}" />
                        <Property Name="AutoResizeEnabled" Value="True" />
                        <Window Type="GWEN/MenuItem" >
                            <Property Name="Text" Value="New dialog" />
                            <Property Name="Tooltip" Value="Hotkey: Space" />
                            <Property Name="UnifiedAreaRect" Value="{{0,5},{0,5},{0,106},{0,22}}" />
                            <Property Name="AutoPopupTimeout" Value="0" />
                        </Window>
                        <Window Type="GWEN/MenuItem" >
                            <Property Name="Text" Value="Number Two" />
                            <Property Name="UnifiedAreaRect" Value="{{0,5},{0,24},{0,106},{0,41}}" />
                            <Property Name="AutoPopupTimeout" Value="0" />
                            <Window Type="GWEN/PopupMenu" >
                                <Property Name="Visible" Value="False" />
                                <Property Name="FadeInTime" Value="0" />
                                <Property Name="FadeOutTime" Value="0" />
                                <Property Name="ItemSpacing" Value="2" />
                                <Property Name="ClippedByParent" Value="False" />
                                <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{0,91},{0,26.98}}" />
                                <Property Name="AutoResizeEnabled" Value="True" />
                                <Window Type="GWEN/MenuItem" >
                                    <Property Name="Text" Value="Extended" />
                                    <Property Name="UnifiedAreaRect" Value="{{0,5},{0,5},{0,86},{0,22}}" />
                                    <Property Name="AutoPopupTimeout" Value="0" />
                                </Window>
                            </Window>
                        </Window>
                    </Window>
                </Window>
            </Window>
            <Window Type="GWEN/Tree" Name="root/StaticImage/Tree" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="UnifiedAreaRect" Value="{{0,630},{0,330},{0,830},{0,490}}" />
                <Property Name="ForceHorzScrollbar" Value="True" />
                <Property Name="ForceVertScrollbar" Value="True" />
                <AutoWindow NameSuffix="__auto_vscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_hscrollbar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <AutoWindow NameSuffix="__auto_incbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_decbtn__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                    <AutoWindow NameSuffix="__auto_thumb__" >
                        <Property Name="Font" Value="OpenSans-8" />
                    </AutoWindow>
                </AutoWindow>
            </Window>
            <Window Type="GWEN/FrameWindow" Name="root/StaticImage/FrameWindow" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="Text" Value="Disabled Frame Window" />
                <Property Name="Disabled" Value="True" />
                <Property Name="CaptionFont" Value="OpenSans-8" />
                <Property Name="TitlebarEnabled" Value="False" />
                <Property Name="UnifiedAreaRect" Value="{{0,345},{0,60},{0,545},{0,200}}" />
                <Property Name="CloseButtonEnabled" Value="False" />
                <AutoWindow NameSuffix="__auto_titlebar__" >
                    <Property Name="Font" Value="OpenSans-8" />
                    <Property Name="Text" Value="Disabled Frame Window" />
                </AutoWindow>
                <AutoWindow NameSuffix="__auto_closebutton__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/HorizontalSlider" Name="root/StaticImage/HorizontalSlider" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="CurrentValue" Value="0" />
                <Property Name="MaximumValue" Value="1" />
                <Property Name="ClickStepSize" Value="0.01" />
                <Property Name="UnifiedAreaRect" Value="{{0,215},{0,530},{0,385},{0,560}}" />
                <AutoWindow NameSuffix="__auto_thumb__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
            <Window Type="GWEN/HorizontalSlider" Name="root/StaticImage/HorizontalSlider2" >
                <Property Name="Font" Value="OpenSans-8" />
                <Property Name="CurrentValue" Value="0" />
                <Property Name="MaximumValue" Value="1" />
                <Property Name="ClickStepSize" Value="0.01" />
                <Property Name="UnifiedAreaRect" Value="{{0,215},{0,570},{0,385},{0,600}}" />
                <AutoWindow NameSuffix="__auto_thumb__" >
                    <Property Name="Font" Value="OpenSans-8" />
                </AutoWindow>
            </Window>
        </Window>
    </Window>
</GUILayout>

User avatar
CrazyEddie
CEGUI Project Lead
Posts: 6760
Joined: Wed Jan 12, 2005 12:06
Location: England
Contact:

Re: Ported GWEN Skin

Postby CrazyEddie » Tue Jan 10, 2012 12:21

Really nice work on the skin - I know it's no small feat to complete one of these, so kudos.

I have no ideas regarding the line (other than it likely being something specific to your setup) - do the samples have that issue too? If so it could be some driver issue, or some video setting.

CE.

HyperNexus
Just popping in
Just popping in
Posts: 5
Joined: Mon Jan 02, 2012 06:08

Re: Ported GWEN Skin

Postby HyperNexus » Tue Jan 10, 2012 13:27

The samples work perfectly without issue on both Ubuntu and Windows. I'll have a closer look into my setup.

pav
Not too shy to talk
Not too shy to talk
Posts: 37
Joined: Thu Dec 01, 2011 14:17

Re: Ported GWEN Skin

Postby pav » Wed Jan 11, 2012 11:30

This is great! Good job. :D

HyperNexus
Just popping in
Just popping in
Posts: 5
Joined: Mon Jan 02, 2012 06:08

Re: Ported GWEN Skin

Postby HyperNexus » Thu Jan 12, 2012 04:08

Kulik wrote:Could you send me your layout just in case this is some sort of a Z-fighting issue or something? (though I really really doubt that).

I've had a tinker around and I believe that it's a z ordering issue. Most of the widgets in the screen shot above have the problem because they are on top of a white static image. I put that image behind all the widgets because I couldn't change the background in CEED. When I remove the static image I no longer have an issue.

Mars_999
Not too shy to talk
Not too shy to talk
Posts: 30
Joined: Sun Sep 11, 2011 18:18

Re: Ported GWEN Skin

Postby Mars_999 » Fri Jan 27, 2012 16:55

Thank you so much! I wish others would help out the CEGUI community like this!!!

Again thank you!

gjaegy
Just popping in
Just popping in
Posts: 14
Joined: Thu Mar 04, 2010 12:18

Re: Ported GWEN Skin

Postby gjaegy » Tue Sep 04, 2012 10:12

Great job indeed !

Has anybody tried to convert it to the new upcoming CEGUI 1.0 format ? I have managed to convert the image set, however, I get an error when trying to convert the looknfeel file :(

Code: Select all

D:\temp\gwenskin>C:\develop\ceed-snapshot10\ceed-migrate.exe looknfeel looknfeel\_gwen.looknfeel looknfeel\gwen.looknfeel
abort: no repository found in 'D:\temp\gwenskin' (.hg not found)!

Starting migration!

Traceback (most recent call last):
  File "C:\Python27\lib\site-packages\cx_Freeze\initscripts\Console.py", line 27
, in <module>
  File "bin/ceed-migrate", line 79, in <module>
  File "bin/ceed-migrate", line 72, in main
  File "C:\Users\Martin Preisler\Devel\CEED\ceed\compatibility\__init__.py", lin
e 172, in transform
  File "C:\Users\Martin Preisler\Devel\CEED\ceed\compatibility\looknfeel\cegui.p
y", line 194, in transform
AttributeError: 'module' object has no attribute 'layout'


Any idea ?

Predator106
Just popping in
Just popping in
Posts: 1
Joined: Sun Jan 20, 2013 16:57

Re: Ported GWEN Skin

Postby Predator106 » Sun Jan 20, 2013 16:59

Got some help from the author to fix the migration script to work with the looknfeel files.

GWEN is now ported to 1.x, and I set up a repo for further contributions. Feel free to use it here and merge requests https://github.com/sreich/cegui-GWEN-default-theme

I'm also going to make a theme based off of it but colored differently, as this one is too Windowsy for my tastes. But that will be in a separate repo.

underworldguardian
Just popping in
Just popping in
Posts: 3
Joined: Fri Feb 13, 2015 11:11

Re: Ported GWEN Skin

Postby underworldguardian » Fri Sep 18, 2015 14:18

Since Predator106's repo is down, I ported the GWEN Skin again and provide it here to you:

https://github.com/benelot/CEGUI-GWEN-Skin

Feel free to use it here and merge requests to the repository.

-------------------------------------
Changelog:

- Added GWEN/Label to support a commonly used widget.


Return to “Skins and Themes”

Who is online

Users browsing this forum: No registered users and 12 guests