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