X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Fdali-toolkit-test-utils%2Ftoolkit-imf-manager.h;h=842078bb870be6309122f4f6d9dae66ba5a9b75d;hp=856c943260e15e47f022e671f5ce115362eec62d;hb=d11f4b2b7d27bc8decf1aba71b46e2456b5739fc;hpb=a881757839b7abb008873a68c67e17b3ba39669b diff --git a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-imf-manager.h b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-imf-manager.h index 856c943..842078b 100644 --- a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-imf-manager.h +++ b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-imf-manager.h @@ -1,5 +1,5 @@ -#ifndef _DALI_ADAPTOR_IMF_MANAGER_H_ -#define _DALI_ADAPTOR_IMF_MANAGER_H_ +#ifndef __DALI_TOOLKIT_TOOLKIT_IMF_MANAGER_H__ +#define __DALI_TOOLKIT_TOOLKIT_IMF_MANAGER_H__ /* * Copyright (c) 2014 Samsung Electronics Co., Ltd. @@ -19,9 +19,9 @@ */ // EXTERNAL INCLUDES -#define IMFMANAGER_H +#define __DALI_IMF_MANAGER_H__ #include -#include +#include namespace Dali DALI_IMPORT_API { @@ -109,9 +109,9 @@ public: bool preeditResetRequired; // flag if preedit reset is required. }; - typedef SignalV2< void (ImfManager&) > ImfManagerSignalV2; + typedef Signal< void (ImfManager&) > ImfManagerSignalType; - typedef SignalV2< ImfCallbackData ( ImfManager&, const ImfEventData& ) > ImfEventSignalV2; + typedef Signal< ImfCallbackData ( ImfManager&, const ImfEventData& ) > ImfEventSignalType; public: @@ -151,7 +151,7 @@ public: * Set status whether the IMF has to restore the keyboard after losing focus. * @param[in] toggle True means that keyboard should be restored after focus lost and regained. */ - void SetRestoreAferFocusLost( bool toggle ); + void SetRestoreAfterFocusLost( bool toggle ); /** * Send message reset the pred-edit state / imf module. Used to interupt pre-edit state maybe due to a touch input. @@ -195,13 +195,13 @@ public: * This is emitted when the virtual keyboard is connected to or the hardware keyboard is activated. * @return The IMF Activated signal. */ - ImfManagerSignalV2& ActivatedSignal(); + ImfManagerSignalType& ActivatedSignal(); /** * This is emitted when the IMF manager receives an event from the IMF * @return The Event signal containing the event data. */ - ImfEventSignalV2& EventReceivedSignal(); + ImfEventSignalType& EventReceivedSignal(); // Construction & Destruction @@ -211,9 +211,9 @@ public: ImfManager(); /** - * Virtual destructor. + * Non virtual destructor. */ - virtual ~ImfManager(); + ~ImfManager(); /** * This constructor is used by ImfManager::Get(). @@ -224,4 +224,4 @@ public: } // namespace Dali -#endif // _DALI_ADAPTOR_IMF_MANAGER_H_ +#endif // __DALI_TOOLKIT_TOOLKIT_IMF_MANAGER_H__