X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git;a=blobdiff_plain;f=dali%2Fdevel-api%2Fadaptor-framework%2Finput-method-context.cpp;h=427ae6c264d7e2604cd0ea3fd1f1bf7690e9a618;hp=11ef92e639fb1896649df1701fbdc2a4dcf4c5ce;hb=b33cf8f8c44bc1be428692eba5859354c57f4d11;hpb=f23ea3c9f60c9327b921b4a3af4c2d7425f7f315 diff --git a/dali/devel-api/adaptor-framework/input-method-context.cpp b/dali/devel-api/adaptor-framework/input-method-context.cpp index 11ef92e..427ae6c 100755 --- a/dali/devel-api/adaptor-framework/input-method-context.cpp +++ b/dali/devel-api/adaptor-framework/input-method-context.cpp @@ -186,6 +186,16 @@ bool InputMethodContext::FilterEventKey( const Dali::KeyEvent& keyEvent ) return Internal::Adaptor::InputMethodContext::GetImplementation(*this).FilterEventKey( keyEvent ); } +void InputMethodContext::AllowTextPrediction( bool prediction ) +{ + Internal::Adaptor::InputMethodContext::GetImplementation(*this).AllowTextPrediction( prediction ); +} + +bool InputMethodContext::IsTextPredictionAllowed() const +{ + return Internal::Adaptor::InputMethodContext::GetImplementation(*this).IsTextPredictionAllowed(); +} + InputMethodContext::ActivatedSignalType& InputMethodContext::ActivatedSignal() { return Internal::Adaptor::InputMethodContext::GetImplementation(*this).ActivatedSignal();