(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 2ab6fffccc
commit ba3d7e70f2
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);