ZEReader 0.1.0
A Zephyr-based E-Book-Reader
Loading...
Searching...
No Matches
menu_list.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_MENU_LIST_H_
8#define _UI_WIDGET_MENU_LIST_H_
9
10#include <lvgl.h>
11#include <ui/context/context.h>
12
22lv_obj_t *zereader_menu_list_create(lv_obj_t *parent, const char *list_str, context_t *context, lv_event_cb_t event_cb);
23
24#endif /* _UI_WIDGET_MENU_LIST_H_ */
The UI's context.
context_t
UI context definition.
Definition context.h:22