Merge "Add a TextEditor property to limit input to maximum characters" into devel...
[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 ) = default;
45
46 PushButton::PushButton( PushButton&& rhs ) = default;
47
48 PushButton& PushButton::operator=( const PushButton& pushButton ) = default;
49
50 PushButton& PushButton::operator=( PushButton&& rhs ) = default;
51
52 PushButton::PushButton( Dali::Internal::CustomActor* internal )
53 : Button( internal )
54 {
55   VerifyCustomActorPointer<Internal::PushButton>(internal);
56 }
57
58 PushButton::~PushButton()
59 {
60 }
61
62 PushButton PushButton::New()
63 {
64   return Internal::PushButton::New();
65 }
66
67 PushButton PushButton::DownCast( BaseHandle handle )
68 {
69   return Control::DownCast<PushButton, Internal::PushButton>(handle);
70 }
71
72 } // namespace Toolkit
73
74 } // namespace Dali