Add TXGainField user interface element.

This commit is contained in:
Jared Boone 2016-08-03 16:14:34 -07:00
parent ef9b4051b7
commit 447a7a5661
2 changed files with 34 additions and 0 deletions

View file

@ -330,6 +330,15 @@ public:
void on_focus() override;
};
class TXGainField : public NumberField {
public:
std::function<void(void)> on_show_options;
TXGainField(Point parent_pos);
void on_focus() override;
};
} /* namespace ui */
#endif/*__UI_RECEIVER_H__*/