(svn r25678) -Codechange: Notify the video driver when an edit box lost (global) focus so it can abort any current input composition.

This commit is contained in:
michi_cc
2013-08-05 20:37:02 +00:00
parent b96ef5c758
commit 13873d2534
5 changed files with 30 additions and 5 deletions

View File

@@ -73,6 +73,11 @@ public:
{
return true;
}
/**
* An edit box lost the input focus. Abort character compositing if necessary.
*/
virtual void EditBoxLostFocus() {}
};
/** Base of the factory for the video drivers. */