Updated demos to use DALi clang-format
[platform/core/uifw/dali-demo.git] / examples / transitions / shadow-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 #include "shadow-button.h"
18 #include "shadow-button-impl.h"
19
20 namespace Demo
21 {
22 ShadowButton::ShadowButton()
23 {
24 }
25
26 ShadowButton::ShadowButton(const ShadowButton& control)
27 : Control(control)
28 {
29 }
30
31 ShadowButton& ShadowButton::operator=(const ShadowButton& rhs)
32 {
33   if(&rhs != this)
34   {
35     Control::operator=(rhs);
36   }
37   return *this;
38 }
39
40 ShadowButton::~ShadowButton()
41 {
42 }
43
44 ShadowButton ShadowButton::New()
45 {
46   ShadowButton control = Internal::ShadowButton::New();
47   return control;
48 }
49
50 ShadowButton ShadowButton::New(const std::string& url)
51 {
52   ShadowButton control = Internal::ShadowButton::New();
53   return control;
54 }
55
56 ShadowButton ShadowButton::DownCast(BaseHandle handle)
57 {
58   return Control::DownCast<ShadowButton, Internal::ShadowButton>(handle);
59 }
60
61 void ShadowButton::SetActiveState(bool active)
62 {
63   GetImpl(*this).SetActiveState(active);
64 }
65
66 bool ShadowButton::GetActiveState()
67 {
68   return GetImpl(*this).GetActiveState();
69 }
70
71 void ShadowButton::SetCheckState(bool checkState)
72 {
73   GetImpl(*this).SetCheckState(checkState);
74 }
75
76 bool ShadowButton::GetCheckState()
77 {
78   return GetImpl(*this).GetCheckState();
79 }
80
81 ShadowButton::ShadowButton(Internal::ShadowButton& implementation)
82 : Control(implementation)
83 {
84 }
85
86 ShadowButton::ShadowButton(Dali::Internal::CustomActor* internal)
87 : Control(internal)
88 {
89   VerifyCustomActorPointer<Internal::ShadowButton>(internal);
90 }
91
92 } //namespace Demo