Add SetTapMaximumAllowedTime
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / common / color-controller-impl.h
1 #ifndef DALI_INTERNAL_COLOR_CONTROLLER_H
2 #define DALI_INTERNAL_COLOR_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 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/base-object.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/devel-api/adaptor-framework/color-controller-plugin.h>
26 #include <dali/devel-api/adaptor-framework/color-controller.h>
27
28 namespace Dali
29 {
30 namespace Internal
31 {
32 namespace Adaptor
33 {
34 /**
35  * Implementation of ColorController
36  */
37 class ColorController : public BaseObject
38 {
39 public:
40   /**
41    * Constructor.
42    */
43   ColorController();
44
45   /**
46    * @copydoc Dali::ColorController::Get()
47    */
48   static Dali::ColorController Get();
49
50   /**
51    * @copydoc Dali::ColorController::RetrieveColor(const std::string&, Vector4&)
52    */
53   bool RetrieveColor(const std::string& colorCode, Vector4& colorValue);
54
55   /**
56    * @copydoc Dali::ColorController::RetrieveColor(const std::string&, Vector4&, Vector4&, Vector4&)
57    */
58   bool RetrieveColor(const std::string& colorCode, Vector4& textColor, Vector4& textOutlineColor, Vector4& textShadowColor);
59
60 private:
61   /**
62   * @brief Initialize
63   */
64   void Initialize();
65
66 protected:
67   /**
68    * @brief Destructor.
69    */
70   ~ColorController() override;
71
72 private:
73   using CreateColorControllerFunction = Dali::ColorControllerPlugin* (*)();
74
75   void*                        mLibHandle; ///< Handle for the loaded library
76   Dali::ColorControllerPlugin* mPlugin;    ///< Plugin handle
77
78   CreateColorControllerFunction mCreateColorControllerPtr; ///< Function pointer called in adaptor to create a plugin instance
79 };
80
81 } // namespace Adaptor
82
83 } // namespace Internal
84
85 // Additional Helpers for public-api forwarding methods
86 inline Internal::Adaptor::ColorController& GetImplementation(Dali::ColorController& controller)
87 {
88   DALI_ASSERT_ALWAYS(controller && "ColorController handle is empty");
89   BaseObject& handle = controller.GetBaseObject();
90   return static_cast<Internal::Adaptor::ColorController&>(handle);
91 }
92
93 inline const Internal::Adaptor::ColorController& GetImplementation(const Dali::ColorController& controller)
94 {
95   DALI_ASSERT_ALWAYS(controller && "ColorController handle is empty");
96   const BaseObject& handle = controller.GetBaseObject();
97   return static_cast<const Internal::Adaptor::ColorController&>(handle);
98 }
99
100 } // namespace Dali
101
102 #endif // DALI_INTERNAL_COLOR_CONTROLLER_H