[dali_1.9.22] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / buttons / push-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/push-button.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/controls/buttons/push-button-impl.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 PushButton::PushButton()
35 : Button()
36 {
37 }
38
39 PushButton::PushButton( Internal::PushButton& implementation )
40 : Button( implementation )
41 {
42 }
43
44 PushButton::PushButton( const PushButton& pushButton )
45 : Button( pushButton )
46 {
47 }
48
49 PushButton& PushButton::operator=( const PushButton& pushButton )
50 {
51   if( &pushButton != this )
52   {
53     Button::operator=( pushButton );
54   }
55   return *this;
56 }
57
58 PushButton::PushButton( Dali::Internal::CustomActor* internal )
59 : Button( internal )
60 {
61   VerifyCustomActorPointer<Internal::PushButton>(internal);
62 }
63
64 PushButton::~PushButton()
65 {
66 }
67
68 PushButton PushButton::New()
69 {
70   return Internal::PushButton::New();
71 }
72
73 PushButton PushButton::DownCast( BaseHandle handle )
74 {
75   return Control::DownCast<PushButton, Internal::PushButton>(handle);
76 }
77
78 } // namespace Toolkit
79
80 } // namespace Dali