Change RegisterGlCallback function name of GlView
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / control.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali-toolkit/public-api/controls/control.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/internal/controls/control/control-data-impl.h>
26 #include <dali-toolkit/public-api/controls/control-impl.h>
27
28 namespace Dali
29 {
30 namespace Toolkit
31 {
32 Control Control::New()
33 {
34   return Internal::Control::New();
35 }
36
37 Control::Control()
38 {
39 }
40
41 Control::Control(const Control& uiControl) = default;
42
43 Control::Control(Control&& rhs) = default;
44
45 Control::~Control()
46 {
47 }
48
49 Control& Control::operator=(const Control& handle) = default;
50
51 Control& Control::operator=(Control&& rhs) = default;
52
53 Control Control::DownCast(BaseHandle handle)
54 {
55   return DownCast<Control, Internal::Control>(handle);
56 }
57
58 void Control::SetKeyInputFocus()
59 {
60   Internal::GetImplementation(*this).SetKeyInputFocus();
61 }
62
63 bool Control::HasKeyInputFocus()
64 {
65   return Internal::GetImplementation(*this).HasKeyInputFocus();
66 }
67
68 void Control::ClearKeyInputFocus()
69 {
70   Internal::GetImplementation(*this).ClearKeyInputFocus();
71 }
72
73 PinchGestureDetector Control::GetPinchGestureDetector() const
74 {
75   return Internal::GetImplementation(*this).GetPinchGestureDetector();
76 }
77
78 PanGestureDetector Control::GetPanGestureDetector() const
79 {
80   return Internal::GetImplementation(*this).GetPanGestureDetector();
81 }
82
83 TapGestureDetector Control::GetTapGestureDetector() const
84 {
85   return Internal::GetImplementation(*this).GetTapGestureDetector();
86 }
87
88 LongPressGestureDetector Control::GetLongPressGestureDetector() const
89 {
90   return Internal::GetImplementation(*this).GetLongPressGestureDetector();
91 }
92
93 void Control::SetStyleName(const std::string& styleName)
94 {
95   Internal::GetImplementation(*this).SetStyleName(styleName);
96 }
97
98 const std::string& Control::GetStyleName() const
99 {
100   return Internal::GetImplementation(*this).GetStyleName();
101 }
102
103 void Control::SetBackgroundColor(const Vector4& color)
104 {
105   Internal::GetImplementation(*this).SetBackgroundColor(color);
106 }
107
108 void Control::ClearBackground()
109 {
110   Internal::GetImplementation(*this).ClearBackground();
111 }
112
113 bool Control::IsResourceReady() const
114 {
115   const Internal::Control&       internalControl = Toolkit::Internal::GetImplementation(*this);
116   const Internal::Control::Impl& controlDataImpl = Internal::Control::Impl::Get(internalControl);
117
118   return controlDataImpl.IsResourceReady();
119 }
120
121 Toolkit::Visual::ResourceStatus Control::GetVisualResourceStatus(Dali::Property::Index index)
122 {
123   const Internal::Control&       internalControl = Toolkit::Internal::GetImplementation(*this);
124   const Internal::Control::Impl& controlDataImpl = Internal::Control::Impl::Get(internalControl);
125   return controlDataImpl.GetVisualResourceStatus(index);
126 }
127
128 Control::KeyEventSignalType& Control::KeyEventSignal()
129 {
130   return Internal::GetImplementation(*this).KeyEventSignal();
131 }
132
133 Control::KeyInputFocusSignalType& Control::KeyInputFocusGainedSignal()
134 {
135   return Internal::GetImplementation(*this).KeyInputFocusGainedSignal();
136 }
137
138 Control::KeyInputFocusSignalType& Control::KeyInputFocusLostSignal()
139 {
140   return Internal::GetImplementation(*this).KeyInputFocusLostSignal();
141 }
142
143 Control::ResourceReadySignalType& Control::ResourceReadySignal()
144 {
145   Internal::Control&       internalControl = Toolkit::Internal::GetImplementation(*this);
146   Internal::Control::Impl& controlImpl     = Internal::Control::Impl::Get(internalControl);
147
148   return controlImpl.mResourceReadySignal;
149 }
150
151 Control::Control(Internal::Control& implementation)
152 : CustomActor(implementation)
153 {
154 }
155
156 Control::Control(Dali::Internal::CustomActor* internal)
157 : CustomActor(internal)
158 {
159   VerifyCustomActorPointer<Internal::Control>(internal);
160 }
161
162 } // namespace Toolkit
163
164 } // namespace Dali