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

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE widgetcontainer SYSTEM "http://www.sigames.com/dtds/widgetcontainer.dtd">
  3.  
  4. <panel title="game date">
  5.  
  6.     <!-- formatting of date -->
  7.     <flags id="frmt">
  8.      [%date#1-day]<return/>[%date#1-short]<return/>[%date#1-time]
  9.     </flags>
  10.  
  11.     <!-- main box -->    
  12.     <widget class="group_box" id="!dbox">
  13.         <!-- nb. if this box has an id of "dbox" it will get hidden when         
  14.              the date isn't supposed to be visible
  15.              I've changed this to "!dbox" to stop this happening, because we always
  16.              want the picture to be visible
  17.         -->  
  18.         
  19.         
  20.         <!-- centre all content vertically inside this box -->
  21.         <layout class="centre_in_parent_attachment" alignment="vertical" inset="0" layout_children="true"/>
  22.         
  23.         <!-- stick this box to it's parent on all sides -->
  24.         <layout class="stick_to_sides_attachment" alignment="all" inset="0"/>
  25.  
  26.         <!-- date picture -->
  27.         <widget class="picture" id="dpic" file="logos/si_logo_faded" auto_size="all">
  28.             <!-- horizontally centred inside box -->
  29.             <layout class="centre_in_parent_attachment" alignment="horizontal" inset="0"/>
  30.         </widget>
  31.  
  32.         <!-- actual date text -->
  33.         <widget class="text" alignment="centre" id="date" spec="text, small">
  34.             <!-- sticks to horizontal sides of parent -->
  35.             <layout class="stick_to_sides_attachment" alignment="horizontal" inset="0"/>
  36.             
  37.             <!-- auto-sizes vertically -->
  38.             <flags id="auto_size" value="vertical"/>
  39.             
  40.             <!-- override text colour -->
  41.             <colour name="yellow"/>
  42.         </widget>
  43.     </widget>
  44.  
  45. </panel>