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