mgba/src/util/gui.h

74 lines
1.5 KiB
C
Raw Normal View History

2015-08-23 06:20:21 +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_H
#define GUI_H
#include "util/common.h"
#include "util/vector.h"
2015-08-23 06:20:21 +00:00
struct GUIFont;
enum GUIInput {
GUI_INPUT_NONE = -1,
GUI_INPUT_SELECT = 0,
GUI_INPUT_BACK,
GUI_INPUT_CANCEL,
GUI_INPUT_UP,
GUI_INPUT_DOWN,
GUI_INPUT_LEFT,
GUI_INPUT_RIGHT,
2015-08-25 05:11:12 +00:00
GUI_INPUT_USER_START = 0x10,
GUI_INPUT_MAX = 0x20
2015-08-23 06:20:21 +00:00
};
2015-09-05 05:50:20 +00:00
enum GUICursorState {
GUI_CURSOR_NOT_PRESENT,
GUI_CURSOR_UP,
GUI_CURSOR_DOWN,
GUI_CURSOR_CLICKED,
GUI_CURSOR_DRAGGING
};
2015-09-02 04:51:14 +00:00
struct GUIBackground {
void (*draw)(struct GUIBackground*, void* context);
2015-09-02 04:51:14 +00:00
};
2015-08-23 06:20:21 +00:00
struct GUIParams {
2015-08-27 03:11:51 +00:00
unsigned width;
unsigned height;
2015-08-23 06:20:21 +00:00
const struct GUIFont* font;
const char* basePath;
2015-08-23 06:20:21 +00:00
void (*drawStart)(void);
void (*drawEnd)(void);
uint32_t (*pollInput)(void);
2015-09-05 05:50:20 +00:00
enum GUICursorState (*pollCursor)(int* x, int* y);
void (*guiPrepare)(void);
void (*guiFinish)(void);
2015-08-30 06:21:41 +00:00
// State
int inputHistory[GUI_INPUT_MAX];
2015-09-05 05:50:20 +00:00
enum GUICursorState cursorState;
int cx, cy;
// Directories
char currentPath[PATH_MAX];
size_t fileIndex;
2015-08-23 06:20:21 +00:00
};
2015-09-05 05:50:20 +00:00
#define GUI_PARAMS_TRAIL {}, GUI_CURSOR_NOT_PRESENT, 0, 0, "", 0
void GUIInit(struct GUIParams* params);
void GUIPollInput(struct GUIParams* params, uint32_t* newInput, uint32_t* heldInput);
2015-09-05 05:50:20 +00:00
enum GUICursorState GUIPollCursor(struct GUIParams* params, int* x, int* y);
void GUIInvalidateKeys(struct GUIParams* params);
2015-08-30 06:21:41 +00:00
2015-08-23 06:20:21 +00:00
#endif