Add Preedit style - Highlight and Reverse
[platform/core/uifw/dali-adaptor.git] / dali / internal / input / tizen-wayland / input-method-context-impl-ecore-wl.h
1 #ifndef DALI_INTERNAL_INPUT_METHOD_CONTEXT_IMPL_ECORE_WL_H
2 #define DALI_INTERNAL_INPUT_METHOD_CONTEXT_IMPL_ECORE_WL_H
3
4 /*
5  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/internal/input/linux/dali-ecore-imf.h>
23 #include <dali/internal/system/linux/dali-ecore.h>
24
25 #include <dali/public-api/common/vector-wrapper.h>
26 #include <dali/public-api/object/base-object.h>
27 #include <dali/integration-api/events/key-event-integ.h>
28
29 // INTERNAL INCLUDES
30 #include <dali/internal/input/common/input-method-context-impl.h>
31
32 namespace Dali
33 {
34
35 class RenderSurface;
36
37 namespace Internal
38 {
39
40 namespace Adaptor
41 {
42
43 class InputMethodContextEcoreWl : public Dali::Internal::Adaptor::InputMethodContext, public Dali::ConnectionTracker
44 {
45 public:
46
47   /**
48    * @brief Creates a new InputMethodContext handle
49    *
50    * @param[in] actor The actor that uses the new InputMethodContext instance.
51    * @return InputMethodContext pointer
52    */
53   static InputMethodContextPtr New( Dali::Actor actor );
54
55   /**
56    * @brief Initializes member data.
57    */
58   void Initialize() override;
59
60 public:
61
62   /**
63    * @copydoc Dali::InputMethodContext::Finalize()
64    */
65   void Finalize() override;
66
67   /**
68    * Connect Callbacks required for InputMethodContext.
69    * If you don't connect InputMethodContext callbacks, you can't get the key events.
70    * The events are PreeditChanged, Commit, DeleteSurrounding and PrivateCommand.
71    */
72   void ConnectCallbacks() override;
73
74   /**
75    * Disconnect Callbacks attached to input method context.
76    */
77   void DisconnectCallbacks() override;
78
79   /**
80    * @copydoc Dali::InputMethodContext::Activate()
81    */
82   void Activate() override;
83
84   /**
85    * @copydoc Dali::InputMethodContext::Deactivate()
86    */
87   void Deactivate() override;
88
89   /**
90    * @copydoc Dali::InputMethodContext::Reset()
91    */
92   void Reset() override;
93
94   /**
95    * @copydoc Dali::InputMethodContext::GetContext()
96    */
97   ImfContext* GetContext() override;
98
99   /**
100    * @copydoc Dali::InputMethodContext::RestoreAfterFocusLost()
101    */
102   bool RestoreAfterFocusLost() const override;
103
104   /**
105    * @copydoc Dali::InputMethodContext::SetRestoreAfterFocusLost()
106    */
107   void SetRestoreAfterFocusLost( bool toggle ) override;
108
109   /**
110    * @copydoc Dali::InputMethodContext::PreEditChanged()
111    */
112   void PreEditChanged( void *data, ImfContext *imfContext, void *eventInfo ) override;
113
114   /**
115    * @copydoc Dali::InputMethodContext::NotifyCursorPosition()
116    */
117   void CommitReceived( void *data, ImfContext *imfContext, void *eventInfo ) override;
118
119   /**
120    * @copydoc Dali::InputMethodContext::NotifyCursorPosition()
121    */
122   bool RetrieveSurrounding( void *data, ImfContext *imfContext, char** text, int* cursorPosition ) override;
123
124   /**
125    * @copydoc Dali::InputMethodContext::DeleteSurrounding()
126    */
127   void DeleteSurrounding( void *data, ImfContext *imfContext, void *eventInfo ) override;
128
129  /**
130   * @copydoc Dali::InputMethodContext::SendPrivateCommand()
131   */
132   void SendPrivateCommand( void* data, ImfContext* imfContext, void* eventInfo ) override;
133
134   /**
135    * @copydoc Dali::InputMethodContext::SendCommitContent()
136    */
137    void SendCommitContent( void* data, ImfContext* imfContext, void* eventInfo ) override;
138
139   // Cursor related
140   /**
141    * @copydoc Dali::InputMethodContext::NotifyCursorPosition()
142    */
143   void NotifyCursorPosition() override;
144
145   /**
146    * @copydoc Dali::InputMethodContext::SetCursorPosition()
147    */
148   void SetCursorPosition( unsigned int cursorPosition ) override;
149
150   /**
151    * @copydoc Dali::InputMethodContext::GetCursorPosition()
152    */
153   unsigned int GetCursorPosition() const override;
154
155   /**
156    * @copydoc Dali::InputMethodContext::SetSurroundingText()
157    */
158   void SetSurroundingText( const std::string& text ) override;
159
160   /**
161    * @copydoc Dali::InputMethodContext::GetSurroundingText()
162    */
163   const std::string& GetSurroundingText() const override;
164
165   /**
166   * @copydoc Dali::InputMethodContext::NotifyTextInputMultiLine()
167   */
168   void NotifyTextInputMultiLine( bool multiLine ) override;
169
170   /**
171   * @copydoc Dali::InputMethodContext::GetTextDirection()
172   */
173   Dali::InputMethodContext::TextDirection GetTextDirection() override;
174
175   /**
176   * @copydoc Dali::InputMethodContext::GetInputMethodArea()
177   */
178   Dali::Rect<int> GetInputMethodArea() override;
179
180   /**
181   * @copydoc Dali::InputMethodContext::ApplyOptions()
182   */
183   void ApplyOptions( const InputMethodOptions& options ) override;
184
185   /**
186    * @copydoc Dali::InputMethodContext::SetInputPanelData()
187    */
188   void SetInputPanelData( const std::string& data ) override;
189
190   /**
191    * @copydoc Dali::InputMethodContext::GetInputPanelData()
192    */
193   void GetInputPanelData( std::string& data ) override;
194
195   /**
196    * @copydoc Dali::InputMethodContext::GetInputPanelState()
197    */
198   Dali::InputMethodContext::State GetInputPanelState() override;
199
200   /**
201    * @copydoc Dali::InputMethodContext::SetReturnKeyState()
202    */
203   void SetReturnKeyState( bool visible ) override;
204
205   /**
206    * @copydoc Dali::InputMethodContext::AutoEnableInputPanel()
207    */
208   void AutoEnableInputPanel( bool enabled ) override;
209
210   /**
211    * @copydoc Dali::InputMethodContext::ShowInputPanel()
212    */
213   void ShowInputPanel() override;
214
215   /**
216    * @copydoc Dali::InputMethodContext::HideInputPanel()
217    */
218   void HideInputPanel() override;
219
220   /**
221    * @copydoc Dali::InputMethodContext::GetKeyboardType()
222    */
223   Dali::InputMethodContext::KeyboardType GetKeyboardType() override;
224
225   /**
226    * @copydoc Dali::InputMethodContext::GetInputPanelLocale()
227    */
228   std::string GetInputPanelLocale() override;
229
230   /**
231    * @copydoc Dali::InputMethodContext::SetContentMIMETypes()
232    */
233   void SetContentMIMETypes( const std::string& mimeTypes ) override;
234
235   /**
236    * @copydoc Dali::InputMethodContext::FilterEventKey()
237    */
238   bool FilterEventKey( const Dali::KeyEvent& keyEvent ) override;
239
240   /**
241    * @copydoc Dali::InputMethodContext::AllowTextPrediction()
242    */
243   void AllowTextPrediction( bool prediction ) override;
244
245   /**
246    * @copydoc Dali::InputMethodContext::IsTextPredictionAllowed()
247    */
248   bool IsTextPredictionAllowed() const override;
249
250   /**
251    * @copydoc Dali::InputMethodContext::SetInputPanelLanguage()
252    */
253   void SetInputPanelLanguage( Dali::InputMethodContext::InputPanelLanguage language ) override;
254
255   /**
256    * @copydoc Dali::InputMethodContext::GetInputPanelLanguage()
257    */
258   Dali::InputMethodContext::InputPanelLanguage GetInputPanelLanguage() const override;
259
260   /**
261    * @copydoc Dali::InputMethodContext::SetInputPanelPosition()
262    */
263   void SetInputPanelPosition( unsigned int x, unsigned int y ) override;
264
265   /**
266    * @copydoc Dali::InputMethodContext::GetPreeditStyle()
267    */
268   Dali::InputMethodContext::PreeditStyle GetPreeditStyle() const override;
269
270 private:
271   /**
272    * Context created the first time and kept until deleted.
273    */
274   void CreateContext();
275
276   /**
277    * @copydoc Dali::InputMethodContext::DeleteContext()
278    */
279   void DeleteContext();
280
281 private:
282
283   /**
284    * @brief Process event key down, whether filter a key to isf.
285    *
286    * @param[in] keyEvent The event key to be handled.
287    * @return Whether the event key is handled.
288    */
289   bool ProcessEventKeyDown( const KeyEvent& keyEvent );
290
291   /**
292    * @brief Process event key up, whether filter a key to isf.
293    *
294    * @param[in] keyEvent The event key to be handled.
295    * @return Whether the event key is handled.
296    */
297   bool ProcessEventKeyUp( const KeyEvent& keyEvent );
298
299   /**
300   * Ecore_Event_Modifier enums in Ecore_Input.h do not match Ecore_IMF_Keyboard_Modifiers in Ecore_IMF.h.
301   * This function converts from Ecore_Event_Modifier to Ecore_IMF_Keyboard_Modifiers enums.
302   * @param[in] ecoreModifier the Ecore_Event_Modifier input.
303   * @return the Ecore_IMF_Keyboard_Modifiers output.
304   */
305   Ecore_IMF_Keyboard_Modifiers EcoreInputModifierToEcoreIMFModifier( unsigned int ecoreModifier );
306
307   /**
308    * EcoreInputModifierToEcoreIMFLock function converts from Ecore_Event_Modifier to Ecore_IMF_Keyboard_Locks enums.
309    * @param[in] modifier the Ecore_Event_Modifier input.
310    * @return the Ecore_IMF_Keyboard_Locks output.
311    */
312   Ecore_IMF_Keyboard_Locks EcoreInputModifierToEcoreIMFLock( unsigned int modifier );
313
314   /**
315    * Called when the binded actor is added to a window.
316    */
317   void OnStaged( Dali::Actor actor );
318
319 private:
320   /**
321    * @brief Constructor.
322    */
323   explicit InputMethodContextEcoreWl( Dali::Actor actor );
324
325 protected:
326   /**
327    * Destructor.
328    */
329   virtual ~InputMethodContextEcoreWl() override;
330
331 private:
332   // Undefined copy constructor
333   explicit InputMethodContextEcoreWl( const InputMethodContextEcoreWl& inputMethodContext) = delete;
334
335   // Undefined assignment operator
336   InputMethodContextEcoreWl& operator=( const InputMethodContextEcoreWl& inputMethodContext ) = delete;
337
338 private:
339   Ecore_IMF_Context* mIMFContext;
340   int mIMFCursorPosition;
341   std::string mSurroundingText;
342
343   bool mRestoreAfterFocusLost:1;             ///< Whether the keyboard needs to be restored (activated ) after focus regained.
344   bool mIdleCallbackConnected:1;             ///< Whether the idle callback is already connected.
345
346   std::vector<Dali::Integration::KeyEvent> mKeyEvents; ///< Stores key events to be sent from idle call-back.
347   InputMethodOptions mOptions;
348   Dali::InputMethodContext::PreeditStyle mPreeditType;
349
350   int mWindowId;
351 };
352
353
354 } // namespace Adaptor
355
356 } // namespace Internal
357
358 } // namespace Dali
359
360 #endif // DALI_INTERNAL_INPUT_METHOD_CONTEXT_IMPL_ECORE_WL_H