Update of /cvsroot/freevo/freevo/skins/xml/type1
In directory sc8-pr-cvs1:/tmp/cvs-serv10564

Modified Files:
        README 
Added Files:
        blue1_big.fxd blue1_big.png blue1_small.fxd blue1_small.png 
        blue2.fxd blue_round1.fxd blue_round1.png grey1.fxd 
Log Message:
Moved all xml files for the dischi1 skin to this directory and named them
fxd to avoid conflicts.


--- NEW FILE: blue1_big.fxd ---
<?xml version="1.0" ?>
<freevo>
  
  <skin geometry="800x600">
    <iconset dir="skins/icons/AquaFusion"/>

    <!-- Items of the main menu (will change soon) -->
    <main>        
      <item label="tv"    name="TV"     icon="tv.png"/>
      <item label="video" name="Movies" icon="movies.png"/>
      <item label="audio" name="Music"  icon="mp3.png"/>
      <item label="image" name="Images" icon="images.png"/>
      <item label="games" name="Games"  icon="package_games.png"/>
      <item label="shutdown" name="Shutdown" icon="shutdown.png"/>
    </main>
    
    <!-- SKIN DEFINITION -->

    <!-- 
    At the beginning there are the menu definitions. A menu has a type for
    the different types of media: video/audio/image/games, main for the
    main menu and default for all the other menus. The type 'all' will
    delete all existing special definitions. Inside the tag are different
    styles which can be toggled with the DISPLAY key in Freevo. If an
    image definition is present, it will be used except when all items
    have the same or no image
    -->
    <menu type="all">
      <style text="normal text style"/>
    </menu>

    <!-- this points to a menu for the main menu -->
    <menu type="main">
      <style text="main menu"/>
    </menu>

    <!-- 
    After defining which menu style to use for which item, we need to define
    how the areas of each menuset look like. A menuset has a label (used by
    menu) and the geometry and names for the five areas
    -->
    <menuset label="normal text style">

      <!-- 1. screen: the complete background area -->
      <screen layout="screen0" x="0" y="0" width="800" height="600"/>

      <!-- 2. title: the area where the title of the menu (e.g. directory name -->
      <!-- will be displayed -->
      <title layout="title0" x="10" y="10" width="780" height="60"/> 

      <!-- 3. view area: the cover image for audio/video, a thumbnail for image -->
      <view layout="view0" x="580" y="110" width="200" height="300"/> 

      <!-- 4. listing area: the list of all items -->
      <listing layout="list0" x="45" y="110" width="515" height="470">
        <image x="10" y="110" width="32" height="32" label="uparrow" 
          filename="up.png"/>
        <image x="10" y="544" width="32" height="32" label="downarrow" 
          filename="down.png"/>
      </listing>
      <!-- 5. info area: additional info. This area is invisible in the default -->
      <!-- menu, it's only visible in the extended menus -->
      <info visible="no"/>
    </menuset>


    <!-- Now the main menu -->
    <menuset label="main menu">
      <screen layout="screen0" x="0" y="0" width="800" height="600"/>
      <listing layout="list_main" x="230" y="120" width="380" height="390"/>

      <!-- disables info, view and title area. -->
      <view visible="no"/>
      <info visible="no"/>
      <title visible="no"/>
    </menuset>


    <!--
    **********************************************
    LAYOUT DEFINITIONS 
    **********************************************

    The menus defined a layout to use. Now here are the definitions of the 
    layouts. Based on the type of area, some attributes have no effect
    (e.g. the background has no content

    -->


    <!-- The background for the screen. By redefining layout label=screen0 you -->
    <!-- can change only the background image -->
    <layout label="screen0">
      <background>
        <!-- an image with the label background will ignore OVERSCAN settings -->
        <!-- in freevo to make sure the complete screen is filled -->
        <image filename="aubin_bg2" x="0" y="0" label="background"/>
        <image filename="logo.png" x="10" y="0" width="200" height="98"/>
      </background>
    </layout>

    <!-- title -->
    <layout label="title0">
      <content x="210" type="menu" font="title" align="center"/>
    </layout>

    <!-- default listing area -->
    <layout label="list0">
      <content type="text" spacing="2">
        <item type="default" font="item"/>
        <item type="selected" font="selected">
          <rectangle bgcolor="selection" size="0" x="-5" y="-3" width="max+10"
            height="max+6"/>
        </item>
      </content>
    </layout>

    <!-- default view area -->
    <layout label="view0">
      <content align="center" valign="top">
        <item type="default">
          <rectangle size="1" x="-1" y="-1" width="max+2" height="max+2"/>
        </item>
      </content>
    </layout>


    <!-- main menu listing area -->
    <layout label="list_main">
      <content type="text" spacing="10">
        <item type="default" font="main"/>
        <item type="selected" font="main selected">
          <rectangle bgcolor="selection" size="0" y="-5" x="-10"
            width="max+20" height="max+10"/>
        </item>
      </content>
    </layout>


    <!--
    **********************************************
    FONT DEFINITIONS 
    **********************************************

    Now the font definitions. Inherited skins like blue1_small only redefines
    the fonts and the rest will be untouched. It's easy to change the fonts a
    skin uses without changing anything in the layout

    -->

    <font label="title" name="Arial_Bold" size="35" color="0xffffff"/>
    <font label="item" name="Arial_Bold" size="20" color="0xdddddd"/>
    <font label="selected" name="Arial_Bold" size="20" color="0xffffff"/>
    <font label="main" name="Arial_Bold" size="35" color="0xdddddd"/>
    <font label="main selected" name="Arial_Bold" size="35" color="0xffffff"/>
    <font label="default" name="Arial_Bold" size="20" color="0xffffff"/>

    <!--
    **********************************************
    COLOR DEFINITIONS 
    **********************************************

    -->

    <color label="selection" value="0xa0000000"/>

    <!--
    **********************************************
    POPUP DEFINITIONS 
    
    A popup definition is only a link to a specific layout, like menu areas

    -->

    <popup type="default" layout="popup"/>

    <layout label="popup">
      <background>
        <rectangle color="0x000000" size="1" bgcolor="0xa0000000"/>
      </background>
      <content type="text" spacing="10" color="0xffffff" font="default">
        <item type="default" font="default">
          <rectangle bgcolor="0xa0000000" size="0"/>
        </item>
        <item type="selected" font="default">
          <rectangle bgcolor="0xa0ffffff" size="0"/>
        </item>
      </content>
    </layout>



    <!--
    **********************************************
    AUDIO PLAYER DEFINITIONS

    The audio player is very similar to the menu. It has four areas (screen,
    title, view and info), each area has a layout. The only difference is, that
    there is no listing area and no types (it's always type audio)

    -->
    
    <player>
      <screen layout="player screen" x="0" y="0" width="800" height="600"/>
      <view layout="player view" x="430" y="200" width="420" height="360"/> 
      <info layout="player info" x="-50" y="80" width="550" height="300"/> 
      <title visible="no"/>
    </player>

    <font label="player" name="Arial_Bold" size="20" color="0xffffff"/>

    <layout label="player screen">
      <background>
        <image filename="aubin_bg2" x="0" y="0" label="background"/>
      </background>
    </layout>

    <layout label="player view">
      <content type="text" spacing="10">
        <item type="default">
          <rectangle size="0" bgcolor="0x80000000" radius="10" x="-15" y="-15"
            width="max+80" height="max+30"/>
        </item>
      </content>
    </layout>

    <layout label="player info">
      <background>
        <rectangle size="0" bgcolor="0x80000000" radius="10" width="max"/>
      </background>
      <content x="55" y="10" height="max-20" width="max-90" type="text"
        spacing="10" font="player">
        <item type="default">
          Title:   [EMAIL PROTECTED]@
          Artist:  [EMAIL PROTECTED]@
          Album:   [EMAIL PROTECTED]@ (@year@)
          Track:   [EMAIL PROTECTED]@
          
          Length:  [EMAIL PROTECTED]@
          Elapsed: [EMAIL PROTECTED]@
        </item>
      </content>
    </layout>


    <!--
    **********************************************
    TV DEFINITIONS

    -->
    
    <tv>
      <screen layout="tv screen" x="0" y="0" width="800" height="600"/>
      <info layout="tv info" x="10" y="10" width="780" height="190"/>
      <listing layout="tv listing" x="10" y="220" width="750" height="370"> 
        <image x="765" y="220" width="32" height="32" label="uparrow" 
          filename="up.png"/>
        <image x="765" y="544" width="32" height="32" label="downarrow" 
          filename="down.png"/>
      </listing>
      <title visible="no"/>
    </tv>

    <font label="tv" name="Arial_Bold" size="20" color="0xffffff"/>
    <font label="tv selected" name="Arial_Bold" size="20" color="0xffff66">
      <shadow visible="yes" color="0x000000" x="1" y="1"/>
    </font>

    <layout label="tv screen">
      <background>
        <image filename="aubin_bg2" x="0" y="0" label="background"/>
      </background>
    </layout>

    <!-- tv listing area -->
    <layout label="tv listing">
      <content type="text" spacing="0">

        <item type="label" font="tv" width="100">
          <rectangle bgcolor="0x88000066" size="1" color="0x000000" x="-5" y="-5"
            width="max+10" height="max+10"/>
        </item>

        <item type="head" font="tv">
          <rectangle bgcolor="0x88000066" size="1" color="0x000000" x="-5" y="-5"
            width="max+10" height="max+10"/>
        </item>

        <item type="default" font="tv">
          <rectangle bgcolor="0xff000000" color="0x000000" size="1" x="-5"
            y="-5" width="max+10" height="max+10"/>
        </item>

        <item type="selected" font="tv selected">
          <rectangle bgcolor="0x88ffffff" size="1" color="0x000000" x="-5"
            y="-5" width="max+10" height="max+10"/>
        </item>

      </content>
    </layout>

    <!-- tv listing area -->
    <layout label="tv info">
      <background>
        <rectangle size="0" bgcolor="0x80000000" radius="10" width="max"/>
      </background>
      <content x="10" y="10" height="max-20" width="max-20" type="text"
        spacing="10" font="tv">
        <item type="default">
          @title@
          @start@ - @stop@

          @desc@
        </item>
      </content>
    </layout>

  </skin>
</freevo>

--- NEW FILE: blue1_big.png ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: blue1_small.fxd ---
<?xml version="1.0" ?>
<freevo>

  <!-- 
  this skin is very simple. It's the same as blue1_big.xml,
  only the fonts are smaller
   -->

  <skin include="blue1_big" geometry="800x600">

    <!--
    This skin only redefines the font sizes for each font
    blue1_big defines, that's it
    -->

    <font label="title" size="30"/>
    <font label="item" size="16"/>
    <font label="selected" size="16"/>
    <font label="main" size="30"/>
    <font label="main selected" size="30"/>
    <font label="default" size="16"/>
    <font label="tv" size="16"/>
    <font label="player" size="16"/>
    <font label="tv selected" size="16"/>

  </skin>
</freevo>

--- NEW FILE: blue1_small.png ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: blue2.fxd ---
<?xml version="1.0" ?>
<freevo>
  
  <skin include="blue1_small" geometry="800x600">

    <!-- special settings for audio. The default style is an image based style -->
    <!-- with an info area. By pressing DISPLAY this can be toggled to the default 
view -->
    <menu type="audio">
      <style image="audio menu with info"/>
      <style text="normal text style"/>
    </menu>

    <menu type="video">
      <style image="video menu with info"/>
      <style text="normal text style"/>
      <style image="video details"/>
    </menu>

    <menu type="image">
      <style image="image menu with info"/>
      <style text="normal text style"/>
    </menu>

    
    <!-- Now the "audio menu with info" used by audio-->
    <menuset label="audio menu with info">
      <screen layout="screen0" x="0" y="0" width="800" height="600"/>
      <title layout="title0" x="10" y="10" width="780" height="60"/>
      <subtitle layout="title1" x="40" y="100" width="470" height="40"/>

      <listing layout="audio list" x="40" y="140" width="540" height="240">
        <image label="uparrow" x="5" y="150" width="32" height="32"  
          filename="up.png"/>
        <image label="downarrow" x="5" y="348" width="32" height="32"
          filename="down.png"/>
      </listing>

      <view layout="view0" x="590" y="160" width="200" height="300"/>
      <info layout="info" x="40" y="410" width="760" height="170"/>
    </menuset>

    <!-- The "video menu with info" is like the audio one, except a different -->
    <!-- listing area label -->
    <menuset label="video menu with info" inherits="audio menu with info">
      <listing layout="video list" height="340">
        <image label="downarrow" y="363" filename="down.png"/>
      </listing>
      <view y="120"/>
      <info y="430" height="160"/>
    </menuset>

    <menuset label="image menu with info" inherits="audio menu with info">
      <subtitle visible="no"/>
      <listing x="10" y="100" height="350" width="780" layout="image list">
        <image label="uparrow" x="750" y="102"  height="24" width="24"/>
        <image label="downarrow" x="750" y="422" height="24" width="24"/>
      </listing>
      <view visible="no"/>
      <info y="480" height="110"/>
    </menuset>

    <!-- Now the "video details" (DISPLAY 3 for video)-->
    <menuset label="video details">
      <screen layout="screen0" x="0" y="0" width="800" height="600"/>
      <title layout="title1" x="10" y="100" width="780" height="60"/>

      <listing layout="video list" x="500" y="430" width="290" height="160">
        <image label="uparrow" x="755" y="150" width="32" height="32" 
filename="up.png"/>
        <image label="downarrow" x="755" y="378" width="32" height="32" 
filename="down.png"/>
      </listing>

      <view layout="view0" x="545" y="150" width="200" height="300"/>
      <info layout="video info" x="10" y="160" width="480" height="490"/>
    </menuset>

    <layout label="title1">
      <content type="short item" font="title small" align="left"/>
    </layout>

    <font label="title small" name="Arial_Bold" size="22" color="0xffffff"/>

    <!-- info area -->
    <layout label="info">
      <content x="0" y="0" type="text" spacing="20" font="default">
        <item type="audio">
          Title:   [EMAIL PROTECTED]@
          Artist:  [EMAIL PROTECTED]@
          Album:   [EMAIL PROTECTED]@ (@year@)
          Track:   [EMAIL PROTECTED]@
        </item>
        <item type="video">
          @tagline@

          @plot@
        </item>
        <item type="image">
          Title:    [EMAIL PROTECTED]@
          Geometry: [EMAIL PROTECTED]@[EMAIL PROTECTED]@
          Date:     [EMAIL PROTECTED]@

          @description@
        </item>
        <item type="dir">
          Directory: [EMAIL PROTECTED]@
        </item>
        <item type="playlist">
          This is a playlist.
        </item>
      </content>
    </layout>

    <!-- info area -->
    <layout label="video info">
      <content x="0" y="0" type="text" spacing="20" font="default">
        <item type="video">
          @tagline@

          @plot@

          Genre:   [EMAIL PROTECTED]@
          Rating:  [EMAIL PROTECTED]@
          Runtime: [EMAIL PROTECTED]@
        </item>
        <item type="dir">
          Directory: [EMAIL PROTECTED]@
        </item>
      </content>
    </layout>


    <!-- listing area for audio with images -->
    <layout label="audio list">
      <content x="0" y="0" type="image" spacing="-2">
        <item type="default" width="100" height="100" align="center" valign="center"/>
        <item type="selected" width="100" height="100" align="center" valign="center">
          <rectangle bgcolor="selection" size="0" x="-10" y="-10" width="max+20"
            height="max+20"/>
        </item>
      </content>
    </layout>

    <!-- listing area for video with images -->
    <layout label="video list">
      <content type="image" spacing="-2">
        <item type="default" width="80" height="112" align="center" valign="center"/>
        <item type="selected" width="87" height="122" align="center" valign="center">
          <rectangle bgcolor="selection" size="0" x="-5" y="-5" width="max+10"
            height="max+10"/>
        </item>
      </content>
    </layout>

    <!-- listing area for image with images (preview) -->
    <layout label="image list">
      <background>
        <rectangle color="0x000000" size="1" bgcolor="0xa0000000" radius="5"/>
      </background>
      <content type="image+text" spacing="-16" align="center" valign="center">
        <item type="default" width="120" height="90" font="item" align="center"
          valign="center"/>
        <item type="selected" width="198" height="126" font="selected"
          align="center" valign="center">
          <rectangle bgcolor="0xa0ffffff" size="0" x="-3" y="-3" width="max+6" 
radius="5"
            height="max+6"/>
        </item>
      </content>
    </layout>

  </skin>
</freevo>

--- NEW FILE: blue_round1.fxd ---
<?xml version="1.0" ?>
<freevo>

  <!-- 
  This is the blue round 1 skin
  It includes blue_round1 for the background, some fonts and the main
  menu style
   -->

  <skin include="blue1_small" geometry="800x600">

    <!-- Redefine of the type default -->
    <menuset label="normal text style">
      <!-- screen0 is already defined in blue1_big -->
      <screen layout="screen0"/>

      <!-- 
      title0 is already defined in blue1_big, but there will
      is a new definition of the font from the layout (white big)
      -->
      <title layout="title0" x="10" y="10" width="780" height="60"/> 
      <view layout="view0" x="545" y="90" width="245" height="450"/> 
      <listing layout="transparent listing" x="10" y="130" width="550" height="450">
        <image x="15" y="135" width="16" height="16" label="uparrow" 
          filename="../icons/AquaFusion/up.png"/>
        <image x="15" y="560" width="16" height="16" label="downarrow" 
          filename="../icons/AquaFusion/down.png"/>
      </listing>
      <info visible="no"/>
    </menuset>

    <!-- 
    the main menu isn't redefined, the area is the same.
    But there is a new define of list_main later 
    -->

    <!-- ********************************************** -->
    <!-- LAYOUT DEFINITIONS -->


    <layout label="view0">
      <content align="left" valign="top">
        <item type="default">
          <rectangle size="0" bgcolor="0x80000000" radius="10" x="-15" y="-15"
            width="max+30" height="max+30"/>
        </item>
      </content>
    </layout>
    
    <!-- default listing area -->
    <layout label="transparent listing">
      <background>
        <rectangle size="0" bgcolor="0x80000000" radius="10" width="max"/>
      </background>
      <content x="20" y="25" width="max-40" height="max-50" type="text"
        spacing="-1">
        <item type="default" font="white shadow1"/>
        <item type="selected" font="white shadow1">
          <rectangle bgcolor="0xff000000" size="0" x="-5" y="-3" width="max+10"
            height="max+6" radius="5"/>
        </item>
      </content>
    </layout>


    <!-- redefine the main menu listing area -->
    <layout label="list_main">
      <content type="text" spacing="10">
        <item type="default" font="white shadow1 big"/>
        <item type="selected" font="white shadow3 big">
          <rectangle bgcolor="0xa0000000" size="0" y="-5" x="-10"
            width="max+20" height="max+10" radius="5"/>
        </item>
      </content>
    </layout>

    <!-- ********************************************** -->
    <!-- FONT DEFINITIONS -->

    <font label="white shadow1" name="bluehigh" color="0xffffff" size="20">
      <shadow visible="yes" color="0x00000000" x="1" y="1"/>
    </font>

    <font label="white shadow1 big" name="bluehigh" size="44" color="0xffffff">
      <shadow visible="yes" color="0xaa000000" x="1" y="1"/>
    </font>

    <font label="white shadow3 big" name="bluehigh" size="44" color="0xffffff">
      <shadow visible="yes" color="0x000000" x="3" y="3"/>
    </font>

    <!-- this font is used by the title -->
    <font label="title" name="oliversb" size="29" color="0xffffff">
      <shadow visible="yes" color="0x80000000" x="3" y="3"/>
    </font>

  </skin>
</freevo>

--- NEW FILE: blue_round1.png ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: grey1.fxd ---
<?xml version="1.0" ?>
<freevo>

  <skin include="blue1_big" geometry="800x600">

    <menuset label="normal text style">
      <listing height="400">
        <image label="downarrow" x="10" y="544"/>
        <image label="uparrow" x="50" y="544"/>
      </listing>
    </menuset>

    <layout label="screen0">
      <background>
        <image filename="../images/aubin_bg1" x="0" y="0" label="background"/>
      </background>
    </layout>

    <layout label="title0">
      <content x="0" type="menu" font="title" align="center"/>
    </layout>

    <color label="selection" value="0xa0000033"/>

    <font label="item" name="bluehigh" size="18" color="0x000000"/>
    <font label="title" name="oliversb" size="36" color="0x000000"/>
    <font label="default" name="bluehigh" size="18" color="0x000000"/>

    <font label="selected" name="bluehigh" size="18" color="0xffffff">
      <shadow visible="yes" color="0x000000" x="1" y="1"/>
    </font>

    <font label="main" name="neuropol" size="32" color="0x38474c">
      <shadow visible="yes" color="0x000000" x="1" y="1"/>
    </font>

    <font label="main selected" name="neuropol" size="32" color="0xffffff">
      <shadow visible="yes" color="0x000000" x="1" y="1"/>
    </font>

  </skin>
</freevo>

Index: README
===================================================================
RCS file: /cvsroot/freevo/freevo/skins/xml/type1/README,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** README      26 Oct 2002 12:25:29 -0000      1.1
--- README      23 Mar 2003 19:47:01 -0000      1.2
***************
*** 4,7 ****
--- 4,12 ----
  a skin. All other skins inherit for one of these. 
  
+ |  IMPORTANT:
+ |  
+ |  the xml files are for the main1 skin, the fxd files for the new
+ |  dischi1 skin.
+ 
  Developers: if you update/add some global stuff, please update these
  skins to auto-update all others skins. If you want to update a




-------------------------------------------------------
This SF.net email is sponsored by:Crypto Challenge is now open! 
Get cracking and register here for some mind boggling fun and 
the chance of winning an Apple iPod:
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to