2002-05-17 12:22:24 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Robert E. Hak
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2002-08-12 07:14:46 +00:00
|
|
|
#include <string.h>
|
2002-09-12 13:33:59 +00:00
|
|
|
#include "lcd.h"
|
|
|
|
#include "font.h"
|
2002-08-09 11:57:31 +00:00
|
|
|
#include "kernel.h"
|
2002-08-10 07:45:35 +00:00
|
|
|
#include "sprintf.h"
|
2002-08-12 07:14:46 +00:00
|
|
|
#include "rtc.h"
|
2002-05-17 12:22:24 +00:00
|
|
|
|
|
|
|
#include "icons.h"
|
|
|
|
|
2002-06-25 07:27:29 +00:00
|
|
|
unsigned char slider_bar[] =
|
|
|
|
{
|
|
|
|
0x38, 0x28, 0x28, 0x28, 0x28,
|
|
|
|
0x7c, 0x28, 0x28, 0x28, 0x28,
|
|
|
|
0x7c, 0x28, 0x28, 0x28, 0x28,
|
|
|
|
0x7c, 0x28, 0x28, 0x28, 0x28,
|
|
|
|
0x7c, 0x28, 0x28, 0x28, 0x28,
|
|
|
|
0x7c, 0x28, 0x28, 0x28, 0x28,
|
|
|
|
0x7c, 0x28, 0x28, 0x28, 0x28,
|
|
|
|
0x7c, 0x28, 0x28, 0x28, 0x28, 0x38
|
|
|
|
};
|
|
|
|
|
2002-09-03 15:58:47 +00:00
|
|
|
unsigned char bitmap_icons_5x8[][5] =
|
2002-08-07 10:35:26 +00:00
|
|
|
{
|
|
|
|
/* Lock */
|
|
|
|
{0x78,0x7f,0x49,0x7f,0x78}
|
|
|
|
};
|
|
|
|
|
2002-05-17 12:22:24 +00:00
|
|
|
unsigned char bitmap_icons_6x8[LastIcon][6] =
|
|
|
|
{
|
|
|
|
/* Box_Filled */
|
|
|
|
{ 0x00, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f },
|
|
|
|
/* Box_Empty */
|
|
|
|
{ 0x00, 0x7f, 0x41, 0x41, 0x41, 0x7f },
|
|
|
|
/* Slider_Horizontal */
|
|
|
|
{ 0x00, 0x3e, 0x7f, 0x63, 0x7f, 0x3e },
|
|
|
|
/* File */
|
|
|
|
{ 0x60, 0x7f, 0x03, 0x63, 0x7f, 0x00 },
|
|
|
|
/* Folder */
|
2002-06-14 09:02:16 +00:00
|
|
|
{ 0x7e, 0x41, 0x41, 0x42, 0x7e, 0x00 },
|
2002-05-17 12:22:24 +00:00
|
|
|
/* Directory */
|
|
|
|
{ 0x3e, 0x26, 0x26, 0x24, 0x3c, 0x00 },
|
|
|
|
/* Playlist */
|
|
|
|
{ 0x55, 0x00, 0x55, 0x55, 0x55, 0x00 },
|
|
|
|
/* Repeat */
|
|
|
|
{ 0x39, 0x43, 0x47, 0x71, 0x61, 0x4e },
|
|
|
|
/* Selected */
|
2002-06-14 08:47:09 +00:00
|
|
|
{ 0x00, 0x1c, 0x3e, 0x3e, 0x3e, 0x1c },
|
|
|
|
/* Cursor / Marker */
|
2002-08-13 20:55:08 +00:00
|
|
|
{ 0x3e, 0x1c, 0x08, 0x00, 0x00, 0x00 },
|
2002-09-02 12:46:32 +00:00
|
|
|
/* WPS file */
|
2002-09-03 01:07:31 +00:00
|
|
|
{ 0x58, 0x5f, 0x42, 0x50, 0x55, 0x00 },
|
|
|
|
/* Mod or ajz file */
|
|
|
|
{ 0x63, 0x7f, 0x3a, 0x7f, 0x63, 0x00 },
|
2002-09-20 08:07:51 +00:00
|
|
|
/* Font file */
|
|
|
|
{ 0x60, 0x70, 0x38, 0x2c, 0x7e, 0x7e },
|
2002-09-24 14:42:14 +00:00
|
|
|
/* Language file */
|
|
|
|
{ 0x3e, 0x2a, 0x3e, 0x2a, 0x2a, 0x3e },
|
2002-05-17 12:22:24 +00:00
|
|
|
};
|
|
|
|
|
2002-09-03 15:58:47 +00:00
|
|
|
unsigned char bitmap_icons_7x8[][7] =
|
2002-08-07 10:35:26 +00:00
|
|
|
{
|
|
|
|
/* Power plug */
|
2002-08-07 13:05:13 +00:00
|
|
|
{0x08,0x1c,0x3e,0x3e,0x3e,0x14,0x14},
|
2002-08-07 10:35:26 +00:00
|
|
|
/* Speaker */
|
|
|
|
{0x00,0x1c,0x1c,0x3e,0x7f,0x00,0x00},
|
|
|
|
/* Speaker mute */
|
|
|
|
{0x01,0x1e,0x1c,0x3e,0x7f,0x20,0x40},
|
|
|
|
/* Play */
|
|
|
|
{0x00,0x7f,0x7f,0x3e,0x1c,0x08,0x00},
|
|
|
|
/* Stop */
|
|
|
|
{0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f},
|
|
|
|
/* Pause */
|
|
|
|
{0x00,0x7f,0x7f,0x00,0x7f,0x7f,0x00},
|
|
|
|
/* Fast forward */
|
|
|
|
{0x7f,0x3e,0x1c,0x7f,0x3e,0x1c,0x08},
|
|
|
|
/* Fast backward */
|
|
|
|
{0x08,0x1c,0x3e,0x7f,0x1c,0x3e,0x7f},
|
|
|
|
/* Record */
|
|
|
|
{0x1c,0x3e,0x7f,0x7f,0x7f,0x3e,0x1c},
|
|
|
|
/* Record pause */
|
|
|
|
{0x1c,0x3e,0x7f,0x00,0x7f,0x3e,0x1c},
|
|
|
|
/* Normal playmode */
|
|
|
|
{0x08,0x08,0x08,0x08,0x3e,0x1c,0x08},
|
|
|
|
/* Repeat playmode */
|
|
|
|
{0x38,0x44,0x44,0x4e,0x5f,0x44,0x38},
|
|
|
|
/* Shuffle playmode (dice) */
|
2002-09-03 20:47:23 +00:00
|
|
|
{0x3e,0x41,0x51,0x41,0x45,0x41,0x3e},
|
|
|
|
/* Down-arrow */
|
|
|
|
{0x04,0x0c,0x1c,0x3c,0x1c,0x0c,0x04},
|
|
|
|
/* Up-arrow */
|
|
|
|
{0x20,0x30,0x38,0x3c,0x38,0x30,0x20},
|
2002-08-07 10:35:26 +00:00
|
|
|
};
|
|
|
|
|
2002-05-31 12:30:48 +00:00
|
|
|
unsigned char rockbox112x37[]={
|
|
|
|
0x00, 0x00, 0x02, 0xff, 0x02, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa,
|
|
|
|
0xf8, 0xf8, 0xf0, 0xe0, 0x80, 0x00, 0x00, 0x80, 0xe0, 0xf0, 0xf8, 0xf8, 0xfc,
|
|
|
|
0x7c, 0x7d, 0xfd, 0xfa, 0xfa, 0xf4, 0xe8, 0x90, 0x60, 0x80, 0xe0, 0x10, 0xc8,
|
|
|
|
0xe4, 0xf2, 0xfa, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfa, 0xfa, 0xf4, 0x02, 0xfa,
|
|
|
|
0xfa, 0xfa, 0xfa, 0x02, 0xff, 0x02, 0x00, 0x80, 0xe2, 0xfa, 0xfa, 0xfa, 0xfa,
|
|
|
|
0x3a, 0x0e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
|
|
|
|
0x60, 0x90, 0x20, 0xc0, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x05, 0x05, 0xf9,
|
|
|
|
0x03, 0xff, 0xff, 0xff, 0xff, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x0f, 0x01, 0x00,
|
|
|
|
0xff, 0x01, 0x0e, 0xf1, 0x0f, 0xff, 0xff, 0xff, 0xfc, 0x03, 0xf8, 0xff, 0xff,
|
|
|
|
0xff, 0x0f, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x03, 0x0f, 0x00, 0xff,
|
|
|
|
0xff, 0xff, 0xff, 0x80, 0xff, 0xf8, 0xfe, 0xff, 0xff, 0xff, 0x07, 0x07, 0x04,
|
|
|
|
0x04, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
|
|
|
|
0xc0, 0x38, 0x07, 0x9d, 0x60, 0xbf, 0xbf, 0xff, 0xff, 0xfc, 0xff, 0xfd, 0xfe,
|
|
|
|
0xff, 0xff, 0x9f, 0x0f, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x08, 0x08,
|
|
|
|
0x3f, 0x08, 0x08, 0xff, 0x08, 0xff, 0xff, 0xff, 0xff, 0x08, 0xff, 0xff, 0xff,
|
|
|
|
0xff, 0x08, 0x08, 0x08, 0x08, 0xfe, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00, 0xff,
|
|
|
|
0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xf3, 0xc0, 0xff, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x03, 0x82, 0x41, 0x41, 0xa1, 0xa1, 0x41, 0x41, 0x81, 0x02, 0x02, 0x04,
|
|
|
|
0x08, 0x30, 0x08, 0x04, 0x02, 0x02, 0x81, 0x41, 0x41, 0xa1, 0xa1, 0x41, 0x41,
|
|
|
|
0x81, 0x01, 0x03, 0x05, 0x01, 0x01, 0x01, 0x01, 0x02, 0x0c, 0x12, 0x0d, 0x02,
|
|
|
|
0x01, 0x01, 0xc1, 0x31, 0xc9, 0x35, 0x0b, 0x04,
|
|
|
|
|
|
|
|
0x01, 0x07, 0x0c, 0x09, 0x18, 0xe3, 0x1b, 0xfc, 0xff, 0x00, 0xff, 0x03, 0x1f,
|
|
|
|
0x7f, 0xff, 0xff, 0xfc, 0xf0, 0x80, 0x0f, 0x7f, 0xff, 0xff, 0xfc, 0xe0, 0xc0,
|
|
|
|
0xa0, 0xa0, 0xdc, 0xe3, 0xfc, 0xff, 0xff, 0x7f, 0x0f, 0x00, 0x07, 0x3f, 0xff,
|
|
|
|
0xff, 0xfc, 0xf0, 0xe0, 0xc0, 0xff, 0xc0, 0xc0, 0xe0, 0xf0, 0xfc, 0x00, 0xff,
|
|
|
|
0xff, 0xff, 0xff, 0x06, 0x19, 0x67, 0x9f, 0x7f, 0xff, 0xff, 0xfc, 0xf0, 0xc0,
|
|
|
|
0x00, 0x06, 0x19, 0x20, 0x20, 0x50, 0x50, 0x29, 0x26, 0x19, 0x06, 0x00, 0x00,
|
|
|
|
0x00, 0xc0, 0x00, 0x00, 0x00, 0x06, 0x19, 0x20, 0x20, 0x50, 0x50, 0x29, 0x26,
|
|
|
|
0x19, 0x06, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x06, 0x00, 0x00, 0x80, 0x00, 0x00,
|
|
|
|
0x06, 0x09, 0x36, 0xc9, 0x30, 0xc0, 0x00, 0x00,
|
|
|
|
|
|
|
|
0x20, 0xa0, 0x00, 0x40, 0x83, 0xec, 0x0c, 0x0f, 0x0f, 0xe8, 0xff, 0xa8, 0x08,
|
|
|
|
0x00, 0x01, 0x0f, 0x0f, 0x0f, 0x0f, 0x0e, 0x58, 0xc9, 0x03, 0x47, 0x07, 0xef,
|
|
|
|
0xef, 0xaf, 0x0f, 0x07, 0x07, 0x03, 0x01, 0x00, 0x00, 0x08, 0x48, 0xe8, 0xe8,
|
|
|
|
0xa9, 0x4b, 0xef, 0xef, 0xaf, 0xaf, 0xaf, 0x07, 0x47, 0x27, 0xc3, 0x00, 0x4f,
|
|
|
|
0x8f, 0xef, 0x0f, 0x00, 0x00, 0xe8, 0xe9, 0xae, 0x19, 0x0f, 0x0f, 0x0f, 0x0f,
|
|
|
|
0x0f, 0x0c, 0x04, 0x48, 0xc8, 0x08, 0x48, 0x68, 0x48, 0x08, 0x04, 0x24, 0xe2,
|
|
|
|
0xe1, 0xa0, 0x61, 0x42, 0x04, 0x04, 0x88, 0x28, 0x08, 0x08, 0x28, 0xe8, 0xe8,
|
|
|
|
0xa8, 0xc8, 0xec, 0xea, 0xa8, 0x28, 0xa8, 0x08, 0x44, 0xeb, 0x24, 0x03, 0x04,
|
|
|
|
0x08, 0xe8, 0xe8, 0xa8, 0x09, 0x0a, 0x0d, 0x02,
|
|
|
|
|
|
|
|
};
|
2002-05-17 12:22:24 +00:00
|
|
|
|
2002-08-07 10:35:26 +00:00
|
|
|
/*
|
|
|
|
* Wipe statusbar
|
|
|
|
*/
|
|
|
|
void statusbar_wipe(void)
|
|
|
|
{
|
2002-09-23 11:17:52 +00:00
|
|
|
lcd_clearrect(0,0,LCD_WIDTH,8);
|
2002-08-07 10:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print battery icon to status bar
|
|
|
|
*/
|
|
|
|
void statusbar_icon_battery(int percent, bool charging)
|
|
|
|
{
|
2002-08-28 14:23:57 +00:00
|
|
|
int i;
|
2002-08-07 10:35:26 +00:00
|
|
|
int fill;
|
|
|
|
|
|
|
|
/* draw battery */
|
2002-08-28 14:23:57 +00:00
|
|
|
lcd_drawrect(ICON_BATTERY_X_POS, STATUSBAR_Y_POS, 17, 7);
|
2002-08-12 08:47:09 +00:00
|
|
|
for (i=2; i < 5; i++)
|
2002-08-28 14:23:57 +00:00
|
|
|
lcd_drawpixel(ICON_BATTERY_X_POS + 17, STATUSBAR_Y_POS + i);
|
|
|
|
|
2002-08-07 10:35:26 +00:00
|
|
|
/* fill battery */
|
|
|
|
fill=percent;
|
2002-08-12 08:47:09 +00:00
|
|
|
if (fill < 0)
|
|
|
|
fill = 0;
|
|
|
|
if (fill > 100)
|
|
|
|
fill = 100;
|
2002-08-07 10:35:26 +00:00
|
|
|
|
2002-08-12 08:47:09 +00:00
|
|
|
fill = fill * 15 / 100;
|
2002-08-07 10:35:26 +00:00
|
|
|
|
2002-08-28 14:23:57 +00:00
|
|
|
lcd_fillrect(ICON_BATTERY_X_POS + 1, STATUSBAR_Y_POS + 1, fill, 5);
|
2002-08-12 08:47:09 +00:00
|
|
|
|
2002-08-28 14:23:57 +00:00
|
|
|
/* draw power plug if charging */
|
2002-08-12 08:47:09 +00:00
|
|
|
if (charging)
|
2002-09-03 15:58:47 +00:00
|
|
|
lcd_bitmap(bitmap_icons_7x8[Icon_Plug], ICON_PLUG_X_POS,
|
2002-08-12 08:47:09 +00:00
|
|
|
STATUSBAR_Y_POS, ICON_PLUG_WIDTH, STATUSBAR_HEIGHT, false);
|
2002-08-07 10:35:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print volume gauge to status bar
|
|
|
|
*/
|
|
|
|
void statusbar_icon_volume(int percent)
|
|
|
|
{
|
|
|
|
int i,j;
|
|
|
|
int volume;
|
|
|
|
int step=0;
|
2002-08-09 11:57:31 +00:00
|
|
|
char buffer[4];
|
2002-08-20 20:32:08 +00:00
|
|
|
unsigned int width, height;
|
|
|
|
#if defined(LOADABLE_FONTS)
|
|
|
|
unsigned char *font;
|
|
|
|
#endif
|
2002-08-09 11:57:31 +00:00
|
|
|
static long switch_tick;
|
|
|
|
static int last_volume;
|
2002-08-07 10:35:26 +00:00
|
|
|
|
2002-08-12 08:47:09 +00:00
|
|
|
volume = percent;
|
|
|
|
if (volume < 0)
|
|
|
|
volume = 0;
|
|
|
|
if (volume > 100)
|
|
|
|
volume = 100;
|
2002-08-07 10:35:26 +00:00
|
|
|
|
2002-08-12 08:47:09 +00:00
|
|
|
if (volume==0) {
|
2002-09-03 15:58:47 +00:00
|
|
|
lcd_bitmap(bitmap_icons_7x8[Icon_Mute],
|
2002-08-12 08:47:09 +00:00
|
|
|
ICON_VOLUME_X_POS + ICON_VOLUME_WIDTH / 2 - 4,
|
|
|
|
STATUSBAR_Y_POS, 7, STATUSBAR_HEIGHT, false);
|
|
|
|
}
|
2002-08-07 10:35:26 +00:00
|
|
|
else {
|
2002-08-12 08:47:09 +00:00
|
|
|
if (last_volume != volume) {
|
|
|
|
switch_tick = current_tick + HZ;
|
|
|
|
last_volume = volume;
|
2002-08-09 11:57:31 +00:00
|
|
|
}
|
2002-08-12 08:47:09 +00:00
|
|
|
/* display volume lever numerical? */
|
|
|
|
if (TIME_BEFORE(current_tick,switch_tick)) {
|
2002-08-09 11:57:31 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%2d", percent);
|
2002-09-20 08:07:51 +00:00
|
|
|
lcd_getstringsize(buffer, FONT_SYSFIXED, &width, &height);
|
2002-08-20 20:32:08 +00:00
|
|
|
if (height <= STATUSBAR_HEIGHT)
|
|
|
|
lcd_putsxy(ICON_VOLUME_X_POS + ICON_VOLUME_WIDTH / 2 -
|
2002-09-20 08:07:51 +00:00
|
|
|
width/2, STATUSBAR_Y_POS, buffer, FONT_SYSFIXED);
|
2002-08-09 11:57:31 +00:00
|
|
|
}
|
|
|
|
else { /* display volume bar */
|
2002-08-12 08:47:09 +00:00
|
|
|
volume = volume * 14 / 100;
|
|
|
|
for(i=0; i < volume; i++) {
|
2002-08-09 11:57:31 +00:00
|
|
|
if(i%2 == 0)
|
|
|
|
step++;
|
2002-08-12 08:47:09 +00:00
|
|
|
for(j=1; j <= step; j++)
|
2002-08-28 14:23:57 +00:00
|
|
|
lcd_drawpixel(ICON_VOLUME_X_POS + i, STATUSBAR_Y_POS + 7 - j);
|
2002-08-09 11:57:31 +00:00
|
|
|
}
|
2002-08-07 10:35:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print play state to status bar
|
|
|
|
*/
|
|
|
|
void statusbar_icon_play_state(int state)
|
|
|
|
{
|
2002-09-03 15:58:47 +00:00
|
|
|
lcd_bitmap(bitmap_icons_7x8[state], ICON_PLAY_STATE_X_POS, STATUSBAR_Y_POS,
|
2002-08-12 08:47:09 +00:00
|
|
|
ICON_PLAY_STATE_WIDTH, STATUSBAR_HEIGHT, false);
|
2002-08-07 10:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print play mode to status bar
|
|
|
|
*/
|
|
|
|
void statusbar_icon_play_mode(int mode)
|
|
|
|
{
|
2002-09-03 15:58:47 +00:00
|
|
|
lcd_bitmap(bitmap_icons_7x8[mode], ICON_PLAY_MODE_X_POS, STATUSBAR_Y_POS,
|
2002-08-12 08:47:09 +00:00
|
|
|
ICON_PLAY_MODE_WIDTH, STATUSBAR_HEIGHT, false);
|
2002-08-07 10:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print shuffle mode to status bar
|
|
|
|
*/
|
|
|
|
void statusbar_icon_shuffle(void)
|
|
|
|
{
|
2002-09-03 15:58:47 +00:00
|
|
|
lcd_bitmap(bitmap_icons_7x8[Icon_Shuffle], ICON_SHUFFLE_X_POS,
|
2002-08-12 08:47:09 +00:00
|
|
|
STATUSBAR_Y_POS, ICON_SHUFFLE_WIDTH, STATUSBAR_HEIGHT, false);
|
2002-08-07 10:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print lock when keys are locked
|
|
|
|
*/
|
|
|
|
void statusbar_icon_lock(void)
|
|
|
|
{
|
2002-09-03 15:58:47 +00:00
|
|
|
lcd_bitmap(bitmap_icons_5x8[Icon_Lock], LOCK_X_POS,
|
2002-08-12 08:47:09 +00:00
|
|
|
STATUSBAR_Y_POS, 5, 8, false);
|
2002-08-07 10:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_RTC
|
|
|
|
/*
|
|
|
|
* Print time to status bar
|
|
|
|
*/
|
2002-08-30 19:44:58 +00:00
|
|
|
void statusbar_time(int hour, int minute)
|
2002-08-07 10:35:26 +00:00
|
|
|
{
|
|
|
|
unsigned char buffer[6];
|
2002-08-20 20:32:08 +00:00
|
|
|
unsigned int width, height;
|
2002-08-07 10:35:26 +00:00
|
|
|
|
2002-08-30 00:39:31 +00:00
|
|
|
if ( hour >= 0 &&
|
|
|
|
hour <= 23 &&
|
|
|
|
minute >= 0 &&
|
2002-08-30 19:44:58 +00:00
|
|
|
minute <= 59 ) {
|
|
|
|
snprintf(buffer, sizeof(buffer), "%02d:%02d", hour, minute);
|
2002-08-30 00:39:31 +00:00
|
|
|
}
|
2002-08-30 19:44:58 +00:00
|
|
|
else {
|
2002-08-30 00:39:31 +00:00
|
|
|
strncpy(buffer, "--:--", sizeof buffer);
|
|
|
|
}
|
2002-08-07 10:35:26 +00:00
|
|
|
|
2002-09-20 08:07:51 +00:00
|
|
|
lcd_getstringsize(buffer, FONT_SYSFIXED, &width, &height);
|
2002-08-20 20:32:08 +00:00
|
|
|
if (height <= STATUSBAR_HEIGHT)
|
2002-09-20 08:07:51 +00:00
|
|
|
lcd_putsxy(TIME_X_END - width, STATUSBAR_Y_POS, buffer, FONT_SYSFIXED);
|
2002-08-07 10:35:26 +00:00
|
|
|
}
|
|
|
|
#endif
|