Add move semantics to common and base Toolkit classes
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / image-view / image-view.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/image-view/image-view.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/image-view/image-view-impl.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 ImageView::ImageView()
35 {
36 }
37
38 ImageView::ImageView( const ImageView& imageView ) = default;
39
40 ImageView::ImageView( ImageView&& rhs ) = default;
41
42 ImageView& ImageView::operator=( const ImageView& imageView ) = default;
43
44 ImageView& ImageView::operator=( ImageView&& rhs ) = default;
45
46 ImageView::~ImageView()
47 {
48 }
49
50 ImageView ImageView::New()
51 {
52   return Internal::ImageView::New();
53 }
54
55 ImageView ImageView::New( const std::string& url )
56 {
57   ImageView imageView = Internal::ImageView::New();
58   imageView.SetImage( url, ImageDimensions() );
59   return imageView;
60 }
61
62 ImageView ImageView::New( const std::string& url, ImageDimensions size )
63 {
64   ImageView imageView = Internal::ImageView::New();
65   imageView.SetImage( url, size );
66   return imageView;
67 }
68
69 ImageView ImageView::DownCast( BaseHandle handle )
70 {
71   return Control::DownCast<ImageView, Internal::ImageView>( handle );
72 }
73
74 void ImageView::SetImage( const std::string& url )
75 {
76   Dali::Toolkit::GetImpl( *this ).SetImage( url, ImageDimensions() );
77 }
78
79 void ImageView::SetImage( const std::string& url, ImageDimensions size )
80 {
81   Dali::Toolkit::GetImpl( *this ).SetImage( url, size );
82 }
83
84 ImageView::ImageView( Internal::ImageView& implementation )
85  : Control( implementation )
86 {
87 }
88
89 ImageView::ImageView( Dali::Internal::CustomActor* internal )
90  : Control( internal )
91 {
92   VerifyCustomActorPointer<Internal::ImageView>( internal );
93 }
94
95 } // namespace Toolkit
96
97 } // namespace Dali