2005-11-22 03:38:07 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Kevin Ferrare
|
|
|
|
*
|
|
|
|
* 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 "quickscreen.h"
|
|
|
|
#ifdef HAS_QUICKSCREEN
|
|
|
|
|
|
|
|
#include "icons.h"
|
|
|
|
#include "textarea.h"
|
|
|
|
#include "font.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "statusbar.h"
|
|
|
|
|
|
|
|
void gui_quickscreen_init(struct gui_quickscreen * qs,
|
|
|
|
struct option_select *left_option,
|
|
|
|
struct option_select *bottom_option,
|
|
|
|
struct option_select *right_option,
|
|
|
|
char * left_right_title,
|
|
|
|
quickscreen_callback callback)
|
|
|
|
{
|
|
|
|
qs->left_option=left_option;
|
|
|
|
qs->bottom_option=bottom_option;
|
|
|
|
qs->right_option=right_option;
|
|
|
|
qs->left_right_title=left_right_title;
|
|
|
|
qs->callback=callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_quickscreen_draw(struct gui_quickscreen * qs, struct screen * display)
|
|
|
|
{
|
|
|
|
int w,h;
|
|
|
|
char buffer[30];
|
2005-12-05 23:37:14 +00:00
|
|
|
const unsigned char *option;
|
|
|
|
const unsigned char *title;
|
2005-11-22 03:38:07 +00:00
|
|
|
#ifdef HAS_BUTTONBAR
|
|
|
|
display->has_buttonbar=false;
|
|
|
|
#endif
|
|
|
|
gui_textarea_clear(display);
|
2005-11-22 21:55:05 +00:00
|
|
|
display->setfont(FONT_SYSFIXED);
|
2005-12-06 13:27:15 +00:00
|
|
|
display->getstringsize((unsigned char *)"M", NULL, &h);
|
2005-11-22 03:38:07 +00:00
|
|
|
/* Displays the icons */
|
|
|
|
display->mono_bitmap(bitmap_icons_7x8[Icon_FastBackward],
|
|
|
|
display->width/2 - 16,
|
|
|
|
display->height/2 - 4, 7, 8);
|
|
|
|
display->mono_bitmap(bitmap_icons_7x8[Icon_DownArrow],
|
|
|
|
display->width/2 - 3,
|
|
|
|
display->height - h*3, 7, 8);
|
|
|
|
display->mono_bitmap(bitmap_icons_7x8[Icon_FastForward],
|
|
|
|
display->width/2 + 8,
|
|
|
|
display->height/2 - 4, 7, 8);
|
|
|
|
|
|
|
|
/* Displays the left's text */
|
2005-12-05 23:37:14 +00:00
|
|
|
title=(unsigned char *)qs->left_option->title;
|
|
|
|
option=(unsigned char *)option_select_get_text(qs->left_option, buffer,
|
|
|
|
sizeof buffer);
|
2005-11-22 03:38:07 +00:00
|
|
|
display->putsxy(0, display->height/2 - h*2, title);
|
2005-12-05 23:37:14 +00:00
|
|
|
display->putsxy(0, display->height/2 - h,
|
|
|
|
(unsigned char *)qs->left_right_title);
|
2005-11-22 03:38:07 +00:00
|
|
|
display->putsxy(0, display->height/2, option);
|
|
|
|
|
|
|
|
/* Displays the bottom's text */
|
2005-12-05 23:37:14 +00:00
|
|
|
title=(unsigned char *)qs->bottom_option->title;
|
|
|
|
option=(unsigned char *)option_select_get_text(qs->bottom_option, buffer,
|
|
|
|
sizeof buffer);
|
2005-11-22 03:38:07 +00:00
|
|
|
display->getstringsize(title, &w, &h);
|
|
|
|
display->putsxy((display->width-w)/2, display->height - h*2, title);
|
|
|
|
display->getstringsize(option, &w, &h);
|
|
|
|
display->putsxy((display->width-w)/2, display->height - h, option);
|
|
|
|
|
|
|
|
/* Displays the right's text */
|
2005-12-05 23:37:14 +00:00
|
|
|
title=(unsigned char *)qs->right_option->title;
|
|
|
|
option=(unsigned char *)option_select_get_text(qs->right_option, buffer,
|
|
|
|
sizeof buffer);
|
2005-11-22 03:38:07 +00:00
|
|
|
display->getstringsize(title,&w,&h);
|
|
|
|
display->putsxy(display->width - w, display->height/2 - h*2, title);
|
2005-12-05 23:37:14 +00:00
|
|
|
display->getstringsize((unsigned char *)qs->left_right_title, &w, &h);
|
|
|
|
display->putsxy(display->width - w, display->height/2 - h,
|
|
|
|
(unsigned char *)qs->left_right_title);
|
2005-11-22 03:38:07 +00:00
|
|
|
display->getstringsize(option,&w,&h);
|
|
|
|
display->putsxy(display->width - w, display->height/2, option);
|
|
|
|
|
|
|
|
gui_textarea_update(display);
|
2005-11-22 21:55:05 +00:00
|
|
|
display->setfont(FONT_UI);
|
2005-11-22 03:38:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_syncquickscreen_draw(struct gui_quickscreen * qs)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_quickscreen_draw(qs, &screens[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool gui_quickscreen_do_button(struct gui_quickscreen * qs, int button)
|
|
|
|
{
|
2005-11-22 21:55:05 +00:00
|
|
|
|
2005-11-22 03:38:07 +00:00
|
|
|
switch(button)
|
|
|
|
{
|
|
|
|
case QUICKSCREEN_LEFT :
|
|
|
|
case QUICKSCREEN_LEFT | BUTTON_REPEAT :
|
|
|
|
#ifdef QUICKSCREEN_RC_LEFT
|
|
|
|
case QUICKSCREEN_RC_LEFT :
|
|
|
|
case QUICKSCREEN_RC_LEFT | BUTTON_REPEAT :
|
|
|
|
#endif
|
|
|
|
option_select_next(qs->left_option);
|
|
|
|
return(true);
|
|
|
|
|
|
|
|
case QUICKSCREEN_BOTTOM :
|
|
|
|
case QUICKSCREEN_BOTTOM | BUTTON_REPEAT :
|
|
|
|
#ifdef QUICKSCREEN_RC_BOTTOM
|
|
|
|
case QUICKSCREEN_RC_BOTTOM :
|
|
|
|
case QUICKSCREEN_RC_BOTTOM | BUTTON_REPEAT :
|
|
|
|
#endif
|
|
|
|
option_select_next(qs->bottom_option);
|
|
|
|
return(true);
|
|
|
|
|
|
|
|
case QUICKSCREEN_RIGHT :
|
|
|
|
case QUICKSCREEN_RIGHT | BUTTON_REPEAT :
|
|
|
|
#ifdef QUICKSCREEN_RC_RIGHT
|
|
|
|
case QUICKSCREEN_RC_RIGHT :
|
|
|
|
case QUICKSCREEN_RC_RIGHT | BUTTON_REPEAT :
|
|
|
|
#endif
|
|
|
|
option_select_next(qs->right_option);
|
|
|
|
return(true);
|
|
|
|
|
|
|
|
case QUICKSCREEN_BOTTOM_INV :
|
|
|
|
case QUICKSCREEN_BOTTOM_INV | BUTTON_REPEAT :
|
|
|
|
#ifdef QUICKSCREEN_RC_BOTTOM_INV
|
|
|
|
case QUICKSCREEN_RC_BOTTOM_INV :
|
|
|
|
case QUICKSCREEN_RC_BOTTOM_INV | BUTTON_REPEAT :
|
|
|
|
#endif
|
|
|
|
option_select_prev(qs->bottom_option);
|
|
|
|
return(true);
|
|
|
|
}
|
|
|
|
return(false);
|
|
|
|
}
|
2005-11-24 00:33:00 +00:00
|
|
|
#ifdef BUTTON_REMOTE
|
|
|
|
#define uncombine_button(key_read, combined_button) \
|
|
|
|
key_read & ~(combined_button & ~BUTTON_REMOTE)
|
|
|
|
#else
|
|
|
|
#define uncombine_button(key_read, combined_button) \
|
|
|
|
key_read & ~combined_button
|
|
|
|
#endif
|
2005-11-22 03:38:07 +00:00
|
|
|
|
2005-11-22 21:55:05 +00:00
|
|
|
bool gui_syncquickscreen_run(struct gui_quickscreen * qs, int button_enter)
|
2005-11-22 03:38:07 +00:00
|
|
|
{
|
2005-11-24 00:33:00 +00:00
|
|
|
int raw_key, button;
|
2005-11-22 21:55:05 +00:00
|
|
|
/* To quit we need either :
|
|
|
|
* - a second press on the button that made us enter
|
|
|
|
* - an action taken while pressing the enter button,
|
|
|
|
* then release the enter button*/
|
|
|
|
bool can_quit=false;
|
2005-11-22 03:38:07 +00:00
|
|
|
gui_syncquickscreen_draw(qs);
|
2005-11-25 21:22:28 +00:00
|
|
|
gui_syncstatusbar_draw(&statusbars, true);
|
2005-11-22 03:38:07 +00:00
|
|
|
while (true) {
|
2005-11-24 00:33:00 +00:00
|
|
|
raw_key = button_get(true);
|
|
|
|
button=uncombine_button(raw_key, button_enter);
|
|
|
|
if(default_event_handler(button) == SYS_USB_CONNECTED)
|
2005-11-22 03:38:07 +00:00
|
|
|
return(true);
|
2005-11-24 00:33:00 +00:00
|
|
|
if(gui_quickscreen_do_button(qs, button))
|
2005-11-22 03:38:07 +00:00
|
|
|
{
|
2005-11-22 21:55:05 +00:00
|
|
|
can_quit=true;
|
2005-11-22 03:38:07 +00:00
|
|
|
if(qs->callback)
|
|
|
|
qs->callback(qs);
|
|
|
|
gui_syncquickscreen_draw(qs);
|
|
|
|
}
|
2005-11-24 00:33:00 +00:00
|
|
|
else if(raw_key==button_enter)
|
2005-11-22 21:55:05 +00:00
|
|
|
can_quit=true;
|
2005-11-24 00:33:00 +00:00
|
|
|
if(raw_key==(button_enter | BUTTON_REL) && can_quit)
|
2005-11-22 21:55:05 +00:00
|
|
|
return(false);
|
2005-11-22 03:38:07 +00:00
|
|
|
#ifdef QUICKSCREEN_QUIT
|
2005-11-24 00:33:00 +00:00
|
|
|
if(raw_key==QUICKSCREEN_QUIT
|
2005-11-22 03:38:07 +00:00
|
|
|
#ifdef QUICKSCREEN_QUIT2
|
2005-11-24 00:33:00 +00:00
|
|
|
|| raw_key==QUICKSCREEN_QUIT2
|
2005-11-22 03:38:07 +00:00
|
|
|
#endif
|
|
|
|
#if QUICKSCREEN_RC_QUIT
|
2005-11-24 00:33:00 +00:00
|
|
|
|| raw_key==QUICKSCREEN_RC_QUIT
|
2005-11-22 03:38:07 +00:00
|
|
|
#endif
|
|
|
|
)
|
|
|
|
return(false);
|
2005-11-22 21:55:05 +00:00
|
|
|
#endif /* QUICKSCREEN_QUIT */
|
2005-11-22 03:38:07 +00:00
|
|
|
gui_syncstatusbar_draw(&statusbars, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HAS_QUICKSCREEN */
|
|
|
|
|