summaryrefslogtreecommitdiff
path: root/apps/plugins/clock/clock_bitmaps.c
blob: 50c31806bcaaabee3852d6637a35620994a104d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2007 Copyright Kévin Ferrare
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/


#include "clock_bitmaps.h"

/* bitmaps */
#include "pluginbitmaps/clock_binary.h"
#include "pluginbitmaps/clock_digits.h"
#include "pluginbitmaps/clock_smalldigits.h"
#include "pluginbitmaps/clock_segments.h"
#include "pluginbitmaps/clock_smallsegments.h"

#include "pluginbitmaps/clock_logo.h"
#include "pluginbitmaps/clock_messages.h"

#if NB_SCREENS==2
#include "pluginbitmaps/clock_binary_remote.h"
#include "pluginbitmaps/clock_digits_remote.h"
#include "pluginbitmaps/clock_smalldigits_remote.h"
#include "pluginbitmaps/clock_segments_remote.h"
#include "pluginbitmaps/clock_smallsegments_remote.h"

#include "pluginbitmaps/clock_logo_remote.h"
#include "pluginbitmaps/clock_messages_remote.h"

#endif


const struct picture logos[]={
        {clock_logo, BMPWIDTH_clock_logo, BMPHEIGHT_clock_logo, 
                BMPHEIGHT_clock_logo},
#if NB_SCREENS==2
        {clock_logo_remote,BMPWIDTH_clock_logo_remote,
                BMPHEIGHT_clock_logo_remote, BMPHEIGHT_clock_logo_remote}
#endif
};

const struct picture messages[]={
    {clock_messages,BMPWIDTH_clock_messages, BMPHEIGHT_clock_messages, 
        BMPHEIGHT_clock_messages/6},
#if NB_SCREENS==2
    {clock_messages_remote,BMPWIDTH_clock_messages_remote, 
        BMPHEIGHT_clock_messages_remote, BMPHEIGHT_clock_messages_remote/6}
#endif
};

const struct picture binary[]={
    {clock_binary, BMPWIDTH_clock_binary, BMPHEIGHT_clock_binary, 
        BMPHEIGHT_clock_binary/2 },
#if NB_SCREENS==2
    {clock_binary_remote, BMPWIDTH_clock_binary_remote,
        BMPHEIGHT_clock_binary_remote, BMPHEIGHT_clock_binary_remote/2}
#endif
};

const struct picture digits[]={
    {clock_digits, BMPWIDTH_clock_digits, BMPHEIGHT_clock_digits, 
        BMPHEIGHT_clock_digits/13 },
#if NB_SCREENS==2
    {clock_digits_remote,
    BMPWIDTH_clock_digits_remote, BMPHEIGHT_clock_digits_remote,
        BMPHEIGHT_clock_digits_remote/13}
#endif
};

const struct picture smalldigits[]={
    {clock_smalldigits, BMPWIDTH_clock_smalldigits, BMPHEIGHT_clock_smalldigits, 
        BMPHEIGHT_clock_smalldigits/13 },
#if NB_SCREENS==2
    {clock_smalldigits_remote, BMPWIDTH_clock_smalldigits_remote, 
        BMPHEIGHT_clock_smalldigits_remote, 
        BMPHEIGHT_clock_smalldigits_remote/13}
#endif
};

const struct picture segments[]={
    {clock_segments, BMPWIDTH_clock_segments, BMPHEIGHT_clock_segments, 
        BMPHEIGHT_clock_segments/13 },
#if NB_SCREENS==2
    {clock_segments_remote, BMPWIDTH_clock_segments_remote, 
        BMPHEIGHT_clock_segments_remote, BMPHEIGHT_clock_segments_remote/13}
#endif
};

const struct picture smallsegments[]={
    {clock_smallsegments, BMPWIDTH_clock_smallsegments, 
        BMPHEIGHT_clock_smallsegments, BMPHEIGHT_clock_smallsegments/13 },
#if NB_SCREENS==2
    {clock_smallsegments_remote, BMPWIDTH_clock_smallsegments_remote,
        BMPHEIGHT_clock_smallsegments_remote, 
        BMPHEIGHT_clock_smallsegments_remote/13}
#endif
};