aboutsummaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authoradnano <me@adnano.co>2024-05-02 18:45:49 -0400
committeradnano <me@adnano.co>2024-05-02 18:45:49 -0400
commit1f221a73cf290ff509ef6c066ff692bb48f8625e (patch)
treeabdd724cff64843e2dd5de22934d8d2d68ac5e37 /menu.h
parent6284eea24b44d05260f96fe842fa9dd752185942 (diff)
downloadwmenu-1f221a73cf290ff509ef6c066ff692bb48f8625e.tar.gz
Fix destruction of pool buffers
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/menu.h b/menu.h
index 6afdd7e..bfbc94a 100644
--- a/menu.h
+++ b/menu.h
@@ -1,9 +1,10 @@
#ifndef WMENU_MENU_H
#define WMENU_MENU_H
+#include <stdbool.h>
+#include <sys/types.h>
#include <xkbcommon/xkbcommon.h>
-
-#include "pool-buffer.h"
+#include <wayland-client.h>
// A menu item.
struct item {
@@ -48,9 +49,6 @@ struct menu {
struct wl_context *context;
- struct pool_buffer buffers[2];
- struct pool_buffer *current;
-
int width;
int height;
int line_height;
@@ -77,7 +75,7 @@ struct menu {
struct menu *menu_create();
void menu_getopts(struct menu *menu, int argc, char *argv[]);
void menu_add_item(struct menu *menu, char *text);
-void menu_process_items(struct menu *menu);
+void menu_render_items(struct menu *menu);
void menu_paste(struct menu *menu, const char *text, ssize_t len);
void menu_keypress(struct menu *menu, enum wl_keyboard_key_state key_state,
xkb_keysym_t sym);