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