summaryrefslogtreecommitdiff
path: root/src/interface/Textarea.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/interface/Textarea.h')
-rw-r--r--src/interface/Textarea.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/interface/Textarea.h b/src/interface/Textarea.h
deleted file mode 100644
index c5529d6..0000000
--- a/src/interface/Textarea.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Textarea.h
- *
- * Created on: Jan 29, 2012
- * Author: Simon
- */
-
-#ifndef TEXTAREA_H_
-#define TEXTAREA_H_
-
-#include <vector>
-#include <string>
-#include <sstream>
-#include "Textbox.h"
-
-namespace ui
-{
-
-class Textarea: public ui::Textbox
-{
- void updateMultiline();
- std::string textLines;
-public:
- Textarea(Point position, Point size, std::string textboxText);
- virtual void TextPosition() {}
- virtual void SetText(std::string text);
- virtual void OnKeyPress(int key, Uint16 character, bool shift, bool ctrl, bool alt);
- virtual void Draw(const Point& screenPos);
- virtual ~Textarea();
-};
-}
-
-#endif /* TEXTAREA_H_ */