2014-10-25 00:38:30 +02:00
|
|
|
#ifndef _BEMENU_INTERNAL_H_
|
|
|
|
#define _BEMENU_INTERNAL_H_
|
|
|
|
|
2014-03-28 20:33:20 +01:00
|
|
|
#include "bemenu.h"
|
|
|
|
|
2014-10-25 00:38:30 +02:00
|
|
|
#if __GNUC__
|
|
|
|
# define BM_LOG_ATTR(x, y) __attribute__((format(printf, x, y)))
|
|
|
|
#else
|
|
|
|
# define BM_LOG_ATTR(x, y)
|
|
|
|
#endif
|
|
|
|
|
2014-04-10 00:09:35 +02:00
|
|
|
#ifndef size_t
|
|
|
|
# include <stddef.h> /* for size_t */
|
|
|
|
#endif
|
|
|
|
|
2014-10-25 00:38:30 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2014-03-28 20:33:20 +01:00
|
|
|
/**
|
2014-10-22 21:46:51 +02:00
|
|
|
* Destructor function pointer for some list calls.
|
|
|
|
*/
|
|
|
|
typedef void (*list_free_fun)(void*);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List type
|
2014-03-28 20:33:20 +01:00
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
struct list {
|
2014-04-10 19:09:34 +02:00
|
|
|
/**
|
2014-10-22 21:46:51 +02:00
|
|
|
* Items in the list.
|
2014-04-10 19:09:34 +02:00
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
void **items;
|
2014-04-10 19:09:34 +02:00
|
|
|
|
2014-04-10 12:23:42 +02:00
|
|
|
/**
|
2014-10-22 21:46:51 +02:00
|
|
|
* Number of items.
|
2014-04-10 12:23:42 +02:00
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
uint32_t count;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Number of allocated items.
|
|
|
|
*/
|
|
|
|
uint32_t allocated;
|
2014-03-28 21:14:13 +01:00
|
|
|
};
|
2014-03-28 20:33:20 +01:00
|
|
|
|
|
|
|
/**
|
2014-10-22 21:46:51 +02:00
|
|
|
* Internal render api struct.
|
2014-03-28 20:33:20 +01:00
|
|
|
* Renderers should be able to fill this one as they see fit.
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
struct render_api {
|
|
|
|
/**
|
|
|
|
* Create underlying renderer.
|
|
|
|
*/
|
2014-10-22 22:10:11 +02:00
|
|
|
bool (*constructor)(struct bm_menu *menu);
|
2014-10-22 21:46:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Release underlying renderer.
|
|
|
|
*/
|
2014-10-22 22:10:11 +02:00
|
|
|
void (*destructor)(struct bm_menu *menu);
|
2014-10-22 21:46:51 +02:00
|
|
|
|
2014-04-12 17:42:30 +02:00
|
|
|
/**
|
|
|
|
* Get count of displayed items by the underlying renderer.
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
uint32_t (*get_displayed_count)(const struct bm_menu *menu);
|
2014-04-12 17:42:30 +02:00
|
|
|
|
2014-04-10 12:23:42 +02:00
|
|
|
/**
|
|
|
|
* If the underlying renderer is a UI toolkit. (curses, etc...)
|
|
|
|
* There might be possibility to get user input, and this should be thus implemented.
|
|
|
|
*/
|
2014-10-22 22:10:11 +02:00
|
|
|
enum bm_key (*poll_key)(const struct bm_menu *menu, uint32_t *unicode);
|
2014-04-10 12:23:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tells underlying renderer to draw the menu.
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
void (*render)(const struct bm_menu *menu);
|
2014-10-25 00:38:30 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Version of the plugin.
|
2014-10-25 15:39:39 +02:00
|
|
|
* Should match BM_PLUGIN_VERSION or failure.
|
2014-10-25 00:38:30 +02:00
|
|
|
*/
|
|
|
|
const char *version;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prioritory of the plugin.
|
|
|
|
* Terminal renderers should be first, then graphicals.
|
|
|
|
*/
|
|
|
|
enum bm_prioritory prioritory;
|
2014-10-22 21:46:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal bm_renderer struct.
|
|
|
|
*/
|
|
|
|
struct bm_renderer {
|
|
|
|
/**
|
|
|
|
* Name of the renderer.
|
|
|
|
*/
|
|
|
|
char *name;
|
2014-04-10 12:23:42 +02:00
|
|
|
|
|
|
|
/**
|
2014-10-22 21:46:51 +02:00
|
|
|
* File path of the renderer.
|
2014-04-10 12:23:42 +02:00
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
char *file;
|
2014-03-28 20:33:20 +01:00
|
|
|
|
2014-04-10 19:04:06 +02:00
|
|
|
/**
|
2014-10-22 21:46:51 +02:00
|
|
|
* Open handle to the plugin file of this renderer.
|
2014-04-10 19:04:06 +02:00
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
void *handle;
|
2014-04-10 19:04:06 +02:00
|
|
|
|
2014-10-25 00:38:30 +02:00
|
|
|
/**
|
|
|
|
* Data used by the renderer internally.
|
|
|
|
* Nobody else should touch this.
|
|
|
|
*/
|
|
|
|
void *internal;
|
|
|
|
|
2014-04-10 19:04:06 +02:00
|
|
|
/**
|
2014-10-22 21:46:51 +02:00
|
|
|
* API
|
2014-04-10 19:04:06 +02:00
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
struct render_api api;
|
|
|
|
};
|
2014-04-10 19:04:06 +02:00
|
|
|
|
2014-10-22 21:46:51 +02:00
|
|
|
/**
|
|
|
|
* Internal bm_item struct that is not exposed to public.
|
|
|
|
* Represents a single item in menu.
|
|
|
|
*/
|
|
|
|
struct bm_item {
|
2014-04-10 19:04:06 +02:00
|
|
|
/**
|
2014-10-22 21:46:51 +02:00
|
|
|
* Userdata pointer.
|
|
|
|
* This pointer will be passed around with the item untouched.
|
|
|
|
*/
|
|
|
|
void *userdata;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Primary text shown on item as null terminated C "string".
|
|
|
|
* Matching will be done against this text as well.
|
2014-04-10 19:04:06 +02:00
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
char *text;
|
2014-04-10 19:04:06 +02:00
|
|
|
};
|
|
|
|
|
2014-03-28 20:33:20 +01:00
|
|
|
/**
|
2014-10-22 21:46:51 +02:00
|
|
|
* Internal bm_menu struct that is not exposed to public.
|
2014-03-28 20:33:20 +01:00
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
struct bm_menu {
|
2014-04-10 19:09:34 +02:00
|
|
|
/**
|
|
|
|
* Userdata pointer.
|
|
|
|
* This pointer will be passed around with the menu untouched.
|
|
|
|
*/
|
|
|
|
void *userdata;
|
|
|
|
|
2014-04-10 12:23:42 +02:00
|
|
|
/**
|
|
|
|
* Underlying renderer access.
|
|
|
|
*/
|
2014-10-25 00:38:30 +02:00
|
|
|
struct bm_renderer *renderer;
|
2014-04-10 12:23:42 +02:00
|
|
|
|
|
|
|
/**
|
2014-04-10 19:04:06 +02:00
|
|
|
* Items contained in menu instance.
|
2014-04-10 12:23:42 +02:00
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
struct list items;
|
2014-04-10 12:23:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filtered/displayed items contained in menu instance.
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
struct list filtered;
|
2014-04-10 19:04:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Selected items.
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
struct list selection;
|
2014-04-10 12:23:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Menu instance title.
|
|
|
|
*/
|
|
|
|
char *title;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Text used to filter matches.
|
|
|
|
*/
|
2014-04-12 19:52:29 +02:00
|
|
|
char *filter;
|
2014-04-10 12:23:42 +02:00
|
|
|
|
2014-04-10 22:05:13 +02:00
|
|
|
/**
|
|
|
|
* Used as optimization.
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
char *old_filter;
|
2014-04-10 22:05:13 +02:00
|
|
|
|
2014-04-12 19:52:29 +02:00
|
|
|
/**
|
|
|
|
* Size of filter buffer
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
size_t filter_size;
|
2014-04-12 19:52:29 +02:00
|
|
|
|
2014-04-10 12:23:42 +02:00
|
|
|
/**
|
|
|
|
* Current byte offset on filter text.
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
uint32_t cursor;
|
2014-04-10 12:23:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Current column/cursor position on filter text.
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
uint32_t curses_cursor;
|
2014-04-10 12:23:42 +02:00
|
|
|
|
|
|
|
/**
|
2014-04-10 19:04:06 +02:00
|
|
|
* Current filtered/highlighted item index in menu instance.
|
2014-04-10 12:23:42 +02:00
|
|
|
* This index is valid for the list returned by bmMenuGetFilteredItems.
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
uint32_t index;
|
2014-04-10 12:23:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Current filtering method in menu instance.
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
enum bm_filter_mode filter_mode;
|
2014-04-14 18:25:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Should selection be wrapped?
|
|
|
|
*/
|
2014-10-22 21:46:51 +02:00
|
|
|
bool wrap;
|
2014-03-28 21:14:13 +01:00
|
|
|
};
|
2014-03-28 20:33:20 +01:00
|
|
|
|
2014-10-22 21:46:51 +02:00
|
|
|
/* library.c */
|
2014-10-22 22:10:11 +02:00
|
|
|
bool bm_renderer_activate(struct bm_renderer *renderer, struct bm_menu *menu);
|
2014-04-10 00:09:35 +02:00
|
|
|
|
2014-04-10 19:04:06 +02:00
|
|
|
/* menu.c */
|
2014-10-22 21:46:51 +02:00
|
|
|
bool bm_menu_item_is_selected(const struct bm_menu *menu, const struct bm_item *item);
|
2014-04-10 19:04:06 +02:00
|
|
|
|
2014-04-10 00:09:35 +02:00
|
|
|
/* filter.c */
|
2014-10-22 21:46:51 +02:00
|
|
|
struct bm_item** bm_filter_dmenu(struct bm_menu *menu, bool addition, uint32_t *out_nmemb);
|
|
|
|
struct bm_item** bm_filter_dmenu_case_insensitive(struct bm_menu *menu, bool addition, uint32_t *out_nmemb);
|
2014-04-10 19:04:06 +02:00
|
|
|
|
|
|
|
/* list.c */
|
2014-10-22 21:46:51 +02:00
|
|
|
void list_free_list(struct list *list);
|
|
|
|
void list_free_items(struct list *list, list_free_fun destructor);
|
|
|
|
void* list_get_items(const struct list *list, uint32_t *out_nmemb);
|
|
|
|
bool list_set_items_no_copy(struct list *list, void *items, uint32_t nmemb);
|
|
|
|
bool list_set_items(struct list *list, const void *items, uint32_t nmemb, list_free_fun destructor);
|
|
|
|
bool list_grow(struct list *list, uint32_t step);
|
|
|
|
bool list_add_item_at(struct list *list, void *item, uint32_t index);
|
|
|
|
bool list_add_item(struct list *list, void *item);
|
|
|
|
bool list_remove_item_at(struct list *list, uint32_t index);
|
|
|
|
bool list_remove_item(struct list *list, const void *item);
|
2014-10-25 00:38:30 +02:00
|
|
|
void list_sort(struct list *list, int (*compar)(const void *a, const void *b));
|
2014-04-10 00:09:35 +02:00
|
|
|
|
|
|
|
/* util.c */
|
2014-10-22 21:46:51 +02:00
|
|
|
char* bm_strdup(const char *s);
|
2014-10-25 00:38:30 +02:00
|
|
|
bool bm_resize_buffer(char **in_out_buffer, size_t *in_out_size, size_t nsize);
|
|
|
|
BM_LOG_ATTR(1, 2) char* bm_dprintf(const char *fmt, ...);
|
|
|
|
bool bm_vrprintf(char **in_out_buffer, size_t *in_out_len, const char *fmt, va_list args);
|
2014-10-22 21:46:51 +02:00
|
|
|
size_t bm_strip_token(char *string, const char *token, size_t *out_next);
|
|
|
|
int bm_strupcmp(const char *hay, const char *needle);
|
|
|
|
int bm_strnupcmp(const char *hay, const char *needle, size_t len);
|
|
|
|
char* bm_strupstr(const char *hay, const char *needle);
|
|
|
|
int32_t bm_utf8_string_screen_width(const char *string);
|
|
|
|
size_t bm_utf8_rune_next(const char *string, size_t start);
|
|
|
|
size_t bm_utf8_rune_prev(const char *string, size_t start);
|
|
|
|
size_t bm_utf8_rune_width(const char *rune, uint32_t u8len);
|
|
|
|
size_t bm_utf8_rune_remove(char *string, size_t start, size_t *out_rune_width);
|
|
|
|
size_t bm_utf8_rune_insert(char **string, size_t *bufSize, size_t start, const char *rune, uint32_t u8len, size_t *out_rune_width);
|
|
|
|
size_t bm_unicode_insert(char **string, size_t *bufSize, size_t start, uint32_t unicode, size_t *out_rune_width);
|
2014-04-10 00:09:35 +02:00
|
|
|
|
2014-10-25 00:38:30 +02:00
|
|
|
#endif /* _BEMENU_INTERNAL_H_ */
|
|
|
|
|
2014-03-28 20:33:20 +01:00
|
|
|
/* vim: set ts=8 sw=4 tw=0 :*/
|