Use RegisterUniqueProperty for some more renderers
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / focus-manager / keyboard-focus-manager-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_KEYBOARD_FOCUS_MANAGER_H
2 #define DALI_TOOLKIT_INTERNAL_KEYBOARD_FOCUS_MANAGER_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/public-api/common/vector-wrapper.h>
23 #include <dali/public-api/object/base-object.h>
24 #include <dali/public-api/object/weak-handle.h>
25
26 // INTERNAL INCLUDES
27 #include <dali-toolkit/devel-api/focus-manager/keyboard-focus-manager-devel.h>
28 #include <dali-toolkit/public-api/focus-manager/keyboard-focus-manager.h>
29 #include <dali/devel-api/adaptor-framework/window-devel.h>
30
31 namespace Dali
32 {
33 namespace Integration
34 {
35 class SceneHolder;
36
37 } // namespace Integration
38
39 namespace Toolkit
40 {
41 namespace Internal
42 {
43 /**
44  * @copydoc Toolkit::KeyboardFocusManager
45  */
46 class KeyboardFocusManager : public Dali::BaseObject, public ConnectionTracker
47 {
48 public:
49   typedef Toolkit::DevelKeyboardFocusManager::CustomAlgorithmInterface CustomAlgorithmInterface;
50
51   enum FocusIndicatorState
52   {
53     UNKNOWN = -1, ///< Unknown state
54     HIDE    = 0,  ///< FocusIndicator is hidden
55     SHOW    = 1,  ///< FocusIndicator is shown
56   };
57
58   enum EnableFocusedIndicatorState
59   {
60     DISABLE = 0, ///< FocusIndicator is disable
61     ENABLE  = 1, ///< FocusIndicator is enable
62   };
63
64   enum FocusedIndicatorModeState
65   {
66     NONE        = 0, ///< Set nothing
67     ALWAYS_SHOW = 1, ///< FocusIndicator is always shown
68   };
69
70   /**
71    * @copydoc Toolkit::KeyboardFocusManager::Get
72    */
73   static Toolkit::KeyboardFocusManager Get();
74
75   /**
76    * Construct a new KeyboardFocusManager.
77    */
78   KeyboardFocusManager();
79
80   /**
81    * @copydoc Toolkit::KeyboardFocusManager::SetCurrentFocusActor
82    */
83   bool SetCurrentFocusActor(Actor actor);
84
85   /**
86    * @copydoc Toolkit::KeyboardFocusManager::GetCurrentFocusActor
87    */
88   Actor GetCurrentFocusActor();
89
90   /**
91    * @copydoc Toolkit::KeyboardFocusManager::MoveFocus
92    */
93   bool MoveFocus(Toolkit::Control::KeyboardFocus::Direction direction);
94
95   /**
96    * @copydoc Toolkit::KeyboardFocusManager::ClearFocus
97    */
98   void ClearFocus();
99
100   /**
101    * @copydoc Toolkit::KeyboardFocusManager::SetAsFocusGroup
102    */
103   void SetAsFocusGroup(Actor actor, bool isFocusGroup);
104
105   /**
106    * @copydoc Toolkit::KeyboardFocusManager::IsFocusGroup
107    */
108   bool IsFocusGroup(Actor actor) const;
109
110   /**
111    * @copydoc Toolkit::KeyboardFocusManager::GetFocusGroup
112    */
113   Actor GetFocusGroup(Actor actor);
114
115   /**
116    * @copydoc Toolkit::KeyboardFocusManager::SetFocusGroupLoop
117    */
118   void SetFocusGroupLoop(bool enabled);
119
120   /**
121    * @copydoc Toolkit::KeyboardFocusManager::GetFocusGroupLoop
122    */
123   bool GetFocusGroupLoop() const;
124
125   /**
126    * @copydoc Toolkit::KeyboardFocusManager::SetFocusIndicatorActor
127    */
128   void SetFocusIndicatorActor(Actor indicator);
129
130   /**
131    * @copydoc Toolkit::KeyboardFocusManager::GetFocusIndicatorActor
132    */
133   Actor GetFocusIndicatorActor();
134
135   /**
136    * Move current focus to backward
137    */
138   void MoveFocusBackward();
139
140   /**
141    * @copydoc Toolkit::DevelKeyboardFocusManager::SetCustomAlgorithm
142    */
143   void SetCustomAlgorithm(CustomAlgorithmInterface& interface);
144
145   /**
146    * @copydoc Toolkit::DevelKeyboardFocusManager::UseFocusIndicator
147    */
148   void EnableFocusIndicator(bool enable);
149
150   /**
151    * @copydoc Toolkit::DevelKeyboardFocusManager::UseFocusIndicator
152    */
153   bool IsFocusIndicatorEnabled() const;
154
155   /**
156    * @copydoc Toolkit::DevelKeyboardFocusManager::EnableDefaultAlgorithm
157    */
158   void EnableDefaultAlgorithm(bool enable);
159
160   /**
161    * @copydoc Toolkit::DevelKeyboardFocusManager::IsDefaultAlgorithmEnabled
162    */
163   bool IsDefaultAlgorithmEnabled() const;
164
165 public:
166   /**
167    * @copydoc Toolkit::KeyboardFocusManager::PreFocusChangeSignal()
168    */
169   Toolkit::KeyboardFocusManager::PreFocusChangeSignalType& PreFocusChangeSignal();
170
171   /**
172    * @copydoc Toolkit::KeyboardFocusManager::FocusChangedSignal()
173    */
174   Toolkit::KeyboardFocusManager::FocusChangedSignalType& FocusChangedSignal();
175
176   /**
177    * @copydoc Toolkit::KeyboardFocusManager::FocusGroupChangedSignal()
178    */
179   Toolkit::KeyboardFocusManager::FocusGroupChangedSignalType& FocusGroupChangedSignal();
180
181   /**
182    * @copydoc Toolkit::KeyboardFocusManager::FocusedActorEnterKeySignal()
183    */
184   Toolkit::KeyboardFocusManager::FocusedActorEnterKeySignalType& FocusedActorEnterKeySignal();
185
186   /**
187    * Connects a callback function with the object's signals.
188    * @param[in] object The object providing the signal.
189    * @param[in] tracker Used to disconnect the signal.
190    * @param[in] signalName The signal to connect to.
191    * @param[in] functor A newly allocated FunctorDelegate.
192    * @return True if the signal was connected.
193    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
194    */
195   static bool DoConnectSignal(BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor);
196
197 protected:
198   /**
199    * Destructor
200    */
201   virtual ~KeyboardFocusManager();
202
203 private:
204   typedef std::vector<WeakHandle<Actor> > FocusStack;         ///< Define Dali::Vector< Dali::BaseObject* > as FocusStack to contain focus history
205   typedef FocusStack::iterator            FocusStackIterator; ///< Define FocusStack::Iterator as FocusStackIterator to navigate FocusStack
206
207   /**
208    * This will be called when the adaptor is initialized
209    */
210   void OnAdaptorInit();
211
212   /**
213    * This will be called when a new scene holder is created
214    * @param sceneHolder The new scene holder
215    */
216   void OnSceneHolderCreated(Dali::Integration::SceneHolder& sceneHolder);
217
218   /**
219    * Get configuration from StyleManager.
220    */
221   void GetConfigurationFromStyleManger();
222
223   /**
224    * Get the focus group of current focused actor.
225    * @pre The FocusManager has been initialized.
226    * @return A handle to the parent of the current focused actor which is a focus group,
227    * or an empty handle if no actor is focused.
228    */
229   Actor GetCurrentFocusGroup();
230
231   /**
232    * Move the focus to the specified actor and send notification for the focus change.
233    * @param actor The actor to be queried
234    * @return Whether the focus is successful or not
235    */
236   bool DoSetCurrentFocusActor(Actor actor);
237
238   /**
239    * Move the focus to the next actor towards the specified direction within the layout control
240    * @param control The layout control to move the focus in
241    * @param actor The current focused actor
242    * @param direction The direction of focus movement
243    * @return Whether the focus is successful or not
244    */
245   bool DoMoveFocusWithinLayoutControl(Toolkit::Control control, Actor actor, Toolkit::Control::KeyboardFocus::Direction direction);
246
247   /**
248    * Move the focus to the first focusable actor in the next focus group in the forward
249    * or backward direction. The "Tab" key changes the focus group in the forward direction
250    * and the "Shift-Tab" key changes it in the backward direction.
251    * @param forward Whether the direction of focus group change is forward or backward
252    * @return Whether the focus group change is successful or not
253    */
254   bool DoMoveFocusToNextFocusGroup(bool forward);
255
256   /**
257    * Enter has been pressed on the actor. If the actor is control, call the OnKeybaordEnter virtual function.
258    * This function will emit FocusedActorEnterKeySignal.
259    * @param actor The actor to notify
260    */
261   void DoKeyboardEnter(Actor actor);
262
263   /**
264    * Check whether the actor is a layout control that supports two dimensional keyboard navigation.
265    * The layout control needs to internally set the focus order for the child actor and be able to
266    * tell KeyboardFocusmanager the next focusable actor in the given direction.
267    * @pre The KeyboardFocusManager has been initialized.
268    * @pre The Actor has been initialized.
269    * @param actor The actor to be checked.
270    * @return Whether the actor is a layout control or not.
271    */
272   bool IsLayoutControl(Actor actor) const;
273
274   /**
275    * Returns the closest ancestor of the given actor that is a layout control.
276    * @param actor The actor to be checked for its parent layout control
277    * @return The parent layout control the given actor belongs to or an empty handle if the given actor doesn't belong to a layout control
278    */
279   Toolkit::Control GetParentLayoutControl(Actor actor) const;
280
281   /**
282    * Callback for the key event when no actor in the stage has gained the key input focus
283    * @param[in] event The KeyEvent event.
284    */
285   void OnKeyEvent(const KeyEvent& event);
286
287   /**
288    * Callback for the touch event when the screen is touched and when the touch ends
289    * (i.e. the down & up touch events only).
290    * @param[in] touch The touch information
291    */
292   void OnTouch(const TouchEvent& touch);
293
294   /**
295    * Called when the window focus is changed.
296    * @param[in] window The window whose focus is changed
297    * @param[in] focusIn Whether the focus is in/out
298    */
299   void OnWindowFocusChanged(Window window, bool focusIn);
300
301   /**
302    * Get the focus Actor from current window
303    */
304   Actor GetFocusActorFromCurrentWindow();
305
306 private:
307   // Undefined
308   KeyboardFocusManager(const KeyboardFocusManager&);
309
310   KeyboardFocusManager& operator=(const KeyboardFocusManager& rhs);
311
312 private:
313   Toolkit::KeyboardFocusManager::PreFocusChangeSignalType       mPreFocusChangeSignal;       ///< The signal to notify the focus will be changed
314   Toolkit::KeyboardFocusManager::FocusChangedSignalType         mFocusChangedSignal;         ///< The signal to notify the focus change
315   Toolkit::KeyboardFocusManager::FocusGroupChangedSignalType    mFocusGroupChangedSignal;    ///< The signal to notify the focus group change
316   Toolkit::KeyboardFocusManager::FocusedActorEnterKeySignalType mFocusedActorEnterKeySignal; ///< The signal to notify that enter has been pressed on the focused actor
317
318   WeakHandle<Actor> mCurrentFocusActor; ///< A weak handle to the current focused actor
319
320   Actor mFocusIndicatorActor; ///< The focus indicator actor shared by all the keyboard focusable actors for highlight
321
322   FocusStack mFocusHistory; ///< Stack to contain pre-focused actor's BaseObject*
323
324   SlotDelegate<KeyboardFocusManager> mSlotDelegate;
325
326   CustomAlgorithmInterface* mCustomAlgorithmInterface; ///< The user's (application / toolkit) implementation of CustomAlgorithmInterface
327
328   typedef std::vector<std::pair<WeakHandle<Layer>, WeakHandle<Actor> > > FocusActorContainer;
329
330   FocusActorContainer mCurrentFocusActors; ///< A container of focused actors
331
332   WeakHandle<Layer> mCurrentFocusedWindow; ///< A weak handle to the current focused window's root layer
333
334   FocusIndicatorState mIsFocusIndicatorShown; ///< Whether indicator should be shown / hidden when getting focus. It could be enabled when keyboard focus feature is enabled and navigation keys or 'Tab' key are pressed.
335
336   EnableFocusedIndicatorState mEnableFocusIndicator; ///< Whether use focus indicator
337
338   FocusedIndicatorModeState mAlwaysShowIndicator; ///< Whether always show indicator. If true, the indicator would be directly shown when focused
339
340   bool mFocusGroupLoopEnabled : 1; ///< Whether the focus movement is looped within the same focus group
341
342   bool mIsWaitingKeyboardFocusChangeCommit : 1; /// A flag to indicate PreFocusChangeSignal emitted but the proposed focus actor is not commited by the application yet.
343
344   bool mClearFocusOnTouch : 1; ///< Whether clear focus on touch.
345
346   bool mEnableDefaultAlgorithm : 1; ///< Whether use default algorithm focus
347 };
348
349 } // namespace Internal
350
351 inline Internal::KeyboardFocusManager& GetImpl(Dali::Toolkit::KeyboardFocusManager& obj)
352 {
353   DALI_ASSERT_ALWAYS(obj);
354
355   Dali::BaseObject& handle = obj.GetBaseObject();
356
357   return static_cast<Internal::KeyboardFocusManager&>(handle);
358 }
359
360 inline const Internal::KeyboardFocusManager& GetImpl(const Dali::Toolkit::KeyboardFocusManager& obj)
361 {
362   DALI_ASSERT_ALWAYS(obj);
363
364   const Dali::BaseObject& handle = obj.GetBaseObject();
365
366   return static_cast<const Internal::KeyboardFocusManager&>(handle);
367 }
368
369 } // namespace Toolkit
370
371 } // namespace Dali
372
373 #endif // DALI_TOOLKIT_INTERNAL_KEYBOARD_FOCUS_MANAGER_H