Add move semantics to common and base Toolkit classes
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / buttons / button.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/buttons/button.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23 #include <dali/public-api/object/property-map.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/controls/buttons/button-impl.h>
27 #include <dali-toolkit/public-api/controls/image-view/image-view.h>
28 #include <dali-toolkit/public-api/visuals/text-visual-properties.h>
29
30 namespace Dali
31 {
32
33 namespace Toolkit
34 {
35
36 Button::Button()
37 {}
38
39 Button::Button( const Button& button ) = default;
40
41 Button::Button( Button&& rhs ) = default;
42
43 Button& Button::operator=( const Button& button ) = default;
44
45 Button& Button::operator=( Button&& rhs ) = default;
46
47 Button::~Button()
48 {
49 }
50
51 Button Button::DownCast( BaseHandle handle )
52 {
53   return Control::DownCast<Button, Internal::Button>(handle);
54 }
55
56 Button::ButtonSignalType& Button::PressedSignal()
57 {
58   return Dali::Toolkit::GetImplementation( *this ).PressedSignal();
59 }
60
61 Button::ButtonSignalType& Button::ReleasedSignal()
62 {
63   return Dali::Toolkit::GetImplementation( *this ).ReleasedSignal();
64 }
65
66 Button::ButtonSignalType& Button::ClickedSignal()
67 {
68   return Dali::Toolkit::GetImplementation( *this ).ClickedSignal();
69 }
70
71 Button::ButtonSignalType& Button::StateChangedSignal()
72 {
73   return Dali::Toolkit::GetImplementation( *this ).StateChangedSignal();
74 }
75
76 Button::Button( Internal::Button& implementation )
77 : Control( implementation )
78 {
79 }
80
81 Button::Button( Dali::Internal::CustomActor* internal )
82 : Control( internal )
83 {
84   VerifyCustomActorPointer<Internal::Button>(internal);
85 }
86
87 } // namespace Toolkit
88
89 } // namespace Dali