summaryrefslogtreecommitdiff
path: root/apps/wps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-11-14 14:27:15 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-11-14 14:27:15 +0000
commit5e883c36b1876f00ee6c1625018c30b1bd2ac275 (patch)
tree37ce56fda13cb643d110ed87efde9f6ddc721a8a /apps/wps
parent4dd2748b835fca619f4651b5c2ec4629f52776b1 (diff)
downloadrockbox-5e883c36b1876f00ee6c1625018c30b1bd2ac275.tar.gz
rockbox-5e883c36b1876f00ee6c1625018c30b1bd2ac275.zip
moved to /wps
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7860 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/wps')
-rw-r--r--apps/wps/WPSLIST14
-rw-r--r--apps/wps/ipodVOL.wps41
-rwxr-xr-xapps/wps/wpsbuild.pl55
3 files changed, 0 insertions, 110 deletions
diff --git a/apps/wps/WPSLIST b/apps/wps/WPSLIST
deleted file mode 100644
index dc4f2c2c4a..0000000000
--- a/apps/wps/WPSLIST
+++ /dev/null
@@ -1,14 +0,0 @@
1<wps>
2# Name of the WPS _including_ extension
3Name: ipodVOL.wps
4# Name of the creator of the WPS
5Author: xameius
6# prefered font:
7Font: chicago12.fnt
8# Weather the WPS is designed to have the statusbar present or not
9Statusbar: off
10# The minimum required pixel height for the WPS
11Height: 128
12# The minimum required pixel width for the WPS
13Width: 160
14</wps>
diff --git a/apps/wps/ipodVOL.wps b/apps/wps/ipodVOL.wps
deleted file mode 100644
index 7278ea2d47..0000000000
--- a/apps/wps/ipodVOL.wps
+++ /dev/null
@@ -1,41 +0,0 @@
1%xl|y|play.bmp|0|2|
2%xl|p|pause.bmp|0|2|
3%xl|h|hold.bmp|20|2|
4%xl|b|blank.bmp|20|2|
5%xl|r|rep.bmp|120|2|
6%xl|s|reps.bmp|120|2|
7%xl|t|rep1.bmp|120|2|
8%xl|x|repb.bmp|120|2|
9%xl|A|be.bmp|136|2|
10%xl|B|bqe.bmp|136|2|
11%xl|B|bh.bmp|136|2|
12%xl|D|bqf.bmp|136|2|
13%xl|E|bf.bmp|136|2|
14%xl|F|bfp.bmp|136|2|
15%xl|Q|vol0.bmp|139|18|
16%xl|R|vol1.bmp|139|18|
17%xl|S|vol2.bmp|139|18|
18%xl|T|vol3.bmp|139|18|
19%xl|U|vol4.bmp|139|18|
20%xl|V|vol5.bmp|139|18|
21%xl|W|vol6.bmp|139|18|
22%xl|X|vol7.bmp|139|18|
23%xl|Y|vol8.bmp|139|18|
24%xl|Z|vol9.bmp|139|18|
25%x|g|bg.bmp|0|0|
26
27%al%pp of %pe
28
29%s%ac%?it<%it|%fn>
30%s%t3%ac%?ia<%ia|%d2>
31%s%t3%ac%?id<%id|%d1>
32
33%pb
34%al%pc %ar-%pr
35%?mp<|%xdy|%xdp||>
36%?pv<%xdQ|%xdR|%xdS|%xdT|%xdU|%xdV|%xdW|%xdX|%xdY|%xdZ>
37%?mh<%xdh|%xdb>
38%?bp<%xdF|%?bl<%xdA|%xdB|%xdC|%xdD|%xdE>>
39%?mm<%xdx|%xdr|%xdt|%xds>
40
41
diff --git a/apps/wps/wpsbuild.pl b/apps/wps/wpsbuild.pl
deleted file mode 100755
index 2eb76c6b06..0000000000
--- a/apps/wps/wpsbuild.pl
+++ /dev/null
@@ -1,55 +0,0 @@
1#!/usr/bin/perl
2
3my $wpslist=$ARGV[0];
4
5if(!$wpslist) {
6 print "Usage: wpsbuilds.pl [WPSLIST]\n";
7 exit;
8}
9
10sub buildcfg {
11 my $cfg = $wps;
12
13 $cfg =~ s/\.wps/.cfg/;
14
15 open(CFG, ">$cfg");
16
17 print CFG <<MOO
18\# $cfg generated by wpsbuild.pl
19\#
20wps: /.rockbox/wps/$wps
21font: /.rockbox/fonts/$font
22statusbar: $statusbar
23MOO
24;
25 close(CFG);
26}
27
28open(WPS, "<$wpslist");
29while(<WPS>) {
30 my $l = $_;
31 if($l =~ /^ *\#/) {
32 # skip comment
33 next;
34 }
35 if($l =~ /^ *<wps>/i) {
36 $within = 1;
37 next;
38 }
39 if($within) {
40 if($l =~ /^ *<\/wps>/i) {
41 buildcfg();
42 $within = 0;
43 }
44 elsif($l =~ /^Name: (.*)/i) {
45 $wps = $1;
46 }
47 elsif($l =~ /^Font: (.*)/i) {
48 $font = $1;
49 }
50 elsif($l =~ /^Statusbar: (.*)/i) {
51 $statusbar = $1;
52 }
53 }
54}
55