New makefile solution: A single invocation of 'make' to build the entire tree. Fully...
[kugel-rb.git] / apps / plugins / clock / clock_bitmaps.c
blobc237a290ec8b8077f6142c0fbbb01394f257ef3c
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id: jackpot.c 14034 2007-07-28 05:42:55Z kevin $
10 * Copyright (C) 2007 Copyright Kévin Ferrare
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
23 #include "clock_bitmaps.h"
25 /* bitmaps */
26 #include "pluginbitmaps/clock_binary.h"
27 #include "pluginbitmaps/clock_digits.h"
28 #include "pluginbitmaps/clock_smalldigits.h"
29 #include "pluginbitmaps/clock_segments.h"
30 #include "pluginbitmaps/clock_smallsegments.h"
32 #include "pluginbitmaps/clock_logo.h"
33 #include "pluginbitmaps/clock_messages.h"
35 #if NB_SCREENS==2
36 #include "pluginbitmaps/clock_binary_remote.h"
37 #include "pluginbitmaps/clock_digits_remote.h"
38 #include "pluginbitmaps/clock_smalldigits_remote.h"
39 #include "pluginbitmaps/clock_segments_remote.h"
40 #include "pluginbitmaps/clock_smallsegments_remote.h"
42 #include "pluginbitmaps/clock_logo_remote.h"
43 #include "pluginbitmaps/clock_messages_remote.h"
45 #endif
48 const struct picture logos[]={
49 {clock_logo, BMPWIDTH_clock_logo, BMPHEIGHT_clock_logo},
50 #if NB_SCREENS==2
51 {clock_logo_remote,BMPWIDTH_clock_logo_remote,BMPHEIGHT_clock_logo_remote}
52 #endif
55 const struct picture messages[]={
56 {clock_messages,BMPWIDTH_clock_messages,
57 BMPHEIGHT_clock_messages/6},
58 #if NB_SCREENS==2
59 {clock_messages_remote,BMPWIDTH_clock_messages_remote,
60 BMPHEIGHT_clock_messages_remote/6}
61 #endif
64 const struct picture binary[]={
65 {clock_binary,
66 BMPWIDTH_clock_binary, BMPHEIGHT_clock_binary/2 },
67 #if NB_SCREENS==2
68 {clock_binary_remote,
69 BMPWIDTH_clock_binary_remote,BMPHEIGHT_clock_binary_remote/2}
70 #endif
73 const struct picture digits[]={
74 {clock_digits,
75 BMPWIDTH_clock_digits, BMPHEIGHT_clock_digits/13 },
76 #if NB_SCREENS==2
77 {clock_digits_remote,
78 BMPWIDTH_clock_digits_remote,BMPHEIGHT_clock_digits_remote/13}
79 #endif
82 const struct picture smalldigits[]={
83 {clock_smalldigits,
84 BMPWIDTH_clock_smalldigits, BMPHEIGHT_clock_smalldigits/13 },
85 #if NB_SCREENS==2
86 {clock_smalldigits_remote,
87 BMPWIDTH_clock_smalldigits_remote,BMPHEIGHT_clock_smalldigits_remote/13}
88 #endif
91 const struct picture segments[]={
92 {clock_segments,
93 BMPWIDTH_clock_segments, BMPHEIGHT_clock_segments/13 },
94 #if NB_SCREENS==2
95 {clock_segments_remote,
96 BMPWIDTH_clock_segments_remote,BMPHEIGHT_clock_segments_remote/13}
97 #endif
100 const struct picture smallsegments[]={
101 {clock_smallsegments,
102 BMPWIDTH_clock_smallsegments, BMPHEIGHT_clock_smallsegments/13 },
103 #if NB_SCREENS==2
104 {clock_smallsegments_remote,
105 BMPWIDTH_clock_smallsegments_remote,BMPHEIGHT_clock_smallsegments_remote/13}
106 #endif