window moving

This commit is contained in:
Eduardo Bart
2011-04-16 16:46:31 -03:00
parent 9b02312bf8
commit dc39c965cc
13 changed files with 102 additions and 33 deletions

View File

@@ -37,13 +37,14 @@ public:
UITextEdit();
void onInputEvent(const InputEvent& event);
void onLayoutRectChange(const Rect& rect);
void onFocusChange();
void setText(const std::string& text);
const std::string& getText() const { return m_textArea.getText(); }
TextArea& getTextArea() { return m_textArea; }
void onLayoutRectChange(const Rect& rect);
void onFocusChange();
bool isFocusable() const { return true; }
private:
TextArea m_textArea;