rofi/include/widgets/listview.h

216 lines
5.2 KiB
C
Raw Normal View History

#ifndef ROFI_LISTVIEW_H
#define ROFI_LISTVIEW_H
/**
* @defgroup listview listview
2016-10-13 07:22:08 +00:00
* @ingroup widget
*
* @{
*/
2016-11-15 07:24:06 +00:00
/**
* Handle to the listview.
* No internal fields should be accessed directly.
*/
typedef struct _listview listview;
2016-11-15 07:24:06 +00:00
/**
* The scrolling type used in the list view
*/
typedef enum
{
2016-11-15 07:24:06 +00:00
/** Flip through the pages. */
LISTVIEW_SCROLL_PER_PAGE,
2016-11-15 07:24:06 +00:00
/** keep selected item centered */
LISTVIEW_SCROLL_CONTINIOUS
} ScrollType;
2016-11-15 07:24:06 +00:00
/**
* @param tb The textbox to set
* @param entry The position of the textbox
* @param udata User data
* @param type The textbox font style to apply to this entry (normal, selected, alternative row)
* @param full If true Set both text and style.
*
* Update callback, this is called to set the value of each (visible) element.
*/
typedef void ( *listview_update_callback )( textbox *tb, unsigned int entry, void *udata, TextBoxFontType type, gboolean full );
2016-11-15 07:24:06 +00:00
/**
* Callback when a element is activated.
*/
typedef void ( *listview_mouse_activated_cb )( listview *, xcb_button_press_event_t *, void * );
2016-11-15 07:24:06 +00:00
/**
2017-01-01 17:40:49 +00:00
* @param name The name of the to be created widget.
2016-11-15 07:24:06 +00:00
* @param cb The update callback.
* @param udata The user data to pass to the callback
* @param eh The height of one element
* @param reverse Reverse the listview order.
2016-11-15 07:24:06 +00:00
*
* @returns a new listview
*/
listview *listview_create ( const char *name, listview_update_callback cb, void *udata, unsigned int eh, gboolean reverse );
2016-11-15 07:24:06 +00:00
/**
* @param lv The listview handle
* @param rows Number of elements
*
* Set the maximum number of elements to display.
*/
void listview_set_num_elements ( listview *lv, unsigned int rows );
2016-11-15 07:24:06 +00:00
/**
* @param lv The listview handle
* @param selected The row index to select
*
* Select the row, if selected > the number of rows, it selects the last one.
*/
void listview_set_selected ( listview *lv, unsigned int selected );
2016-11-15 07:24:06 +00:00
/**
* @param lv The listview handle
*
* Returns the selected row.
*
* @returns the selected row.
*/
unsigned int listview_get_selected ( listview *lv );
2016-11-15 07:24:06 +00:00
/**
2016-11-15 07:24:06 +00:00
* @param lv 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 );
/**
2016-11-15 20:54:31 +00:00
* @param lv 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 lv The listview handle
*
* Move the selection one column to the left.
* - No wrap around.
*/
void listview_nav_left ( listview *lv );
/**
* @param lv The listview handle
*
* Move the selection one page down.
* - No wrap around.
* - Clip at top/bottom
*/
void listview_nav_page_next ( listview *lv );
/**
* @param lv The listview handle
*
* Move the selection one page up.
* - No wrap around.
* - Clip at top/bottom
*/
void listview_nav_page_prev ( listview *lv );
2016-10-14 16:56:09 +00:00
/**
* @param lv Handler to the listview object
* @param enabled enable
*
* Hide the scrollbar.
*/
2016-12-09 21:16:31 +00:00
void listview_set_show_scrollbar ( listview *lv, gboolean enabled );
2016-10-14 16:56:09 +00:00
/**
* @param lv Handler to the listview object
* @param width Width in pixels
*
* Set the width of the scrollbar
*/
void listview_set_scrollbar_width ( listview *lv, unsigned int width );
2016-10-14 16:56:09 +00:00
/**
* @param lv Handler to the listview object
* @param cycle True for cycle mode
*
2016-10-15 13:39:08 +00:00
* Set cycle mode. On last entry go to first.
2016-10-14 16:56:09 +00:00
*/
void listview_set_cycle ( listview *lv, gboolean cycle );
2016-10-14 16:56:09 +00:00
/**
* @param lv Handler to the listview object
* @param type ScrollType
*
* Set the scroll type ScrollType::LISTVIEW_SCROLL_CONTINIOUS or ScrollType::LISTVIEW_SCROLL_PER_PAGE
*/
void listview_set_scroll_type ( listview *lv, ScrollType type );
2016-10-14 16:56:09 +00:00
/**
* @param lv Handler to the listview object
* @param cb The callback
* @param udata User data
*
* Set the mouse activated callback.
*/
void listview_set_mouse_activated_cb ( listview *lv, listview_mouse_activated_cb cb, void *udata );
2016-10-14 16:56:09 +00:00
/**
* @param lv Handler to the listview object
2016-11-15 20:54:31 +00:00
* @param enable boolean to enable/disable multi-select
2016-10-14 16:56:09 +00:00
*
* Enable,disable multi-select.
*/
void listview_set_multi_select ( listview *lv, gboolean enable );
2017-01-02 20:19:27 +00:00
/**
* @param lv Handler to the listview object.
* @param num_lines the maximum number of lines to display.
*
* Set the maximum number of lines to display.
*/
void listview_set_num_lines ( listview *lv, unsigned int num_lines );
/**
* @param lv Handler to the listview object.
*
* Get the maximum number of lines to display.
*
* @returns get the numger of lines to display.
*/
unsigned int listview_get_num_lines ( listview *lv );
/**
* @param lv Handler to the listview object.
*
* Get the fixed-height property.
*
* @returns get fixed-height.
*/
gboolean listview_get_fixed_num_lines ( listview *lv );
/**
* @param lv Handler to the listview object.
*
* Set fixed num lines mode.
*/
void listview_set_fixed_num_lines ( listview *lv );
2017-01-02 20:19:27 +00:00
/**
* @param lv Handler to the listview object.
* @param max_lines the maximum number of lines to display.
*
* Set the maximum number of lines to display.
*/
void listview_set_max_lines ( listview *lv, unsigned int max_lines );
/* @} */
#endif // ROFI_LISTVIEW_H