home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 November / Gamestar_67_2004-11_dvd.iso / Dema / footballmanager2005_betademo.exe / Data1.cab / _F7E6C0F9146247498C5857B7AF9EC7B2 < prev    next >
Extensible Markup Language  |  2004-08-30  |  1KB  |  29 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE panel SYSTEM "http://www.sigames.com/dtds/sios/panel.dtd">
  3.  
  4. <!-- an example panel -->
  5. <panel>
  6.     <!-- the panel has very simple content, just a label and a button arrange vertically
  7.          one below the other -->
  8.          
  9.     <!-- you specify the layout of the items with layout attachments -->
  10.     <!-- this is the trickiest bit of the whole process -->
  11.     
  12.     <!-- first, we tell this container to lay out its content from top to bottom -->
  13.     <layout class="arrange_vertical_attachment" alignment="top"/>
  14.     
  15.     <!-- then we tell it to make sure that all of its content sticks to the -->
  16.     <!-- left hand edge of the panel -->
  17.     <layout class="stick_to_sides_attachment" alignment="left" layout_children="true"/>
  18.     
  19.     
  20.     <!-- this is where we actually create the widgets which form the content of the panel -->
  21.     
  22.     <!-- first, a label -->
  23.     <!-- we will leave its text blank, because we're going to set it from code -->
  24.     <widget class="label" id="exlb" auto_size="horizontal"/>
  25.     
  26.     <!-- then a button -->
  27.     <!-- the name of the button won't change, so it's best to set it in XML -->
  28.     <widget class="action_button" id="exbt" text="Example Button"/>
  29. </panel>