mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-09 23:22:33 -04:00
Close call tuning fix, more UI elements
This commit is contained in:
parent
f9d7aec1ad
commit
7d193c3445
7 changed files with 282 additions and 61 deletions
|
@ -26,6 +26,7 @@
|
|||
#include "ui_text.hpp"
|
||||
#include "ui_painter.hpp"
|
||||
#include "ui_focus.hpp"
|
||||
#include "radio.hpp"
|
||||
|
||||
#include "utility.hpp"
|
||||
|
||||
|
@ -197,6 +198,18 @@ private:
|
|||
std::string text;
|
||||
};
|
||||
|
||||
class BigFrequency : public Widget {
|
||||
public:
|
||||
BigFrequency(Rect parent_rect, rf::Frequency frequency);
|
||||
|
||||
void set(const rf::Frequency frequency);
|
||||
|
||||
void paint(Painter& painter) override;
|
||||
|
||||
private:
|
||||
rf::Frequency _frequency;
|
||||
};
|
||||
|
||||
class ProgressBar : public Widget {
|
||||
public:
|
||||
ProgressBar(Rect parent_rect);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue