2015-08-30 20:14:29 +00:00
|
|
|
/* Copyright (c) 2013-2015 Jeffrey Pfau
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef GUI_MENU_H
|
|
|
|
#define GUI_MENU_H
|
|
|
|
|
2016-12-31 01:00:22 +00:00
|
|
|
#include <mgba-util/common.h>
|
2016-12-27 05:01:55 +00:00
|
|
|
|
|
|
|
CXX_GUARD_START
|
|
|
|
|
2016-12-31 01:00:22 +00:00
|
|
|
#include <mgba-util/vector.h>
|
2015-08-30 20:14:29 +00:00
|
|
|
|
2015-09-02 05:09:12 +00:00
|
|
|
struct GUIMenu;
|
2015-08-30 20:14:29 +00:00
|
|
|
struct GUIMenuItem {
|
|
|
|
const char* title;
|
|
|
|
void* data;
|
2015-09-18 02:53:27 +00:00
|
|
|
unsigned state;
|
2016-01-08 07:52:55 +00:00
|
|
|
const char* const* validStates;
|
|
|
|
unsigned nStates;
|
2015-09-02 05:09:12 +00:00
|
|
|
struct GUIMenu* submenu;
|
2015-08-30 20:14:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
DECLARE_VECTOR(GUIMenuItemList, struct GUIMenuItem);
|
2015-09-02 04:51:14 +00:00
|
|
|
|
|
|
|
struct GUIBackground;
|
2015-08-30 20:14:29 +00:00
|
|
|
struct GUIMenu {
|
|
|
|
const char* title;
|
2015-09-19 07:32:49 +00:00
|
|
|
const char* subtitle;
|
2015-08-30 20:14:29 +00:00
|
|
|
struct GUIMenuItemList items;
|
|
|
|
size_t index;
|
2015-09-02 04:51:14 +00:00
|
|
|
struct GUIBackground* background;
|
2015-08-30 20:14:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum GUIMenuExitReason {
|
|
|
|
GUI_MENU_EXIT_ACCEPT,
|
|
|
|
GUI_MENU_EXIT_BACK,
|
|
|
|
GUI_MENU_EXIT_CANCEL,
|
|
|
|
};
|
|
|
|
|
2016-08-23 00:30:56 +00:00
|
|
|
enum GUIMessageBoxButtons {
|
|
|
|
GUI_MESSAGE_BOX_OK = 1,
|
|
|
|
GUI_MESSAGE_BOX_CANCEL = 2
|
|
|
|
};
|
|
|
|
|
2015-08-30 20:14:29 +00:00
|
|
|
struct GUIParams;
|
2015-09-18 02:53:27 +00:00
|
|
|
enum GUIMenuExitReason GUIShowMenu(struct GUIParams* params, struct GUIMenu* menu, struct GUIMenuItem** item);
|
2015-08-30 20:14:29 +00:00
|
|
|
|
2016-08-23 00:30:56 +00:00
|
|
|
ATTRIBUTE_FORMAT(printf, 4, 5)
|
|
|
|
enum GUIMenuExitReason GUIShowMessageBox(struct GUIParams* params, int buttons, int frames, const char* format, ...);
|
|
|
|
|
2015-09-19 07:32:49 +00:00
|
|
|
void GUIDrawBattery(struct GUIParams* params);
|
|
|
|
void GUIDrawClock(struct GUIParams* params);
|
|
|
|
|
2016-12-27 05:01:55 +00:00
|
|
|
CXX_GUARD_END
|
|
|
|
|
2015-08-30 20:14:29 +00:00
|
|
|
#endif
|