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-input-method-context.h;h=a56ea81084627c42b4bb0c691a13cc422d7955bb;hp=cb4e085f2c7cb85739295e30ac87c708a44df254;hb=2951af4fa549b8383cebb3464fd14eb86a993e25;hpb=e37f48bb34e81585a6ed436bd7a2f9dce02c19f5 diff --git a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-input-method-context.h b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-input-method-context.h index cb4e085..a56ea81 100755 --- a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-input-method-context.h +++ b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-input-method-context.h @@ -1,8 +1,8 @@ -#ifndef __DALI_TOOLKIT_TOOLKIT_INPUT_METHOD_CONTEXT_H__ -#define __DALI_TOOLKIT_TOOLKIT_INPUT_METHOD_CONTEXT_H__ +#ifndef DALI_TOOLKIT_TOOLKIT_INPUT_METHOD_CONTEXT_H +#define DALI_TOOLKIT_TOOLKIT_INPUT_METHOD_CONTEXT_H /* - * Copyright (c) 2018 Samsung Electronics Co., Ltd. + * Copyright (c) 2019 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,7 +19,8 @@ */ // EXTERNAL INCLUDES -#define __DALI_INPUT_METHOD_CONTEXT_H__ +#define DALI_INPUT_METHOD_CONTEXT_H +#include #include #include #include @@ -46,7 +47,16 @@ class InputMethodContext : public BaseHandle public: /** - * @brief Events that are generated by the input method context. + * @brief The direction of text. + */ + enum TextDirection + { + LeftToRight, + RightToLeft, + }; + + /** + * @brief Events that are generated by the InputMethodContext. */ enum EventType { @@ -59,7 +69,47 @@ public: }; /** - * @brief This structure is used to pass on data from the input method cotext regarding predictive text. + * @brief Enumeration for state of the input panel. + */ + enum State + { + DEFAULT = 0, ///< Unknown state + SHOW, ///< Input panel is shown + HIDE, ///< Input panel is hidden + WILL_SHOW ///< Input panel in process of being shown + }; + + /** + * @brief Enumeration for the type of Keyboard. + */ + enum KeyboardType + { + SOFTWARE_KEYBOARD, ///< Software keyboard (Virtual keyboard) is default + HARDWARE_KEYBOARD ///< Hardware keyboard + }; + + /** + * @brief Enumeration for the language mode of the input panel. + */ + enum class InputPanelLanguage + { + AUTOMATIC, ///< IME Language automatically set depending on the system display + ALPHABET ///< Latin alphabet at all times + }; + + /** + * @brief Enumeration for the preedit style types. + */ + enum class PreeditStyle + { + NONE, ///< None style + UNDERLINE, ///< Underline substring style + REVERSE, ///< Reverse substring style + HIGHLIGHT ///< Highlight substring style + }; + + /** + * @brief This structure is used to pass on data from the InputMethodContext regarding predictive text. */ struct EventData { @@ -148,6 +198,14 @@ public: static InputMethodContext New(); /** + * @brief Create a handle to the instance of InputMethodContext. + * + * @param[in] actor The actor that uses the new InputMethodContext instance. + * @return A handle to the InputMethodContext. + */ + static InputMethodContext New( Actor actor ); + + /** * @brief Finalize the InputMethodContext. * * It means that the context will be deleted. @@ -243,6 +301,20 @@ public: */ bool FilterEventKey( const Dali::KeyEvent& keyEvent ); + /** + * @brief Sets the preedit type. + * + * @param[in] type The preedit style type + */ + void SetPreeditStyle( PreeditStyle type ); + + /** + * @brief Gets the preedit type. + * + * @return The preedit style type + */ + PreeditStyle GetPreeditStyle() const; + public: // Signals @@ -306,4 +378,4 @@ public: } // namespace Dali -#endif // __DALI_TOOLKIT_TOOLKIT_INPUT_METHOD_CONTEXT_H__ +#endif // DALI_TOOLKIT_TOOLKIT_INPUT_METHOD_CONTEXT_H