mirror of
https://github.com/lbonn/rofi
synced 2024-11-15 16:38:00 +00:00
3c64507f02
* Initial support for using boxes for packing widgets. * Make CapiTalIzation more consistent * Move widgets to subdirectory * Removed nolonger needed resize function. * Small cleanup * When switching mode, reuse view, don't rebuild it. Reduces artifacts. * Needs cleaning up. * Remove separate prompt argument, use display_name * Simplify run-switcher code. * Add notion of parents, and trigger parent update on resize. * Use widget_get_height wrapper, avoid crash * Size separator width based on height. (indent) * TODO add margin to box. * First draft version of listview. * Add scrollbar to listview widget * Add padding option to box * Move access to global config out of widget. (1/2 done) * Remove printf * Make listview not access global config * Add click support, implement on mode buttons. * Re-introduce mouse handling on list-view. * TODO draggin on scrollbar. * Fix multi-select * Fix warnings * Fix include
90 lines
2.5 KiB
C
90 lines
2.5 KiB
C
#ifndef ROFI_LISTVIEW_H
|
|
#define ROFI_LISTVIEW_H
|
|
|
|
/**
|
|
* @defgroup listview listview
|
|
* @ingroup widgets
|
|
*
|
|
* @{
|
|
*/
|
|
|
|
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
|