rofi/source/widgets/scrollbar.c

158 lines
5.0 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
#include "theme.h"
static void scrollbar_draw ( widget *, cairo_t * );
static void scrollbar_free ( widget * );
static gboolean scrollbar_motion_notify ( widget *wid, xcb_motion_notify_event_t *xme );
2016-12-28 11:57:58 +00:00
scrollbar *scrollbar_create ( const char *name, int width )
2015-09-03 20:12:20 +00:00
{
scrollbar *sb = g_malloc0 ( sizeof ( scrollbar ) );
2016-12-28 11:57:58 +00:00
widget_init ( WIDGET (sb), name, "@scrollbar" );
sb->widget.x = 0;
sb->widget.y = 0;
sb->widget.w = sb->widget.pad.left+sb->widget.pad.right+width;
sb->widget.h = sb->widget.pad.top+sb->widget.pad.top;
sb->widget.draw = scrollbar_draw;
sb->widget.free = scrollbar_free;
sb->widget.motion_notify = scrollbar_motion_notify;
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
}
2016-10-26 06:24:34 +00:00
/**
* The range is the height - handle length.
* r = h - handle;
* handle is the element length of the handle* length of one element.
* handle = r / ( num ) * hl
*
* r = h - r / ( num) *hl
* r*num = num*h - r*hl
* r*num+r*hl = num*h;
* r ( num+hl ) = num*h
* r = (num*h)/(num+hl)
*/
static void scrollbar_draw ( widget *wid, cairo_t *draw )
2015-09-03 20:12:20 +00:00
{
2016-10-26 06:24:34 +00:00
scrollbar *sb = (scrollbar *) wid;
2016-12-28 11:57:58 +00:00
unsigned int wh = wid->h -wid->pad.top-wid->pad.bottom;
// Calculate position and size.
2016-12-28 11:57:58 +00:00
unsigned int r = ( sb->length * wh ) / ( (double) ( sb->length + sb->pos_length ) );
2016-10-26 06:24:34 +00:00
unsigned int handle = wid->h - r;
double sec = ( ( r ) / (double) ( sb->length - 1 ) );
unsigned int height = handle;
unsigned int y = sb->pos * sec;
// Set max pos.
2016-12-28 11:57:58 +00:00
y = MIN ( y, wh - handle );
// Never go out of bar.
height = MAX ( 2, height );
// Cap length;
color_separator ( draw );
2016-12-28 11:57:58 +00:00
rofi_theme_get_color ( sb->widget.class_name, sb->widget.name, NULL, "foreground", draw );
2015-09-26 18:34:34 +00:00
2016-12-28 11:57:58 +00:00
cairo_rectangle ( draw,
wid->pad.left,
wid->pad.top + y,
wid->w-wid->pad.right-wid->pad.left,
height );
cairo_fill ( draw );
}
static gboolean scrollbar_motion_notify ( widget *wid, xcb_motion_notify_event_t *xme )
{
xcb_button_press_event_t xle;
xle.event_x = xme->event_x;
xle.event_y = xme->event_y;
return widget_clicked ( WIDGET ( wid ), &xle );
}
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 ) ) {
2016-12-15 08:17:39 +00:00
short r = ( sb->length * sb->widget.h ) / ( (double) ( sb->length + sb->pos_length ) );
short handle = sb->widget.h - r;
2016-10-26 06:24:34 +00:00
double sec = ( ( r ) / (double) ( sb->length - 1 ) );
2016-12-15 08:17:39 +00:00
short half_handle = handle / 2;
y -= sb->widget.y + half_handle;
y = MIN ( MAX ( 0, y ), sb->widget.h - 2 * half_handle );
2016-10-26 06:24:34 +00:00
unsigned int sel = ( ( y ) / sec );
2015-09-26 18:34:34 +00:00
return MIN ( sel, sb->length - 1 );
}
2015-09-04 19:08:23 +00:00
}
return 0;
2015-09-03 20:12:20 +00:00
}
2016-12-28 11:57:58 +00:00
void scrollbar_set_width ( scrollbar *sb, int width )
{
width += sb->widget.pad.left;
width += sb->widget.pad.right;
sb->widget.w = width;
}