62032fd8274ea55514bca16db9ba4452c7bd7e67
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-selection-handle-controller.h
1 #ifndef DALI_TOOLKIT_TEXT_SELECTION_HANDLE_CONTROLLER_H
2 #define DALI_TOOLKIT_TEXT_SELECTION_HANDLE_CONTROLLER_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 // INTERNAL INCLUDES
22 #include <dali-toolkit/internal/text/cursor-helper-functions.h>
23 #include <dali-toolkit/internal/text/decorator/text-decorator.h>
24 #include <dali-toolkit/internal/text/text-controller.h>
25
26 namespace Dali
27 {
28 namespace Toolkit
29 {
30 namespace Text
31 {
32 /**
33  * @brief Updates the Selection Handles.
34  */
35 struct SelectionHandleController
36 {
37   /// @copydoc Controller::Impl::RepositionSelectionHandles
38   /// @param[in] impl The Text controller Impl.
39   static void Reposition(Controller::Impl& impl);
40
41   /// @copydoc Controller::Impl::RepositionSelectionHandles
42   /// @param[in] impl The Text controller Impl.
43   static void Reposition(Controller::Impl& impl, float visualX, float visualY, Controller::NoTextTap::Action action);
44
45   /// @copydoc Controller::Impl::UpdateSelectionHandle
46   /// @param[in] impl The Text controller Impl.
47   static void Update(Controller::Impl& impl, HandleType handleType, const CursorInfo& cursorInfo);
48 };
49
50 } // namespace Text
51
52 } // namespace Toolkit
53
54 } // namespace Dali
55
56 #endif // DALI_TOOLKIT_TEXT_SELECTION_HANDLE_CONTROLLER_H