2005-10-28 00:00:00 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2005-10-30 01:24:35 +00:00
|
|
|
* Copyright (C) Markus Braun (2002)
|
2005-10-28 00:00:00 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2005-10-28 00:00:00 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2005-11-16 02:12:25 +00:00
|
|
|
#include "scrollbar.h"
|
|
|
|
#include "config.h"
|
2005-10-28 00:00:00 +00:00
|
|
|
#include "limits.h"
|
2006-02-10 13:57:11 +00:00
|
|
|
#include "bmp.h"
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2007-11-25 14:07:40 +00:00
|
|
|
/* calculates the start and size of the knob */
|
|
|
|
static void scrollbar_helper(int min_shown, int max_shown, int items,
|
|
|
|
int inner_len, int *size, int *start)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
2006-10-13 04:16:49 +00:00
|
|
|
int min, max, range;
|
2005-10-28 00:00:00 +00:00
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
2006-10-13 04:16:49 +00:00
|
|
|
range = max - min;
|
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
/* avoid overflows */
|
|
|
|
while (items > (INT_MAX / inner_len)) {
|
|
|
|
items >>= 1;
|
2006-11-25 00:20:53 +00:00
|
|
|
range >>= 1;
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* calc start and end of the knob */
|
2006-10-13 04:16:49 +00:00
|
|
|
if (items > 0 && items > range) {
|
2007-11-25 14:07:40 +00:00
|
|
|
*size = inner_len * range / items;
|
|
|
|
if (*size == 0) { /* width of knob is null */
|
|
|
|
*size = 1;
|
|
|
|
*start = (inner_len - 1) * min / items;
|
2005-10-28 00:00:00 +00:00
|
|
|
} else {
|
2007-11-25 14:07:40 +00:00
|
|
|
*start = (inner_len - *size) * min / (items - range);
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
} else { /* if null draw full bar */
|
2007-11-25 14:07:40 +00:00
|
|
|
*size = inner_len;
|
|
|
|
*start = 0;
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
2010-02-16 13:38:30 +00:00
|
|
|
|
2007-11-25 14:07:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_scrollbar_draw(struct screen * screen, int x, int y,
|
|
|
|
int width, int height, int items,
|
|
|
|
int min_shown, int max_shown,
|
|
|
|
unsigned flags)
|
|
|
|
{
|
|
|
|
int inner_x, inner_y, inner_wd, inner_ht, inner_len;
|
|
|
|
int start, size;
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
int infill;
|
|
|
|
#endif
|
|
|
|
|
A bunch of new features for the bar type tags (%pb, %pv, %bl, etc):
* the bar orientation (horiz/vert) is now chosen based on the width and heigt values (or can be forced).
* the fill direction can now be inverted (fill right to left, or top to bottom is considered inverted)
* It can now draw a slider type bar instead of a fill type (or indeed a slider with a fill type)
To configure the new bar, any (or all) of the following params can be used after the bmp filename (order makes no difference either):
invert - cause the bar to fill in the inverted direction
vertical - draw a vertical bar (not needed if the height > width)
horizontal - draw a horizontal bar (this is obviously the default)
nofill - dont draw the filling bar (this still draws the outline, obviously pointless without the slider param)
slider - draw an image for the slider. The next param MUST be the label of the image to draw. No option to use a subimage here, so the whole image needs to be the image you want on the slider.
example: %pb(0,0,-,-,-,nofill, slider, slider_image, invert) - draw a boring horizontal progressbar which doesnt fill and only draws the image "slider_image" which moves right to left.
the slider type might need some tweaking. let us know how it goes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27821 a1c6a512-1295-4272-9138-f99709370657
2010-08-15 14:13:36 +00:00
|
|
|
if (flags & INVERTFILL)
|
|
|
|
{
|
|
|
|
min_shown = items - max_shown;
|
|
|
|
max_shown = items;
|
|
|
|
}
|
|
|
|
|
2014-01-12 14:11:46 +00:00
|
|
|
if (flags & BORDER_NOFILL)
|
|
|
|
{
|
|
|
|
inner_x = x;
|
|
|
|
inner_y = y;
|
|
|
|
inner_wd = width;
|
|
|
|
inner_ht = height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
inner_x = x + 1;
|
|
|
|
inner_y = y + 1;
|
|
|
|
inner_wd = width - 2;
|
|
|
|
inner_ht = height - 2;
|
|
|
|
}
|
2009-04-11 22:22:44 +00:00
|
|
|
/* Boundary check to make sure that height is reasonable, otherwise nothing
|
|
|
|
* to do
|
|
|
|
*/
|
2009-04-11 23:07:02 +00:00
|
|
|
if ((inner_wd | inner_ht) < 0)
|
2009-04-11 22:22:44 +00:00
|
|
|
return;
|
2007-11-25 14:07:40 +00:00
|
|
|
|
|
|
|
if (flags & HORIZONTAL)
|
|
|
|
inner_len = inner_wd;
|
|
|
|
else
|
|
|
|
inner_len = inner_ht;
|
|
|
|
|
|
|
|
scrollbar_helper(min_shown, max_shown, items, inner_len, &size, &start);
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2006-10-13 04:16:49 +00:00
|
|
|
/* draw box */
|
2014-01-12 14:11:46 +00:00
|
|
|
if (!(flags & BORDER_NOFILL))
|
|
|
|
{
|
2006-10-13 04:16:49 +00:00
|
|
|
#ifdef HAVE_LCD_COLOR
|
2014-01-12 14:11:46 +00:00
|
|
|
/* must avoid corners if case of (flags & FOREGROUND) */
|
|
|
|
screen->hline(inner_x, x + inner_wd, y);
|
|
|
|
screen->hline(inner_x, x + inner_wd, y + height - 1);
|
|
|
|
screen->vline(x, inner_y, y + inner_ht);
|
|
|
|
screen->vline(x + width - 1, inner_y, y + inner_ht);
|
2006-10-13 04:16:49 +00:00
|
|
|
#else
|
2014-01-12 14:11:46 +00:00
|
|
|
screen->drawrect(x, y, width, height);
|
2006-10-13 04:16:49 +00:00
|
|
|
#endif
|
2014-01-12 14:11:46 +00:00
|
|
|
}
|
2006-10-13 04:16:49 +00:00
|
|
|
screen->set_drawmode(DRMODE_SOLID | DRMODE_INVERSEVID);
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
infill = flags & (screen->depth > 1 ? INNER_FILL_MASK : INNER_FILL);
|
|
|
|
|
|
|
|
if (!(flags & FOREGROUND))
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
/* clear corner pixels */
|
|
|
|
screen->drawpixel(x, y);
|
|
|
|
screen->drawpixel(x + width - 1, y);
|
|
|
|
screen->drawpixel(x, y + height - 1);
|
|
|
|
screen->drawpixel(x + width - 1, y + height - 1);
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
if (infill != INNER_BGFILL)
|
|
|
|
infill = INNER_FILL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (infill == INNER_FILL)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* clear pixels in progress bar */
|
|
|
|
screen->fillrect(inner_x, inner_y, inner_wd, inner_ht);
|
|
|
|
}
|
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
screen->set_drawmode(DRMODE_SOLID);
|
|
|
|
|
2010-10-03 14:19:30 +00:00
|
|
|
if (flags & INNER_NOFILL)
|
|
|
|
return;
|
|
|
|
|
2006-10-13 04:16:49 +00:00
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
if (infill == INNER_BGFILL)
|
|
|
|
{
|
|
|
|
/* fill inner area with current background color */
|
|
|
|
unsigned fg = screen->get_foreground();
|
|
|
|
screen->set_foreground(screen->get_background());
|
|
|
|
screen->fillrect(inner_x, inner_y, inner_wd, inner_ht);
|
|
|
|
screen->set_foreground(fg);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (flags & HORIZONTAL)
|
|
|
|
{
|
|
|
|
inner_x += start;
|
|
|
|
inner_wd = size;
|
|
|
|
}
|
2005-10-28 00:00:00 +00:00
|
|
|
else
|
2006-10-13 04:16:49 +00:00
|
|
|
{
|
|
|
|
inner_y += start;
|
|
|
|
inner_ht = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
screen->fillrect(inner_x, inner_y, inner_wd, inner_ht);
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
2006-02-10 13:57:11 +00:00
|
|
|
|
2010-05-20 15:27:17 +00:00
|
|
|
void gui_bitmap_scrollbar_draw(struct screen * screen, struct bitmap *bm, int x, int y,
|
2006-02-10 13:57:11 +00:00
|
|
|
int width, int height, int items,
|
|
|
|
int min_shown, int max_shown,
|
2006-10-13 04:16:49 +00:00
|
|
|
unsigned flags)
|
2006-02-10 13:57:11 +00:00
|
|
|
{
|
|
|
|
int start;
|
|
|
|
int size;
|
2007-11-25 14:07:40 +00:00
|
|
|
int inner_len;
|
A bunch of new features for the bar type tags (%pb, %pv, %bl, etc):
* the bar orientation (horiz/vert) is now chosen based on the width and heigt values (or can be forced).
* the fill direction can now be inverted (fill right to left, or top to bottom is considered inverted)
* It can now draw a slider type bar instead of a fill type (or indeed a slider with a fill type)
To configure the new bar, any (or all) of the following params can be used after the bmp filename (order makes no difference either):
invert - cause the bar to fill in the inverted direction
vertical - draw a vertical bar (not needed if the height > width)
horizontal - draw a horizontal bar (this is obviously the default)
nofill - dont draw the filling bar (this still draws the outline, obviously pointless without the slider param)
slider - draw an image for the slider. The next param MUST be the label of the image to draw. No option to use a subimage here, so the whole image needs to be the image you want on the slider.
example: %pb(0,0,-,-,-,nofill, slider, slider_image, invert) - draw a boring horizontal progressbar which doesnt fill and only draws the image "slider_image" which moves right to left.
the slider type might need some tweaking. let us know how it goes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27821 a1c6a512-1295-4272-9138-f99709370657
2010-08-15 14:13:36 +00:00
|
|
|
int startx = 0, starty = 0;
|
2006-02-10 13:57:11 +00:00
|
|
|
|
|
|
|
screen->set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
|
|
|
|
|
|
|
|
/* clear pixels in progress bar */
|
New option for the bar tags: 'backdrop, <label>' will draw another image under the progressbar (only works with image and slider bars)
example:
%V(22,253,198,14,-)
%xl(a,PLAY_BAR_BACKDROP-240x320x16.bmp,0,0)
%pb(0,0,198,14,PLAY_BAR-240x320x16.bmp, backdrop, a)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29127 a1c6a512-1295-4272-9138-f99709370657
2011-01-24 09:04:28 +00:00
|
|
|
if ((flags&DONT_CLEAR_EXCESS) == 0)
|
|
|
|
screen->fillrect(x, y, width, height);
|
2010-10-03 14:19:30 +00:00
|
|
|
|
|
|
|
screen->set_drawmode(DRMODE_SOLID);
|
|
|
|
|
|
|
|
if (flags & INNER_NOFILL)
|
|
|
|
return;
|
|
|
|
|
A bunch of new features for the bar type tags (%pb, %pv, %bl, etc):
* the bar orientation (horiz/vert) is now chosen based on the width and heigt values (or can be forced).
* the fill direction can now be inverted (fill right to left, or top to bottom is considered inverted)
* It can now draw a slider type bar instead of a fill type (or indeed a slider with a fill type)
To configure the new bar, any (or all) of the following params can be used after the bmp filename (order makes no difference either):
invert - cause the bar to fill in the inverted direction
vertical - draw a vertical bar (not needed if the height > width)
horizontal - draw a horizontal bar (this is obviously the default)
nofill - dont draw the filling bar (this still draws the outline, obviously pointless without the slider param)
slider - draw an image for the slider. The next param MUST be the label of the image to draw. No option to use a subimage here, so the whole image needs to be the image you want on the slider.
example: %pb(0,0,-,-,-,nofill, slider, slider_image, invert) - draw a boring horizontal progressbar which doesnt fill and only draws the image "slider_image" which moves right to left.
the slider type might need some tweaking. let us know how it goes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27821 a1c6a512-1295-4272-9138-f99709370657
2010-08-15 14:13:36 +00:00
|
|
|
if (flags & INVERTFILL)
|
|
|
|
{
|
|
|
|
min_shown = items - max_shown;
|
|
|
|
max_shown = items;
|
|
|
|
}
|
2006-02-10 13:57:11 +00:00
|
|
|
|
2006-10-13 04:25:47 +00:00
|
|
|
if (flags & HORIZONTAL)
|
2006-02-10 13:57:11 +00:00
|
|
|
inner_len = width;
|
2006-10-13 04:25:47 +00:00
|
|
|
else
|
|
|
|
inner_len = height;
|
2006-02-10 13:57:11 +00:00
|
|
|
|
2007-11-25 14:07:40 +00:00
|
|
|
scrollbar_helper(min_shown, max_shown, items, inner_len, &size, &start);
|
2006-02-10 13:57:11 +00:00
|
|
|
|
2006-10-13 04:16:49 +00:00
|
|
|
if (flags & HORIZONTAL) {
|
2010-02-16 13:38:30 +00:00
|
|
|
x += start;
|
|
|
|
width = size;
|
A bunch of new features for the bar type tags (%pb, %pv, %bl, etc):
* the bar orientation (horiz/vert) is now chosen based on the width and heigt values (or can be forced).
* the fill direction can now be inverted (fill right to left, or top to bottom is considered inverted)
* It can now draw a slider type bar instead of a fill type (or indeed a slider with a fill type)
To configure the new bar, any (or all) of the following params can be used after the bmp filename (order makes no difference either):
invert - cause the bar to fill in the inverted direction
vertical - draw a vertical bar (not needed if the height > width)
horizontal - draw a horizontal bar (this is obviously the default)
nofill - dont draw the filling bar (this still draws the outline, obviously pointless without the slider param)
slider - draw an image for the slider. The next param MUST be the label of the image to draw. No option to use a subimage here, so the whole image needs to be the image you want on the slider.
example: %pb(0,0,-,-,-,nofill, slider, slider_image, invert) - draw a boring horizontal progressbar which doesnt fill and only draws the image "slider_image" which moves right to left.
the slider type might need some tweaking. let us know how it goes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27821 a1c6a512-1295-4272-9138-f99709370657
2010-08-15 14:13:36 +00:00
|
|
|
if (flags & INVERTFILL)
|
|
|
|
startx = start;
|
2006-02-10 13:57:11 +00:00
|
|
|
} else {
|
2010-02-16 13:38:30 +00:00
|
|
|
y += start;
|
|
|
|
height = size;
|
A bunch of new features for the bar type tags (%pb, %pv, %bl, etc):
* the bar orientation (horiz/vert) is now chosen based on the width and heigt values (or can be forced).
* the fill direction can now be inverted (fill right to left, or top to bottom is considered inverted)
* It can now draw a slider type bar instead of a fill type (or indeed a slider with a fill type)
To configure the new bar, any (or all) of the following params can be used after the bmp filename (order makes no difference either):
invert - cause the bar to fill in the inverted direction
vertical - draw a vertical bar (not needed if the height > width)
horizontal - draw a horizontal bar (this is obviously the default)
nofill - dont draw the filling bar (this still draws the outline, obviously pointless without the slider param)
slider - draw an image for the slider. The next param MUST be the label of the image to draw. No option to use a subimage here, so the whole image needs to be the image you want on the slider.
example: %pb(0,0,-,-,-,nofill, slider, slider_image, invert) - draw a boring horizontal progressbar which doesnt fill and only draws the image "slider_image" which moves right to left.
the slider type might need some tweaking. let us know how it goes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27821 a1c6a512-1295-4272-9138-f99709370657
2010-08-15 14:13:36 +00:00
|
|
|
if (flags & INVERTFILL)
|
|
|
|
starty = start;
|
2010-02-16 13:38:30 +00:00
|
|
|
}
|
|
|
|
|
2010-10-08 14:26:36 +00:00
|
|
|
if (bm->width < startx)
|
|
|
|
width = 0;
|
|
|
|
else if (bm->width < startx + width)
|
|
|
|
width = bm->width - startx;
|
|
|
|
if (bm->height < starty)
|
|
|
|
height = 0;
|
|
|
|
else if (bm->height < starty + height)
|
|
|
|
height = bm->height - starty;
|
|
|
|
|
2011-11-08 21:34:46 +00:00
|
|
|
screen->bmp_part(bm, startx, starty, x, y, width, height);
|
2006-02-10 13:57:11 +00:00
|
|
|
}
|
2007-08-05 10:25:00 +00:00
|
|
|
|
|
|
|
void show_busy_slider(struct screen *s, int x, int y, int width, int height)
|
|
|
|
{
|
|
|
|
static int start = 0, dir = 1;
|
|
|
|
gui_scrollbar_draw(s, x, y, width, height, 100,
|
|
|
|
start, start+20, HORIZONTAL);
|
|
|
|
#if NB_SCREENS > 1
|
|
|
|
if (s->screen_type == SCREEN_MAIN)
|
|
|
|
#endif
|
2010-02-16 13:38:30 +00:00
|
|
|
{
|
2007-08-05 10:25:00 +00:00
|
|
|
start += (dir*2);
|
|
|
|
if (start > 79)
|
|
|
|
dir = -1;
|
|
|
|
else if (start < 1)
|
|
|
|
dir = 1;
|
|
|
|
}
|
|
|
|
}
|