2015-09-03 16:12:20 -04:00
|
|
|
#ifndef ROFI_SCROLLBAR_H
|
|
|
|
#define ROFI_SCROLLBAR_H
|
2015-09-26 14:34:34 -04:00
|
|
|
#include <cairo.h>
|
2016-10-09 04:13:15 -04:00
|
|
|
#include "widgets/widget.h"
|
|
|
|
#include "widgets/widget-internal.h"
|
2016-01-07 02:54:24 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup Scrollbar Scrollbar
|
2016-10-13 03:22:08 -04:00
|
|
|
* @ingroup widget
|
2016-01-07 02:54:24 -05:00
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
2015-09-04 02:42:09 -04:00
|
|
|
/**
|
|
|
|
* Internal structure for the scrollbar.
|
|
|
|
*/
|
2015-09-03 16:12:20 -04:00
|
|
|
typedef struct _scrollbar
|
|
|
|
{
|
2016-10-08 12:57:59 -04:00
|
|
|
widget widget;
|
2015-09-03 16:12:20 -04:00
|
|
|
unsigned int length;
|
|
|
|
unsigned int pos;
|
|
|
|
unsigned int pos_length;
|
2017-01-06 09:36:06 -05:00
|
|
|
Distance width;
|
2015-09-03 16:12:20 -04:00
|
|
|
} scrollbar;
|
|
|
|
|
2015-09-04 02:42:09 -04:00
|
|
|
/**
|
2016-12-11 11:06:31 -05:00
|
|
|
* @param name The name of the widget.
|
2015-09-04 02:42:09 -04:00
|
|
|
*
|
|
|
|
* Create a new scrollbar
|
|
|
|
*
|
|
|
|
* @returns the scrollbar object.
|
|
|
|
*/
|
2017-01-06 09:36:06 -05:00
|
|
|
scrollbar *scrollbar_create ( const char *name );
|
2015-09-04 02:42:09 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param sb scrollbar object
|
|
|
|
* @param pos_length new length
|
|
|
|
*
|
|
|
|
* set the length of the handle relative to the max value of bar.
|
|
|
|
*/
|
|
|
|
void scrollbar_set_handle_length ( scrollbar *sb, unsigned int pos_length );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param sb scrollbar object
|
|
|
|
* @param pos new position
|
|
|
|
*
|
|
|
|
* set the position of the handle relative to the set max value of bar.
|
|
|
|
*/
|
|
|
|
void scrollbar_set_handle ( scrollbar *sb, unsigned int pos );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param sb scrollbar object
|
|
|
|
* @param max the new max
|
|
|
|
*
|
|
|
|
* set the max value of the bar.
|
|
|
|
*/
|
|
|
|
void scrollbar_set_max_value ( scrollbar *sb, unsigned int max );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param sb scrollbar object
|
|
|
|
* @param y clicked position
|
|
|
|
*
|
|
|
|
* Calculate the position of the click relative to the max value of bar
|
|
|
|
*/
|
2016-08-23 18:39:56 -04:00
|
|
|
unsigned int scrollbar_clicked ( const scrollbar *sb, int y );
|
2015-09-04 02:42:09 -04:00
|
|
|
|
2016-01-07 02:54:24 -05:00
|
|
|
/*@}*/
|
2015-09-03 16:12:20 -04:00
|
|
|
#endif // ROFI_SCROLLBAR_H
|