2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 12:27:43 +00:00

Update TextField for Input Methods

This commit is contained in:
Jack Andersen
2015-12-24 10:57:38 -10:00
parent 536fe57957
commit 5e4bf0dce6
6 changed files with 70 additions and 6 deletions

View File

@@ -157,6 +157,12 @@ void RootView::modKeyUp(boo::EModifierKey mod)
m_activeTextView->modKeyUp(mod);
}
void RootView::utf8FragmentDown(const std::string& str)
{
if (m_activeTextView)
m_activeTextView->utf8FragmentDown(str);
}
View* RootView::setContentView(View* view)
{
View* ret = m_view;