Apply deprecate macro and LOG
[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 #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( Image image )
63 {
64   DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: New() is deprecated and will be removed from next release. use New( const std::string& ) instead.\n" );
65
66   ImageView imageView = Internal::ImageView::New();
67   imageView.SetImage( image );
68   return imageView;
69 }
70
71 ImageView ImageView::New( const std::string& url )
72 {
73   ImageView imageView = Internal::ImageView::New();
74   imageView.SetImage( url, ImageDimensions() );
75   return imageView;
76 }
77
78 ImageView ImageView::New( const std::string& url, ImageDimensions size )
79 {
80   ImageView imageView = Internal::ImageView::New();
81   imageView.SetImage( url, size );
82   return imageView;
83 }
84
85 ImageView ImageView::DownCast( BaseHandle handle )
86 {
87   return Control::DownCast<ImageView, Internal::ImageView>( handle );
88 }
89
90 void ImageView::SetImage( Image image )
91 {
92   DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: SetImage() is deprecated and will be removed from next release. Use SetImage( const std::string& ) instead.\n" );
93
94   Dali::Toolkit::GetImpl( *this ).SetImage( image );
95 }
96
97 void ImageView::SetImage( const std::string& url )
98 {
99   Dali::Toolkit::GetImpl( *this ).SetImage( url, ImageDimensions() );
100 }
101
102 void ImageView::SetImage( const std::string& url, ImageDimensions size )
103 {
104   Dali::Toolkit::GetImpl( *this ).SetImage( url, size );
105 }
106
107 Image ImageView::GetImage() const
108 {
109   DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: GetImage() is deprecated and will be removed from next release.\n" );
110
111   return Dali::Toolkit::GetImpl( *this ).GetImage();
112 }
113
114 ImageView::ImageView( Internal::ImageView& implementation )
115  : Control( implementation )
116 {
117 }
118
119 ImageView::ImageView( Dali::Internal::CustomActor* internal )
120  : Control( internal )
121 {
122   VerifyCustomActorPointer<Internal::ImageView>( internal );
123 }
124
125 } // namespace Toolkit
126
127 } // namespace Dali