2016-10-08 12:57:59 -04:00
|
|
|
#ifndef ROFI_LISTVIEW_H
|
|
|
|
#define ROFI_LISTVIEW_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup listview listview
|
2016-10-13 03:22:08 -04:00
|
|
|
* @ingroup widget
|
2016-10-08 12:57:59 -04:00
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct _listview listview;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
LISTVIEW_SCROLL_PER_PAGE,
|
|
|
|
LISTVIEW_SCROLL_CONTINIOUS
|
|
|
|
} ScrollType;
|
|
|
|
|
|
|
|
typedef void ( *listview_update_callback )( textbox *tb, unsigned int entry, void *udata, TextBoxFontType type, gboolean full );
|
|
|
|
typedef void ( *listview_mouse_activated_cb )( listview *, xcb_button_press_event_t *, void * );
|
|
|
|
|
|
|
|
listview *listview_create ( listview_update_callback cb, void *udata, unsigned int eh );
|
|
|
|
|
|
|
|
void listview_set_num_elements ( listview *lv, unsigned int rows );
|
|
|
|
void listview_set_selected ( listview *lv, unsigned int selected );
|
|
|
|
unsigned int listview_get_selected ( listview *lv );
|
|
|
|
unsigned int listview_get_desired_height ( listview *lv );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param state The listview handle
|
|
|
|
*
|
|
|
|
* Move the selection one row up.
|
|
|
|
* - Wrap around.
|
|
|
|
*/
|
|
|
|
void listview_nav_up ( listview *lv );
|
|
|
|
/**
|
|
|
|
* @param lv listview handle.
|
|
|
|
*
|
|
|
|
* Move the selection one row down.
|
|
|
|
* - Wrap around.
|
|
|
|
*/
|
|
|
|
void listview_nav_down ( listview *lv );
|
|
|
|
/**
|
|
|
|
* @param state The listview handle
|
|
|
|
*
|
|
|
|
* Move the selection one column to the right.
|
|
|
|
* - No wrap around.
|
|
|
|
* - Do not move to top row when at start.
|
|
|
|
*/
|
|
|
|
void listview_nav_right ( listview *lv );
|
|
|
|
/**
|
|
|
|
* @param state The listview handle
|
|
|
|
*
|
|
|
|
* Move the selection one column to the left.
|
|
|
|
* - No wrap around.
|
|
|
|
*/
|
|
|
|
void listview_nav_left ( listview *lv );
|
|
|
|
/**
|
|
|
|
* @param state The listview handle
|
|
|
|
*
|
|
|
|
* Move the selection one page down.
|
|
|
|
* - No wrap around.
|
|
|
|
* - Clip at top/bottom
|
|
|
|
*/
|
|
|
|
void listview_nav_page_next ( listview *lv );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param state The current RofiViewState
|
|
|
|
*
|
|
|
|
* Move the selection one page up.
|
|
|
|
* - No wrap around.
|
|
|
|
* - Clip at top/bottom
|
|
|
|
*/
|
|
|
|
void listview_nav_page_prev ( listview *lv );
|
|
|
|
/**
|
|
|
|
* Configuration.
|
|
|
|
*/
|
|
|
|
void listview_set_padding ( listview *lv, unsigned int padding );
|
|
|
|
void listview_set_max_lines ( listview *lv, unsigned int lines );
|
|
|
|
void listview_set_max_columns ( listview *lv, unsigned int columns );
|
|
|
|
void listview_set_fixed_num_lines ( listview *lv, gboolean enabled );
|
|
|
|
void listview_set_hide_scrollbar ( listview *lv, gboolean enabled );
|
|
|
|
void listview_set_scrollbar_width ( listview *lv, unsigned int width );
|
|
|
|
void listview_set_cycle ( listview *lv, gboolean cycle );
|
|
|
|
void listview_set_scroll_type ( listview *lv, ScrollType type );
|
|
|
|
void listview_set_mouse_activated_cb ( listview *lv, listview_mouse_activated_cb cb, void *udata );
|
|
|
|
void listview_set_multi_select ( listview *lv, gboolean enable );
|
|
|
|
/* @} */
|
|
|
|
|
|
|
|
#endif // ROFI_LISTVIEW_H
|