You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
527 B
30 lines
527 B
#pragma once |
|
|
|
#include <eez/gui/keypad.h> |
|
|
|
namespace eez { |
|
namespace gui { |
|
|
|
NumericKeypad *startNumericKeypad( |
|
AppContext *appContext, |
|
const char *label, |
|
const Value &value, |
|
NumericKeypadOptions &options, |
|
void(*okFloat)(float), |
|
void(*okUint32)(uint32_t), |
|
void(*cancel)() |
|
); |
|
|
|
void startTextKeyboard( |
|
const char *label, |
|
const char *text, |
|
int minChars_, |
|
int maxChars_, |
|
bool isPassword_, |
|
void(*ok)(char *), |
|
void(*cancel)(), |
|
void(*setDefault)() |
|
); |
|
|
|
} // namespace gui |
|
} // namespace eez
|
|
|