38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
/*
|
|
* gui.h
|
|
*
|
|
* Created on: 3Sep.,2017
|
|
* Author: Ben V. Brown
|
|
*/
|
|
|
|
#ifndef GUI_HPP_
|
|
#define GUI_HPP_
|
|
#include "BSP.h"
|
|
#include "Settings.h"
|
|
#include "Translation.h"
|
|
|
|
#define PRESS_ACCEL_STEP (TICKS_100MS / 3)
|
|
#define PRESS_ACCEL_INTERVAL_MIN TICKS_100MS
|
|
#define PRESS_ACCEL_INTERVAL_MAX (TICKS_100MS * 3)
|
|
|
|
// GUI holds the menu structure and all its methods for the menu itself
|
|
|
|
// Declarations for all the methods for the settings menu (at end of this file)
|
|
|
|
// Struct for holding the function pointers and descriptions
|
|
typedef struct {
|
|
// The settings description index, please use the `SETTINGS_DESC` macro with
|
|
// the `SettingsItemIndex` enum. Use 0 for no description.
|
|
uint8_t description;
|
|
// return true if increment reached the maximum value
|
|
bool (*const incrementHandler)(void);
|
|
bool (*const draw)(void);
|
|
} menuitem;
|
|
|
|
void enterSettingsMenu();
|
|
void GUIDelay();
|
|
void warnUser(const char *warning, const int timeout);
|
|
extern const menuitem rootSettingsMenu[];
|
|
|
|
#endif /* GUI_HPP_ */
|