ZEReader 0.1.0
A Zephyr-based E-Book-Reader
Loading...
Searching...
No Matches
book_menu.h
1/*
2 * SPDX-FileCopyrightText: 2025 Anna-Lena Marx <mail@marx.engineer>
3 *
4 * SPDX-License-Identifier: MPL-2.0
5 */
6
7#ifndef _UI_WIDGET_BOOK_MENU_H_
8#define _UI_WIDGET_BOOK_MENU_H_
9
10#include <lvgl.h>
11#include <ui/context/context.h>
12
22lv_obj_t* zereader_book_menu_create(lv_obj_t *parent, const char *book_list_str, context_t *context, lv_event_cb_t event_cb);
23
24#endif /* _UI_WIDGET_BOOK_MENU_H_ */
The UI's context.
context_t
UI context definition.
Definition context.h:22