Keyboard: Use Native System Keyboard.

This commit is contained in:
StackZ
2020-07-16 23:21:35 +02:00
parent aa6dbc30c7
commit 3557ec936a
8 changed files with 124 additions and 332 deletions
+3 -9
View File
@@ -30,15 +30,9 @@
#include <string>
namespace Input {
void DrawNumpad();
void drawKeyboard();
std::string Numpad(std::string Text);
std::string Numpad(uint maxLength, std::string Text);
// -1 if invaild text entered
int getUint(int max, std::string Text);
std::string getString(std::string Text);
std::string getStringLong(std::string Text); // For longer text.
std::string getString(uint maxLength, std::string Text, float inputTextSize = 0.6f);
std::string setkbdString(uint maxLength, std::string Text);
std::uint8_t setu8(std::string Text);
int setInt(int maxValue, std::string Text);
}
#endif