mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-05 20:26:52 +00:00
59 lines
1.5 KiB
C
59 lines
1.5 KiB
C
|
/*
|
||
|
* Copyright (c) 2018 naehrwert
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify it
|
||
|
* under the terms and conditions of the GNU General Public License,
|
||
|
* version 2, as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||
|
* more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#ifndef _TUI_H_
|
||
|
#define _TUI_H_
|
||
|
|
||
|
#include "types.h"
|
||
|
#include "gfx.h"
|
||
|
|
||
|
#define MENT_END 0
|
||
|
#define MENT_HANDLER 1
|
||
|
#define MENT_MENU 2
|
||
|
#define MENT_CHOICE 3
|
||
|
#define MENT_BACK 4
|
||
|
|
||
|
typedef struct _ment_t
|
||
|
{
|
||
|
u32 type;
|
||
|
const char *caption;
|
||
|
void *data;
|
||
|
union
|
||
|
{
|
||
|
void(*handler)(void *);
|
||
|
struct _menu_t *menu;
|
||
|
};
|
||
|
} ment_t;
|
||
|
|
||
|
typedef struct _menu_t
|
||
|
{
|
||
|
ment_t *ents;
|
||
|
const char *caption;
|
||
|
u32 x;
|
||
|
u32 y;
|
||
|
} menu_t;
|
||
|
|
||
|
#define MDEF_END() {MENT_END}
|
||
|
#define MDEF_HANDLER(caption, _handler) { MENT_HANDLER, caption, NULL, { .handler = _handler } }
|
||
|
#define MDEF_HANDLER_EX(caption, data, _handler) { MENT_HANDLER, caption, data, { .handler = _handler } }
|
||
|
#define MDEF_MENU(caption, _menu) { MENT_MENU, caption, NULL, { .menu = _menu } }
|
||
|
#define MDEF_BACK() { MENT_BACK, "Back" }
|
||
|
|
||
|
void tui_pbar(gfx_con_t *con, int x, int y, u32 val);
|
||
|
void *tui_do_menu(gfx_con_t *con, menu_t *menu);
|
||
|
|
||
|
#endif
|