summaryrefslogtreecommitdiffstats
path: root/apps/recorder/widgets.c
blob: dae9e58b32eaca3a21342310db2914e0a5ce2d9a (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id: not checked in
 *
 * Copyright (C) 2002 Markus Braun
 *
 * All files in this archive are subject to the GNU General Public License.
 * See the file COPYING in the source tree root for full license agreement.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#include <lcd.h>

#include "widgets.h"

#ifdef HAVE_LCD_BITMAP
/*
 * Print a progress bar
 */
void progressbar(int x, int y, int width, int height, int percent, int direction)
{
    int pos;

    /* draw box */
    lcd_drawrect(x, y, width, height);

    /* clear edge pixels */
    lcd_clearpixel(x, y);
    lcd_clearpixel((x + width - 1), y);
    lcd_clearpixel(x, (y + height - 1));
    lcd_clearpixel((x + width - 1), (y + height - 1));

    /* clear pixels in progress bar */
    lcd_clearrect(x + 1, y + 1, width - 2, height - 2);

    /* draw bar */
    pos = percent;
    if(pos < 0)
        pos = 0;
    if(pos > 100)
        pos = 100;

    switch (direction)
    {
        case Grow_Right:
            pos=(width - 2) * pos / 100;
            lcd_fillrect(x + 1, y + 1, pos, height - 2);
            break;
        case Grow_Left:
            pos=(width - 2) * (100 - pos) / 100;
            lcd_fillrect(x + pos, y + 1, width - 1 - pos, height - 2);
            break;
        case Grow_Down:
            pos=(height - 2) * pos / 100;
            lcd_fillrect(x + 1, y + 1, width - 2, pos);
            break;
        case Grow_Up:
            pos=(height - 2) * (100 - pos) / 100;
            lcd_fillrect(x + 1, y + pos, width - 2, height - 1 - pos);
            break;
    }
}


/*
 * Print a slidebar bar
 */
void slidebar(int x, int y, int width, int height, int percent, int direction)
{
    int pos;

    /* draw box */
    lcd_drawrect(x, y, width, height);

    /* clear edge pixels */
    lcd_clearpixel(x, y);
    lcd_clearpixel((x + width - 1), y);
    lcd_clearpixel(x, (y + height - 1));
    lcd_clearpixel((x + width - 1), (y + height - 1));

    /* clear pixels in progress bar */
    lcd_clearrect(x + 1, y + 1, width - 2, height - 2);

    /* draw knob */
    pos = percent;
    if(pos < 0)
        pos = 0;
    if(pos > 100)
        pos = 100;

    switch (direction)
    {
        case Grow_Right:
            pos = (width - height) * pos / 100;
            break;
        case Grow_Left:
            pos=(width - height) * (100 - pos) / 100;
            break;
        case Grow_Down:
            pos=(height - width) * pos / 100;
            break;
        case Grow_Up:
            pos=(height - width) * (100 - pos) / 100;
            break;
    }

    if(direction == Grow_Left || direction == Grow_Right)
        lcd_fillrect(x + pos + 1, y + 1, height - 2, height - 2);
    else
        lcd_fillrect(x + 1, y + pos + 1, width - 2, width - 2);
}


/*
 * Print a scroll bar
 */
void scrollbar(int x, int y, int width, int height, int items, int min_shown, int max_shown, int orientation)
{
    int min;
    int max;
    int start;
    int size;

    /* draw box */
    lcd_drawrect(x, y, width, height);

    /* clear edge pixels */
    lcd_clearpixel(x, y);
    lcd_clearpixel((x + width - 1), y);
    lcd_clearpixel(x, (y + height - 1));
    lcd_clearpixel((x + width - 1), (y + height - 1));

    /* clear pixels in progress bar */
    lcd_clearrect(x + 1, y + 1, width - 2, height - 2);

    /* min should be min */
    if(min_shown < max_shown) {
        min = min_shown;
        max = max_shown;
    }
    else {
        min = max_shown;
        max = min_shown;
    }

    /* limit min and max */
    if(min < 0)
        min = 0;
    if(min > items)
        min = items;

    if(max < 0)
        max = 0;
    if(max > items)
        max = items;

    /* calc start and end of the knob */
    if(items > 0 && items > (max - min)) {
        if(orientation == VERTICAL) {
            size = (height - 2) * (max - min) / items;
            start = (height - 2 - size) * min / (items - (max - min));
        }
        else {
            size = (width - 2) * (max - min) / items;
            start = (width - 2 - size) * min / (items - (max - min));
        }
    }
    else { /* if null draw a full bar */
        start = 0;
        if(orientation == VERTICAL) 
            size = (height - 2);
        else
            size = (width - 2);
    }

    /* knob has a width */
    if(size != 0) {
        if(orientation == VERTICAL)
            lcd_fillrect(x + 1, y + start + 1, width - 2, size);
        else
            lcd_fillrect(x + start + 1, y + 1, size, height - 2);
    }
    else { /* width of knob is null */
        if(orientation == VERTICAL) {
            start = (height - 2 - 1) * min / items;
            lcd_fillrect(x + 1, y + start + 1, width - 2, 1);
        }
        else {
            start = (width - 2 - 1) * min / items;
            lcd_fillrect(x + start + 1, y + 1, 1, height - 2);
        }
    }
}
#endif