(svn r15370) -Codechange: add a callback to tell the parent of an OSK that the string has changed instead of only marking the text box dirty.

This commit is contained in:
rubidium
2009-02-06 11:57:25 +00:00
parent 1a5a673ec9
commit 3758ba890a
2 changed files with 17 additions and 11 deletions

View File

@@ -68,6 +68,7 @@ struct QueryStringBaseWindow : public Window, public QueryString {
void HandleEditBox(int wid);
HandleEditBoxResult HandleEditBoxKey(int wid, uint16 key, uint16 keycode, EventState &state);
virtual void OnOpenOSKWindow(int wid);
virtual void OnOSKInput(int wid) {}
};
void ShowOnScreenKeyboard(QueryStringBaseWindow *parent, int button, int cancel, int ok);