1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-25 13:55:34 -05:00
rofi/include/widgets/listview.h

294 lines
7.4 KiB
C
Raw Normal View History

/*
* rofi
*
* MIT/X11 License
* Copyright © 2013-2017 Qball Cow <qball@gmpclient.org>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
#ifndef ROFI_LISTVIEW_H
#define ROFI_LISTVIEW_H
2021-08-17 19:16:45 -04:00
#include "widgets/textbox.h"
2022-11-19 15:03:22 -05:00
#include <pango/pango.h>
2021-08-17 19:16:45 -04:00
/**
* @defgroup listview listview
2016-10-13 03:22:08 -04:00
* @ingroup widget
*
* @{
*/
2016-11-15 02:24:06 -05:00
/**
* Handle to the listview.
* No internal fields should be accessed directly.
*/
typedef struct _listview listview;
2016-11-15 02:24:06 -05:00
/**
* The scrolling type used in the list view
*/
typedef enum {
/** Flip through the pages. */
LISTVIEW_SCROLL_PER_PAGE,
/** keep selected item centered */
LISTVIEW_SCROLL_CONTINIOUS
} ScrollType;
2016-11-15 02:24:06 -05:00
/**
* @param tb The textbox to set
* @param ico The icon to set
2016-11-15 02:24:06 -05:00
* @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)
2016-11-15 02:24:06 -05:00
* @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, icon *ico,
unsigned int entry, void *udata,
TextBoxFontType *type, gboolean full);
2016-11-15 02:24:06 -05:00
/**
* @param lv The listview
* @param index the selected row
* @param udata user data
*
* Selection changed callback.
*/
typedef void (*listview_selection_changed_callback)(listview *lv,
unsigned int index,
void *udata);
2016-11-15 02:24:06 -05:00
/**
* Callback when a element is activated.
*/
typedef void (*listview_mouse_activated_cb)(listview *, gboolean, void *);
[WIP] xdg thumbnails fetching with fallback on mimetype icons (#1939) * implemented xdg thumbnails fetching with fallback on mimetype icons for menu entries in filebrowser mode * included original license text * added md5 header and source file * implemented xdg compatible thumbnail's creation * added -preview-cmd string option to program settings * support custom command to create images for entries with thumbnail:// prefix * fix custom thumbnailer command crash caused by null uri when entry is not a valid filename * check entry_name is not NULL or empty when generating thumbnails; use snprintf to avoid static analyzer complains * avoid using gstrvbuilder to build thumbnailer command args * fixed static analyzer complain about always wrong condition * use g_spawn_check_exit_status to avoid bump to glib 2.70 * removed md5-c dependency and use glib checksum implementation * fixed meson build after md5-c library removal * support thumbnail generation in recursivebrowser mode * restored check rofi_icon_fetcher_file_is_image * create thumbnail directories if not existing * use g_malloc0, g_strdup and g_strdup_printf * fixed formatting with clang-format * don't wait for jobs in execution when finalizing the icon fetcher worker threadpool * destroy and rebuild the icon fetcher worker threadpool when the current page is changed * added query_started boolean member to IconFetcherEntry; check if an icon fetcher query was started on an IconFetcherEntry and submit the query again otherwise * force icon cache lookup even if the item has a valid icon_fetch_uid (the fetching job could have been discarded before starting) * search binaries in PATH when executing thumbnailer command * mark icon query as not started in threadpool item free_func * added listview page_changed_callback; rebuild icon fetcher threadpool in page_changed_callback * [listview] Add missing code documentation param * Create rofi-thumbnails.5.markdown * Updated documentation with apparmor issues and workaround * [Doc] Ship rofi-thumbnails.5 With some formatting fixes * use a more compact thumbnailer example --------- Co-authored-by: giomatfois62 <giomatfois62@yahoo.it> Co-authored-by: Dave Davenport <DaveDavenport@users.noreply.github.com> Co-authored-by: lbonn <github@lbonnans.net>
2024-06-21 12:47:38 -04:00
/**
* Callback when current page is changed.
*/
typedef void (*listview_page_changed_cb)(void);
2016-11-15 02:24:06 -05:00
/**
2017-09-09 05:25:33 -04:00
* @param parent The widget's parent.
2017-01-01 12:40:49 -05:00
* @param name The name of the to be created widget.
2016-11-15 02:24:06 -05:00
* @param cb The update callback.
[WIP] xdg thumbnails fetching with fallback on mimetype icons (#1939) * implemented xdg thumbnails fetching with fallback on mimetype icons for menu entries in filebrowser mode * included original license text * added md5 header and source file * implemented xdg compatible thumbnail's creation * added -preview-cmd string option to program settings * support custom command to create images for entries with thumbnail:// prefix * fix custom thumbnailer command crash caused by null uri when entry is not a valid filename * check entry_name is not NULL or empty when generating thumbnails; use snprintf to avoid static analyzer complains * avoid using gstrvbuilder to build thumbnailer command args * fixed static analyzer complain about always wrong condition * use g_spawn_check_exit_status to avoid bump to glib 2.70 * removed md5-c dependency and use glib checksum implementation * fixed meson build after md5-c library removal * support thumbnail generation in recursivebrowser mode * restored check rofi_icon_fetcher_file_is_image * create thumbnail directories if not existing * use g_malloc0, g_strdup and g_strdup_printf * fixed formatting with clang-format * don't wait for jobs in execution when finalizing the icon fetcher worker threadpool * destroy and rebuild the icon fetcher worker threadpool when the current page is changed * added query_started boolean member to IconFetcherEntry; check if an icon fetcher query was started on an IconFetcherEntry and submit the query again otherwise * force icon cache lookup even if the item has a valid icon_fetch_uid (the fetching job could have been discarded before starting) * search binaries in PATH when executing thumbnailer command * mark icon query as not started in threadpool item free_func * added listview page_changed_callback; rebuild icon fetcher threadpool in page_changed_callback * [listview] Add missing code documentation param * Create rofi-thumbnails.5.markdown * Updated documentation with apparmor issues and workaround * [Doc] Ship rofi-thumbnails.5 With some formatting fixes * use a more compact thumbnailer example --------- Co-authored-by: giomatfois62 <giomatfois62@yahoo.it> Co-authored-by: Dave Davenport <DaveDavenport@users.noreply.github.com> Co-authored-by: lbonn <github@lbonnans.net>
2024-06-21 12:47:38 -04:00
* @param page_cb The page change callback.
2016-11-15 02:24:06 -05:00
* @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 02:24:06 -05:00
*
* @returns a new listview
*/
listview *listview_create(widget *parent, const char *name,
[WIP] xdg thumbnails fetching with fallback on mimetype icons (#1939) * implemented xdg thumbnails fetching with fallback on mimetype icons for menu entries in filebrowser mode * included original license text * added md5 header and source file * implemented xdg compatible thumbnail's creation * added -preview-cmd string option to program settings * support custom command to create images for entries with thumbnail:// prefix * fix custom thumbnailer command crash caused by null uri when entry is not a valid filename * check entry_name is not NULL or empty when generating thumbnails; use snprintf to avoid static analyzer complains * avoid using gstrvbuilder to build thumbnailer command args * fixed static analyzer complain about always wrong condition * use g_spawn_check_exit_status to avoid bump to glib 2.70 * removed md5-c dependency and use glib checksum implementation * fixed meson build after md5-c library removal * support thumbnail generation in recursivebrowser mode * restored check rofi_icon_fetcher_file_is_image * create thumbnail directories if not existing * use g_malloc0, g_strdup and g_strdup_printf * fixed formatting with clang-format * don't wait for jobs in execution when finalizing the icon fetcher worker threadpool * destroy and rebuild the icon fetcher worker threadpool when the current page is changed * added query_started boolean member to IconFetcherEntry; check if an icon fetcher query was started on an IconFetcherEntry and submit the query again otherwise * force icon cache lookup even if the item has a valid icon_fetch_uid (the fetching job could have been discarded before starting) * search binaries in PATH when executing thumbnailer command * mark icon query as not started in threadpool item free_func * added listview page_changed_callback; rebuild icon fetcher threadpool in page_changed_callback * [listview] Add missing code documentation param * Create rofi-thumbnails.5.markdown * Updated documentation with apparmor issues and workaround * [Doc] Ship rofi-thumbnails.5 With some formatting fixes * use a more compact thumbnailer example --------- Co-authored-by: giomatfois62 <giomatfois62@yahoo.it> Co-authored-by: Dave Davenport <DaveDavenport@users.noreply.github.com> Co-authored-by: lbonn <github@lbonnans.net>
2024-06-21 12:47:38 -04:00
listview_update_callback cb,
listview_page_changed_cb page_cb, void *udata,
unsigned int eh, gboolean reverse);
/**
* Set the selection changed callback.
*/
void listview_set_selection_changed_callback(
listview *lv, listview_selection_changed_callback cb, void *udata);
2016-11-15 02:24:06 -05: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 02:24:06 -05: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 02:24:06 -05:00
/**
* @param lv The listview handle
*
* Returns the selected row.
*
* @returns the selected row.
*/
unsigned int listview_get_selected(listview *lv);
2016-11-15 02:24:06 -05:00
/**
* @param lv The listview handle
*
* Move the selection next element.
* - Wrap around.
*/
void listview_nav_next(listview *lv);
/**
* @param lv The listview handle
*
* Move the selection previous element.
* - Wrap around.
*/
void listview_nav_prev(listview *lv);
/**
2016-11-15 02:24:06 -05: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 15:54:31 -05: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 12:56:09 -04:00
/**
* @param lv Handler to the listview object
* @param enabled enable
*
* Hide the scrollbar.
*/
void listview_set_show_scrollbar(listview *lv, gboolean enabled);
2016-10-14 12:56:09 -04: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 12:56:09 -04:00
/**
* @param lv Handler to the listview object
* @param cycle True for cycle mode
*
2016-10-15 09:39:08 -04:00
* Set cycle mode. On last entry go to first.
2016-10-14 12:56:09 -04:00
*/
void listview_set_cycle(listview *lv, gboolean cycle);
2016-10-14 12:56:09 -04: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
2016-10-14 12:56:09 -04:00
*/
void listview_set_scroll_type(listview *lv, ScrollType type);
2016-10-14 12:56:09 -04: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);
2017-01-02 15:19:27 -05:00
/**
* @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 15:19:27 -05: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);
/**
* @param lv Handler to the listview object.
*
* Set ellipsize mode.
*/
void listview_toggle_ellipsizing(listview *lv);
/**
* @param lv Handler to the listview object.
* @param mode The ellipsize mode to set.
*
* Set ellipsize mode on the listview.
*/
2022-11-19 15:03:22 -05:00
void listview_set_ellipsize(listview *lv, PangoEllipsizeMode mode);
/**
* @param lv Handler to the listview object.
* @param filtered boolean indicating if list is filtered.
*
*/
void listview_set_filtered(listview *lv, gboolean filtered);
2020-10-12 15:39:36 -04:00
/** @} */
#endif // ROFI_LISTVIEW_H