]> git.sesse.net Git - vlc/blob - share/skins2/winamp2.xml
* winamp2.xml: added the volume slider
[vlc] / share / skins2 / winamp2.xml
1 <!DOCTYPE Theme PUBLIC "-//VideoLAN//DTD VLC Skins V2.0//EN" "skins.dtd">
2
3 <Theme version="2.0" magnet="9" alpha="255">
4     <ThemeInfo name="Winamp2" author="Cyril Deguet"/>
5
6     <Bitmap id="main" file="main.bmp" alphacolor="#FF0000" />
7     <Bitmap id="cbuttons" file="cbuttons.bmp" alphacolor="#FF0000">
8        <SubBitmap id="previous_up" x="0" y="0" width="23" height="18" />
9        <SubBitmap id="previous_down" x="0" y="18" width="23" height="18" />
10        <SubBitmap id="play_up" x="23" y="0" width="23" height="18" />
11        <SubBitmap id="play_down" x="23" y="18" width="23" height="18" />
12        <SubBitmap id="pause_up" x="46" y="0" width="23" height="18" />
13        <SubBitmap id="pause_down" x="46" y="18" width="23" height="18" />
14        <SubBitmap id="stop_up" x="69" y="0" width="23" height="18" />
15        <SubBitmap id="stop_down" x="69" y="18" width="23" height="18" />
16        <SubBitmap id="next_up" x="92" y="0" width="22" height="18" />
17        <SubBitmap id="next_down" x="92" y="18" width="22" height="18" />
18        <SubBitmap id="eject_up" x="114" y="0" width="22" height="16" />
19        <SubBitmap id="eject_down" x="114" y="16" width="22" height="16" />
20     </Bitmap>
21     <Bitmap id="posbar" file="posbar.bmp" alphacolor="#FF0000" >
22        <SubBitmap id="time_bg" x="0" y="0" width="248" height="10" />
23        <SubBitmap id="time_up" x="248" y="0" width="29" height="10" />
24        <SubBitmap id="time_down" x="278" y="0" width="29" height="10" />
25     </Bitmap>
26     <Bitmap id="titlebar" file="titlebar.bmp" alphacolor="#FF0000" >
27        <SubBitmap id="quit_up" x="18" y="0" width="9" height="9" />
28        <SubBitmap id="quit_down" x="18" y="9" width="9" height="9" />
29     </Bitmap>
30     <Bitmap id="shufrep" file="shufrep.bmp" alphacolor="#FF0000">
31        <SubBitmap id="noloop_up" x="0" y="0" width="28" height="15" />
32        <SubBitmap id="noloop_down" x="0" y="15" width="28" height="15" />
33        <SubBitmap id="loop_up" x="0" y="30" width="28" height="15" />
34        <SubBitmap id="loop_down" x="0" y="45" width="28" height="15" />
35        <SubBitmap id="noshuffle_up" x="28" y="0" width="47" height="15" />
36        <SubBitmap id="noshuffle_down" x="28" y="15" width="47" height="15" />
37        <SubBitmap id="shuffle_up" x="28" y="30" width="47" height="15" />
38        <SubBitmap id="shuffle_down" x="28" y="45" width="47" height="15" />
39     </Bitmap>
40     <Bitmap id="volume" file="volume.bmp" alphacolor="#FF0000">
41        <SubBitmap id="volume_bg" x="0" y="405" width="68" height="13" />
42        <SubBitmap id="volume_up" x="0" y="422" width="14" height="11" />
43        <SubBitmap id="volume_down" x="15" y="422" width="14" height="11" />
44     </Bitmap>
45     <BitmapFont id="digits_font" file="numbers.bmp" type="digits"/>
46     <BitmapFont id="digits_font" file="nums_ex.bmp" type="digits"/>
47     <BitmapFont id="text_font" file="text.bmp" type="text"/>
48
49     <Window id="mainWindow" x="400" y="50">
50         <Layout id="bigLayout" width="275" height="116">
51             <Group x="0" y="0">
52                 <Image x="0" y="0" image="main" action="move" />
53                 <Text font="digits_font" x="30" y="26" width="75" text="$T"/>
54                 <Text font="text_font" x="111" y="27" width="155" text="$N"/>
55                 <Image x="107" y="57" image="volume_bg"/>
56                 <Slider value="volume" up="volume_up" down="volume_down" points="(114,63),(165,63)" tooltiptext="Volume: $V%" />
57                 <Image x="15" y="72" image="time_bg"/>
58                 <Slider value="time" up="time_up" down="time_down" points="(30,78),(250,78)" thickness="5" tooltiptext="Time: $T"/>
59                 <Button x="263"  y="3" up="quit_up"  down="quit_down" over="quit_up" action="vlc.quit()" tooltiptext="Quit" />
60                 <Button x="16"  y="88" up="previous_up"  down="previous_down"  action="playlist.previous()" tooltiptext="Previous" />
61                 <Button x="39"  y="88" up="play_up"  down="play_down"  action="vlc.play()" tooltiptext="Play" />
62                 <Button x="62"  y="88" up="pause_up"  down="pause_down"  action="vlc.pause()" tooltiptext="Pause" />
63                 <Button x="85"  y="88" up="stop_up"  down="stop_down"  action="vlc.stop()" tooltiptext="Stop" />
64                 <Button x="108"  y="88" up="next_up"  down="next_down"  action="playlist.next()" tooltiptext="Next" />
65                 <Button x="136"  y="88" up="eject_up"  down="eject_down"  action="dialogs.fileSimple()" tooltiptext="Open" />
66                 <Checkbox x="164"  y="89" up1="noshuffle_up" down1="noshuffle_down" up2="shuffle_up" down2="shuffle_down" state="playlist.isRandom" action1="playlist.setRandom(true)" action2="playlist.setRandom(false)" tooltiptext1="Shuffle" tooltiptext2="Shuffle"/>
67                 <Checkbox x="210"  y="89" up1="noloop_up" down1="noloop_down" up2="loop_up" down2="loop_down" state="playlist.isLoop" action1="playlist.setLoop(true)" action2="playlist.setLoop(false)" tooltiptext1="Loop" tooltiptext2="Loop"/>
68             </Group>
69         </Layout>
70     </Window>
71
72 </Theme>