2015-09-03 16:12:20 -04:00
|
|
|
/**
|
|
|
|
* MIT/X11 License
|
2015-12-31 18:27:00 -05:00
|
|
|
* Modified (c) 2015-2016 Qball Cow <qball@gmpclient.org>
|
2015-09-03 16:12:20 -04: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>
|
2016-02-21 07:10:32 -05:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2015-09-03 16:12:20 -04:00
|
|
|
#include <glib.h>
|
|
|
|
#include "scrollbar.h"
|
|
|
|
#include "x11-helper.h"
|
2016-01-07 10:01:56 -05:00
|
|
|
#include "settings.h"
|
2015-09-03 16:12:20 -04:00
|
|
|
|
2015-09-26 14:34:34 -04:00
|
|
|
scrollbar *scrollbar_create ( short x, short y, short w, short h )
|
2015-09-03 16:12:20 -04:00
|
|
|
{
|
|
|
|
scrollbar *sb = g_malloc0 ( sizeof ( scrollbar ) );
|
|
|
|
|
2016-01-09 10:22:09 -05:00
|
|
|
sb->widget.x = x;
|
|
|
|
sb->widget.y = y;
|
|
|
|
sb->widget.w = MAX ( 1, w );
|
|
|
|
sb->widget.h = MAX ( 1, h );
|
2015-09-03 16:12:20 -04:00
|
|
|
|
2015-09-04 02:26:57 -04:00
|
|
|
sb->length = 10;
|
2015-09-03 16:12:20 -04:00
|
|
|
sb->pos = 0;
|
|
|
|
sb->pos_length = 4;
|
|
|
|
|
|
|
|
// Create GC.
|
|
|
|
return sb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void scrollbar_free ( scrollbar *sb )
|
|
|
|
{
|
2015-09-04 15:08:23 -04:00
|
|
|
if ( sb != NULL ) {
|
|
|
|
g_free ( sb );
|
|
|
|
}
|
2015-09-03 16:12:20 -04:00
|
|
|
}
|
|
|
|
|
2015-09-04 02:42:09 -04:00
|
|
|
void scrollbar_set_max_value ( scrollbar *sb, unsigned int max )
|
2015-09-03 16:12:20 -04:00
|
|
|
{
|
2015-09-04 15:08:23 -04:00
|
|
|
if ( sb != NULL ) {
|
2015-10-18 13:02:19 -04:00
|
|
|
sb->length = MAX ( 1u, max );
|
2015-09-04 15:08:23 -04:00
|
|
|
}
|
2015-09-03 16:12:20 -04:00
|
|
|
}
|
|
|
|
|
2015-09-04 02:42:09 -04:00
|
|
|
void scrollbar_set_handle ( scrollbar *sb, unsigned int pos )
|
2015-09-03 16:12:20 -04:00
|
|
|
{
|
2015-09-04 15:08:23 -04:00
|
|
|
if ( sb != NULL ) {
|
2015-10-18 13:02:19 -04:00
|
|
|
sb->pos = MIN ( sb->length, pos );
|
2015-09-04 15:08:23 -04:00
|
|
|
}
|
2015-09-03 16:12:20 -04:00
|
|
|
}
|
|
|
|
|
2015-09-04 02:42:09 -04:00
|
|
|
void scrollbar_set_handle_length ( scrollbar *sb, unsigned int pos_length )
|
2015-09-03 16:12:20 -04:00
|
|
|
{
|
2015-09-04 15:08:23 -04:00
|
|
|
if ( sb != NULL ) {
|
2015-10-18 13:02:19 -04:00
|
|
|
sb->pos_length = MIN ( sb->length, MAX ( 1u, pos_length ) );
|
2015-09-04 15:08:23 -04:00
|
|
|
}
|
2015-09-03 16:12:20 -04:00
|
|
|
}
|
|
|
|
|
2015-09-26 14:34:34 -04:00
|
|
|
void scrollbar_draw ( scrollbar *sb, cairo_t *draw )
|
2015-09-03 16:12:20 -04:00
|
|
|
{
|
2015-09-04 15:08:23 -04:00
|
|
|
if ( sb != NULL ) {
|
|
|
|
// Calculate position and size.
|
2016-01-09 10:22:09 -05:00
|
|
|
const short bh = sb->widget.h - 0;
|
2015-09-04 15:08:23 -04:00
|
|
|
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
|
2016-02-21 13:42:32 -05:00
|
|
|
color_separator ( draw );
|
2015-09-26 14:34:34 -04:00
|
|
|
|
2016-01-09 10:22:09 -05:00
|
|
|
cairo_rectangle ( draw, sb->widget.x + config.line_margin, sb->widget.y + y, sb->widget.w - config.line_margin, height );
|
2015-09-26 14:34:34 -04:00
|
|
|
cairo_fill ( draw );
|
2015-09-04 15:08:23 -04:00
|
|
|
}
|
2015-09-04 02:26:57 -04:00
|
|
|
}
|
2015-09-17 11:32:51 -04:00
|
|
|
void scrollbar_resize ( scrollbar *sb, int w, int h )
|
|
|
|
{
|
|
|
|
if ( sb != NULL ) {
|
2015-09-19 06:21:30 -04:00
|
|
|
if ( h > 0 ) {
|
2016-01-09 10:22:09 -05:00
|
|
|
sb->widget.h = h;
|
2015-09-17 11:32:51 -04:00
|
|
|
}
|
2015-09-19 06:21:30 -04:00
|
|
|
if ( w > 0 ) {
|
2016-01-09 10:22:09 -05:00
|
|
|
sb->widget.w = w;
|
2015-09-17 11:32:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-09-04 02:26:57 -04:00
|
|
|
unsigned int scrollbar_clicked ( scrollbar *sb, int y )
|
|
|
|
{
|
2015-09-04 15:08:23 -04:00
|
|
|
if ( sb != NULL ) {
|
2016-01-09 10:22:09 -05:00
|
|
|
if ( y >= sb->widget.y && y < ( sb->widget.y + sb->widget.h ) ) {
|
|
|
|
y -= sb->widget.y;
|
|
|
|
y = MIN ( MAX ( 1, y ), sb->widget.h - 1 ) - 1;
|
|
|
|
const short bh = sb->widget.h - 2;
|
2015-09-26 14:34:34 -04:00
|
|
|
float sec = ( ( bh ) / (float) sb->length );
|
|
|
|
unsigned int sel = y / sec;
|
|
|
|
return MIN ( sel, sb->length - 1 );
|
|
|
|
}
|
2015-09-04 15:08:23 -04:00
|
|
|
}
|
|
|
|
return 0;
|
2015-09-03 16:12:20 -04:00
|
|
|
}
|