blob: d9eabdaf41e8d00ed14e5181fc1fa0d8369ef25e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#pragma once
#include "../../app/base_app.hpp"
#include "strings.hpp"
class app_settings : public BaseApp {
private:
const char *MAIN_SET_NAMES[MAIN_SET_NUM] = {SET0_NAME, SET1_NAME};
int selected_setting = 0;
char display_setting_name[SIZE_SETTING_NAME];
bool selected = false;
void show_title(Api *app_api);
void set0_menu(Api *app_api);
void set1_menu(Api *app_api);
AppAttributes app_attributes = {2, true};
public:
const AppAttributes& app_get_attributes() {
return app_attributes;
}
app_settings(Api *app_api);
AppReturnValues render(Api *app_api);
AppReturnValues btn_pressed(Api *app_api, uint gpio, unsigned long delta);
AppReturnValues bgrefresh(Api *app_api, bool in_foreground);
~app_settings();
};
#include "strings-undef.hpp"
|