mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-09 07:02:26 -04:00
ADSB RX now works \o/
Added tabs in RDS TX, multiple groups can be sent at once Bugfix: text not updating on UI after text prompt
This commit is contained in:
parent
160359166a
commit
9d902bc224
18 changed files with 664 additions and 590 deletions
|
@ -603,6 +603,29 @@ private:
|
|||
bool show_max_;
|
||||
};
|
||||
|
||||
class OptionTabView : public View {
|
||||
public:
|
||||
OptionTabView(Rect parent_rect);
|
||||
|
||||
void focus() override;
|
||||
|
||||
bool is_enabled();
|
||||
void set_type(std::string type);
|
||||
|
||||
protected:
|
||||
bool enabled { false };
|
||||
|
||||
void set_enabled(bool value);
|
||||
|
||||
private:
|
||||
Checkbox check_enable {
|
||||
{ 2 * 8, 0 * 16 },
|
||||
20,
|
||||
"",
|
||||
false
|
||||
};
|
||||
};
|
||||
|
||||
} /* namespace ui */
|
||||
|
||||
#endif/*__UI_WIDGET_H__*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue