2002-12-04 15:04:43 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2002 by Bj<EFBFBD>rn Stenberg
|
|
|
|
|
*
|
|
|
|
|
* 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 "button.h"
|
|
|
|
|
#include "kernel.h"
|
|
|
|
|
#include "version.h"
|
|
|
|
|
#include "debug_menu.h"
|
|
|
|
|
#include "sprintf.h"
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#define KEYBOARD_PAGES 4
|
|
|
|
|
|
|
|
|
|
static char* kbd_setupkeys(int page)
|
|
|
|
|
{
|
|
|
|
|
static char* lines[] = {
|
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZ",
|
|
|
|
|
"abcdefghijklmnopqrstuvwxyz",
|
|
|
|
|
"01234567890!@#$%&/(){}[]<>",
|
|
|
|
|
"+-*_.,:;!?'"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return lines[page];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int kbd_input(char* text, int buflen)
|
|
|
|
|
{
|
|
|
|
|
bool done = false;
|
|
|
|
|
int page=0, x=0;
|
|
|
|
|
char* line = kbd_setupkeys(page);
|
|
|
|
|
int linelen = strlen(line);
|
|
|
|
|
|
|
|
|
|
while(!done)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
int len = strlen(text);
|
|
|
|
|
|
|
|
|
|
lcd_clear_display();
|
|
|
|
|
|
|
|
|
|
/* draw chars */
|
2003-01-15 13:48:54 +00:00
|
|
|
|
for (i=0; i < 11; i++) {
|
|
|
|
|
if (line[i+x])
|
|
|
|
|
lcd_putc(i, 1, line[i+x]);
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-04 15:04:43 +00:00
|
|
|
|
/* write out the text */
|
|
|
|
|
if (len <= 11) {
|
|
|
|
|
/* if we have enough room */
|
|
|
|
|
lcd_puts(0, 0, text);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
/* if we don't have enough room, write out the last bit only */
|
|
|
|
|
lcd_putc(0, 0, '<');
|
|
|
|
|
lcd_puts(1, 0, text + len - 10);
|
|
|
|
|
}
|
|
|
|
|
lcd_update();
|
|
|
|
|
|
|
|
|
|
switch ( button_get(true) ) {
|
|
|
|
|
|
2003-01-15 13:48:54 +00:00
|
|
|
|
case BUTTON_MENU:
|
|
|
|
|
/* shift */
|
|
|
|
|
if (++page == KEYBOARD_PAGES)
|
|
|
|
|
page = 0;
|
|
|
|
|
line = kbd_setupkeys(page);
|
|
|
|
|
linelen = strlen(line);
|
|
|
|
|
break;
|
2002-12-04 15:04:43 +00:00
|
|
|
|
|
2003-01-15 13:48:54 +00:00
|
|
|
|
case BUTTON_RIGHT:
|
|
|
|
|
case BUTTON_RIGHT | BUTTON_REPEAT:
|
|
|
|
|
if (x < linelen - 1)
|
|
|
|
|
x++;
|
|
|
|
|
else
|
|
|
|
|
x = 0;
|
|
|
|
|
break;
|
2002-12-04 15:04:43 +00:00
|
|
|
|
|
2003-01-15 13:48:54 +00:00
|
|
|
|
case BUTTON_LEFT:
|
|
|
|
|
case BUTTON_LEFT | BUTTON_REPEAT:
|
|
|
|
|
if (x)
|
|
|
|
|
x--;
|
|
|
|
|
else
|
|
|
|
|
x = linelen - 1;
|
|
|
|
|
break;
|
2002-12-04 15:04:43 +00:00
|
|
|
|
|
2003-01-15 13:48:54 +00:00
|
|
|
|
case BUTTON_STOP:
|
|
|
|
|
/* backspace */
|
|
|
|
|
if (len)
|
|
|
|
|
text[len-1] = 0;
|
|
|
|
|
break;
|
2002-12-04 15:04:43 +00:00
|
|
|
|
|
2003-01-15 13:48:54 +00:00
|
|
|
|
case BUTTON_ON:
|
|
|
|
|
/* ON accepts what was entered and continues */
|
|
|
|
|
done = true;
|
|
|
|
|
break;
|
2002-12-04 15:04:43 +00:00
|
|
|
|
|
2003-01-15 13:48:54 +00:00
|
|
|
|
case BUTTON_PLAY:
|
|
|
|
|
/* PLAY inserts the selected char */
|
|
|
|
|
if (len<buflen)
|
|
|
|
|
{
|
|
|
|
|
text[len] = line[x];
|
|
|
|
|
text[len+1] = 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2002-12-04 15:04:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|