rofi/source/widgets/scrollbar.c

120 lines
3.6 KiB
C
Raw Normal View History

2015-09-03 20:12:20 +00:00
/**
* MIT/X11 License
2015-12-31 23:27:00 +00:00
* Modified (c) 2015-2016 Qball Cow <qball@gmpclient.org>
2015-09-03 20:12:20 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <config.h>
#include <xkbcommon/xkbcommon.h>
2015-09-03 20:12:20 +00:00
#include <glib.h>
#include "widgets/scrollbar.h"
2015-09-03 20:12:20 +00:00
#include "x11-helper.h"
2016-01-07 15:01:56 +00:00
#include "settings.h"
2015-09-03 20:12:20 +00:00
static void scrollbar_draw ( widget *, cairo_t * );
static void scrollbar_free ( widget * );
2015-09-26 18:34:34 +00:00
scrollbar *scrollbar_create ( short x, short y, short w, short h )
2015-09-03 20:12:20 +00:00
{
scrollbar *sb = g_malloc0 ( sizeof ( scrollbar ) );
sb->widget.x = x;
sb->widget.y = y;
sb->widget.w = MAX ( 1, w );
sb->widget.h = MAX ( 1, h );
sb->widget.draw = scrollbar_draw;
sb->widget.free = scrollbar_free;
2015-09-03 20:12:20 +00:00
sb->length = 10;
2015-09-03 20:12:20 +00:00
sb->pos = 0;
sb->pos_length = 4;
2016-06-26 13:48:12 +00:00
// Enabled by default
sb->widget.enabled = TRUE;
2015-09-03 20:12:20 +00:00
return sb;
}
static void scrollbar_free ( widget *wid )
2015-09-03 20:12:20 +00:00
{
scrollbar *sb = (scrollbar *) wid;
g_free ( sb );
2015-09-03 20:12:20 +00:00
}
void scrollbar_set_max_value ( scrollbar *sb, unsigned int max )
2015-09-03 20:12:20 +00:00
{
2015-09-04 19:08:23 +00:00
if ( sb != NULL ) {
2015-10-18 17:02:19 +00:00
sb->length = MAX ( 1u, max );
2015-09-04 19:08:23 +00:00
}
2015-09-03 20:12:20 +00:00
}
void scrollbar_set_handle ( scrollbar *sb, unsigned int pos )
2015-09-03 20:12:20 +00:00
{
2015-09-04 19:08:23 +00:00
if ( sb != NULL ) {
2015-10-18 17:02:19 +00:00
sb->pos = MIN ( sb->length, pos );
2015-09-04 19:08:23 +00:00
}
2015-09-03 20:12:20 +00:00
}
void scrollbar_set_handle_length ( scrollbar *sb, unsigned int pos_length )
2015-09-03 20:12:20 +00:00
{
2015-09-04 19:08:23 +00:00
if ( sb != NULL ) {
2015-10-18 17:02:19 +00:00
sb->pos_length = MIN ( sb->length, MAX ( 1u, pos_length ) );
2015-09-04 19:08:23 +00:00
}
2015-09-03 20:12:20 +00:00
}
static void scrollbar_draw ( widget *wid, cairo_t *draw )
2015-09-03 20:12:20 +00:00
{
scrollbar *sb = (scrollbar *) wid;
// Calculate position and size.
const short bh = sb->widget.h - 0;
float sec = ( ( bh ) / (float) sb->length );
short height = sb->pos_length * sec;
short y = sb->pos * sec;
// Set max pos.
y = MIN ( y, bh - 2 );
// Never go out of bar.
height = MAX ( 2, height );
// Cap length;
height = MIN ( bh - y + 1, ( height ) );
// Redraw base window
color_separator ( draw );
2015-09-26 18:34:34 +00:00
cairo_rectangle ( draw, sb->widget.x, sb->widget.y + y, sb->widget.w, height );
cairo_fill ( draw );
}
2016-10-24 15:48:04 +00:00
// TODO
// This should behave more like a real scrollbar.
2016-08-23 22:39:56 +00:00
unsigned int scrollbar_clicked ( const scrollbar *sb, int y )
{
2015-09-04 19:08:23 +00:00
if ( sb != NULL ) {
2016-10-24 15:48:04 +00:00
if ( y >= sb->widget.y && y <= ( sb->widget.y + sb->widget.h ) ) {
y -= sb->widget.y;
2016-10-24 15:48:04 +00:00
y = MIN ( MAX ( 0, y ), sb->widget.h );
const short bh = sb->widget.h;
2015-09-26 18:34:34 +00:00
float sec = ( ( bh ) / (float) sb->length );
unsigned int sel = y / sec;
return MIN ( sel, sb->length - 1 );
}
2015-09-04 19:08:23 +00:00
}
return 0;
2015-09-03 20:12:20 +00:00
}