aboutsummaryrefslogtreecommitdiff
path: root/mwe/events/include/inputSystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'mwe/events/include/inputSystem.h')
-rw-r--r--mwe/events/include/inputSystem.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/mwe/events/include/inputSystem.h b/mwe/events/include/inputSystem.h
index 06db74c..c20562d 100644
--- a/mwe/events/include/inputSystem.h
+++ b/mwe/events/include/inputSystem.h
@@ -8,9 +8,17 @@ class InputSystem {
public:
InputSystem();
void registerButton(Button* button);
+ void registerText(Text* label);
+ void registerTextInput(TextInput* input);
void processInput();
private:
std::vector<Button*> buttons;
+ std::vector<TextInput*> textInputs;
+ std::vector<Text*> texts;
void processMouseClick(int mouseX, int mouseY);
+ void processInputField(int mouseX, int mouseY);
+ void processKeyPress(Keycode);
+ void processTextInput(const std::string& text);
+
};