X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=adaptors%2Fdevel-api%2Fadaptor-framework%2Fimf-manager.cpp;h=620fdd1f50b3f49fd53f840e2f98ff1ab0582500;hb=fdeae0675b767547d5b017642cb256c514a35022;hp=33826c363e9bd9fa90d23fe2e3e7a90a46124507;hpb=c374b4e9228657117409c8761063dd3cba715b07;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/adaptors/devel-api/adaptor-framework/imf-manager.cpp b/adaptors/devel-api/adaptor-framework/imf-manager.cpp index 33826c3..620fdd1 100644 --- a/adaptors/devel-api/adaptor-framework/imf-manager.cpp +++ b/adaptors/devel-api/adaptor-framework/imf-manager.cpp @@ -108,6 +108,51 @@ void ImfManager::ApplyOptions( const InputMethodOptions& options ) Internal::Adaptor::ImfManager::GetImplementation(*this).ApplyOptions( options ); } +void ImfManager::SetInputPanelData( const std::string& data ) +{ + Internal::Adaptor::ImfManager::GetImplementation(*this).SetInputPanelData( data ); +} + +void ImfManager::GetInputPanelData( std::string& data ) +{ + Internal::Adaptor::ImfManager::GetImplementation(*this).GetInputPanelData( data ); +} + +Dali::ImfManager::State ImfManager::GetInputPanelState() +{ + return Internal::Adaptor::ImfManager::GetImplementation(*this).GetInputPanelState(); +} + +void ImfManager::SetReturnKeyState( bool visible ) +{ + Internal::Adaptor::ImfManager::GetImplementation(*this).SetReturnKeyState( visible ); +} + +void ImfManager::AutoEnableInputPanel( bool enabled ) +{ + Internal::Adaptor::ImfManager::GetImplementation(*this).AutoEnableInputPanel( enabled ); +} + +void ImfManager::ShowInputPanel() +{ + Internal::Adaptor::ImfManager::GetImplementation(*this).ShowInputPanel(); +} + +void ImfManager::HideInputPanel() +{ + Internal::Adaptor::ImfManager::GetImplementation(*this).HideInputPanel(); +} + +Dali::ImfManager::KeyboardType ImfManager::GetKeyboardType() +{ + return Internal::Adaptor::ImfManager::GetImplementation(*this).GetKeyboardType(); +} + +std::string ImfManager::GetInputPanelLocale() +{ + return Internal::Adaptor::ImfManager::GetImplementation(*this).GetInputPanelLocale(); +} + ImfManager::ImfManagerSignalType& ImfManager::ActivatedSignal() { return Internal::Adaptor::ImfManager::GetImplementation(*this).ActivatedSignal(); @@ -133,6 +178,11 @@ ImfManager::VoidSignalType& ImfManager::LanguageChangedSignal() return Internal::Adaptor::ImfManager::GetImplementation(*this).LanguageChangedSignal(); } +ImfManager::KeyboardTypeSignalType& ImfManager::KeyboardTypeChangedSignal() +{ + return Internal::Adaptor::ImfManager::GetImplementation(*this).KeyboardTypeChangedSignal(); +} + ImfManager::ImfManager(Internal::Adaptor::ImfManager *impl) : BaseHandle(impl) {