78e7f39e206ccc286a4919b327d344cce2a6b5ce
[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/images/resource-image.h>
24 #include <dali/public-api/object/property-map.h>
25
26 // INTERNAL INCLUDES
27 #include <dali-toolkit/internal/controls/image-view/image-view-impl.h>
28
29 namespace Dali
30 {
31
32 namespace Toolkit
33 {
34
35 ImageView::ImageView()
36 {
37 }
38
39 ImageView::ImageView( const ImageView& imageView )
40 : Control( imageView )
41 {
42 }
43
44 ImageView& ImageView::operator=( const ImageView& imageView )
45 {
46   if( &imageView != this )
47   {
48     Control::operator=( imageView );
49   }
50   return *this;
51 }
52
53 ImageView::~ImageView()
54 {
55 }
56
57 ImageView ImageView::New()
58 {
59   return Internal::ImageView::New();
60 }
61
62 ImageView ImageView::New( const std::string& url )
63 {
64   ImageView imageView = Internal::ImageView::New();
65   imageView.SetImage( url, ImageDimensions() );
66   return imageView;
67 }
68
69 ImageView ImageView::New( const std::string& url, ImageDimensions size )
70 {
71   ImageView imageView = Internal::ImageView::New();
72   imageView.SetImage( url, size );
73   return imageView;
74 }
75
76 ImageView ImageView::DownCast( BaseHandle handle )
77 {
78   return Control::DownCast<ImageView, Internal::ImageView>( handle );
79 }
80
81 void ImageView::SetImage( const std::string& url )
82 {
83   Dali::Toolkit::GetImpl( *this ).SetImage( url, ImageDimensions() );
84 }
85
86 void ImageView::SetImage( const std::string& url, ImageDimensions size )
87 {
88   Dali::Toolkit::GetImpl( *this ).SetImage( url, size );
89 }
90
91 ImageView::ImageView( Internal::ImageView& implementation )
92  : Control( implementation )
93 {
94 }
95
96 ImageView::ImageView( Dali::Internal::CustomActor* internal )
97  : Control( internal )
98 {
99   VerifyCustomActorPointer<Internal::ImageView>( internal );
100 }
101
102 } // namespace Toolkit
103
104 } // namespace Dali