2015-09-03 16:12:20 -04:00
|
|
|
#ifndef ROFI_SCROLLBAR_H
|
|
|
|
#define ROFI_SCROLLBAR_H
|
|
|
|
|
2015-09-04 02:42:09 -04:00
|
|
|
/**
|
|
|
|
* Internal structure for the scrollbar.
|
|
|
|
*/
|
2015-09-03 16:12:20 -04:00
|
|
|
typedef struct _scrollbar
|
|
|
|
{
|
|
|
|
Window window, parent;
|
|
|
|
short x, y, w, h;
|
|
|
|
GC gc;
|
|
|
|
unsigned int length;
|
|
|
|
unsigned int pos;
|
|
|
|
unsigned int pos_length;
|
|
|
|
} scrollbar;
|
|
|
|
|
2015-09-04 02:42:09 -04:00
|
|
|
/**
|
|
|
|
* @param parent the parent window
|
|
|
|
* @param vinfo The XVisualInfo to use when creating new window
|
|
|
|
* @param map The colormap to use for new window
|
|
|
|
* @param x The x coordinate (relative to parent) to position the new scrollbar
|
|
|
|
* @param y The y coordinate (relative to parent) to position the new scrollbar
|
|
|
|
* @param w The width of the scrollbar
|
|
|
|
* @param h The height of the scrollbar
|
|
|
|
*
|
|
|
|
* Create a new scrollbar
|
|
|
|
*
|
|
|
|
* @returns the scrollbar object.
|
|
|
|
*/
|
2015-09-03 16:12:20 -04:00
|
|
|
scrollbar *scrollbar_create ( Window parent, XVisualInfo *vinfo, Colormap map,
|
|
|
|
short x, short y, short w, short h );
|
|
|
|
|
2015-09-04 02:42:09 -04:00
|
|
|
/**
|
|
|
|
* @param sb scrollbar object
|
|
|
|
*
|
|
|
|
* Hide (unmap) the scrollbar.
|
|
|
|
*/
|
2015-09-03 16:12:20 -04:00
|
|
|
void scrollbar_hide ( scrollbar *sb );
|
2015-09-04 02:42:09 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param sb scrollbar object
|
|
|
|
*
|
|
|
|
* Show (map) the scrollbar.
|
|
|
|
*/
|
2015-09-03 16:12:20 -04:00
|
|
|
void scrollbar_show ( scrollbar *sb );
|
2015-09-04 02:42:09 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param sb scrollbar object
|
|
|
|
*
|
|
|
|
* Free the resources used by the scrollbar.
|
|
|
|
*/
|
2015-09-03 16:12:20 -04:00
|
|
|
void scrollbar_free ( scrollbar *sb );
|
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
|
|
|
|
*
|
|
|
|
* Draw the scrollbar, used after expose event or update
|
|
|
|
*/
|
2015-09-03 16:12:20 -04:00
|
|
|
void scrollbar_draw ( scrollbar *sb );
|
2015-09-04 02:42:09 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param sb scrollbar object
|
|
|
|
* @param y clicked position
|
|
|
|
*
|
|
|
|
* Calculate the position of the click relative to the max value of bar
|
|
|
|
*/
|
2015-09-04 02:26:57 -04:00
|
|
|
unsigned int scrollbar_clicked ( scrollbar *sb, int y );
|
2015-09-04 02:42:09 -04:00
|
|
|
|
2015-09-17 11:32:51 -04:00
|
|
|
/**
|
|
|
|
* @param sb scrollbar object
|
|
|
|
* @param w new width in pixels
|
|
|
|
* @param h new height in pixels
|
|
|
|
*
|
|
|
|
* Resize the scrollbar.
|
|
|
|
*/
|
|
|
|
void scrollbar_resize ( scrollbar *sb, int w, int h );
|
2015-09-03 16:12:20 -04:00
|
|
|
#endif // ROFI_SCROLLBAR_H
|