forked from reedbn/ubitxv6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu_quicklist_buttons.cpp
137 lines (117 loc) · 3.9 KB
/
menu_quicklist_buttons.cpp
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#include "menu_quicklist_buttons.h"
#include <avr/pgmspace.h>
#include <WString.h>//F()
#include "color_theme.h"
#include "nano_gui.h"
#include "scratch_space.h"
#include "settings.h"
#include "utils.h"
static const unsigned int LAYOUT_BUTTON_X = 180;
static const unsigned int LAYOUT_BUTTON_Y = 47;
static const unsigned int LAYOUT_BUTTON_WIDTH = 140;
static const unsigned int LAYOUT_BUTTON_HEIGHT = 36;
static const unsigned int LAYOUT_BUTTON_PITCH_X = LAYOUT_BUTTON_WIDTH + 1;
static const unsigned int LAYOUT_BUTTON_PITCH_Y = 40;
ButtonPress_e quickListSelectionMode;
#define D_STRINGIFY(x) #x
#define D_STRING(x) D_STRINGIFY(x)
#define QUICKLIST_BUTTON_GENERATE(number) \
void toQL##number(char* text_out, const uint16_t max_text_size);\
void osQL##number();\
constexpr Button bQL##number PROGMEM = {\
LAYOUT_BUTTON_X,\
LAYOUT_BUTTON_Y + number*LAYOUT_BUTTON_PITCH_Y,\
LAYOUT_BUTTON_WIDTH,\
LAYOUT_BUTTON_HEIGHT,\
nullptr,\
toQL##number,\
bsQuickList,\
osQL##number,\
'0'+number\
}
ButtonStatus_e bsQuickList(void){
return ButtonStatus_e::Stateless;
}
//Unfortunately there's no easy way to auto-generate NUM_QUICKLIST_SETTINGS copies of this
QUICKLIST_BUTTON_GENERATE(0);
QUICKLIST_BUTTON_GENERATE(1);
QUICKLIST_BUTTON_GENERATE(2);
QUICKLIST_BUTTON_GENERATE(3);
constexpr char txtQLCancel [] PROGMEM = "Can";
void osQLCancel();
constexpr Button bQLCancel PROGMEM = {
LAYOUT_BUTTON_X,
LAYOUT_BUTTON_Y + 4*LAYOUT_BUTTON_PITCH_Y,
LAYOUT_BUTTON_WIDTH,
LAYOUT_BUTTON_HEIGHT,
txtQLCancel,
nullptr,
bsQuickList,
osQLCancel,
'C'
};
//Declare in menu select order, not graphical order
const Button* const quickListMenuButtons [] PROGMEM = {
&bQL0, &bQL1, &bQL2, &bQL3, &bQLCancel
};
const uint8_t QUICKLIST_MENU_NUM_BUTTONS = sizeof(quickListMenuButtons)/sizeof(quickListMenuButtons[0]);
void osQuickListRecall(uint8_t index)
{
SetActiveVfoFreq(globalSettings.quickList[index].frequency);
SetActiveVfoMode(globalSettings.quickList[index].mode);
}
void osQuickListSave(uint8_t index)
{
globalSettings.quickList[index].frequency = GetActiveVfoFreq();
globalSettings.quickList[index].mode = GetActiveVfoMode();
SaveSettingsToEeprom();
}
void osQuickList(uint8_t index)
{
if(ButtonPress_e::ShortPress == quickListSelectionMode){
osQuickListRecall(index);
}
else if(ButtonPress_e::LongPress == quickListSelectionMode){
osQuickListSave(index);
}
quickListSelectionMode = ButtonPress_e::NotPressed;//Selection was made. Exit.
}
#define QUICKLIST_ONSELECT_GENERATE(number) \
void osQL##number(void){\
osQuickList(number);\
}
//Unfortunately there's no easy way to auto-generate NUM_QUICKLIST_SETTINGS copies of this
QUICKLIST_ONSELECT_GENERATE(0);
QUICKLIST_ONSELECT_GENERATE(1);
QUICKLIST_ONSELECT_GENERATE(2);
QUICKLIST_ONSELECT_GENERATE(3);
#define QUICKLIST_TEXTOVERRIDE_GENERATE(number) \
void toQL##number(char* text_out, const uint16_t max_text_size){\
toQuickList(number, text_out, max_text_size);\
}
void toQuickList(uint8_t index, char* text_out, const uint16_t max_text_size)
{
if(max_text_size < 2){
return;//Can't do much with that space
}
if(max_text_size < (3+10+1)){
//Give an indicator that's debuggable
text_out[0] = 'X';
text_out[1] = '\0';
return;
}
//Normal operation
text_out[0] = '0'+index;//Assume a 1-digit number for now
text_out[1] = ':';
text_out[2] = ' ';
formatFreq(globalSettings.quickList[index].frequency, text_out+3, max_text_size-3, 10);
}
//Unfortunately there's no easy way to auto-generate NUM_QUICKLIST_SETTINGS copies of this
QUICKLIST_TEXTOVERRIDE_GENERATE(0);
QUICKLIST_TEXTOVERRIDE_GENERATE(1);
QUICKLIST_TEXTOVERRIDE_GENERATE(2);
QUICKLIST_TEXTOVERRIDE_GENERATE(3);
void osQLCancel()
{
quickListSelectionMode = ButtonPress_e::NotPressed;
}