a1d21e7cdfc718e38795edc1129ef7588a2adfb5
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / image-loader / async-image-loader.cpp
1 /*
2  * Copyright (c) 2016 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 // CLASS HEADER
18 #include "async-image-loader.h"
19
20 // INTERNAL INCLUDES
21 #include <dali-toolkit/internal/image-loader/async-image-loader-impl.h>
22 #include <dali-toolkit/internal/visuals/visual-url.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 AsyncImageLoader::AsyncImageLoader()
31 {
32 }
33
34 AsyncImageLoader::~AsyncImageLoader()
35 {
36 }
37
38 AsyncImageLoader::AsyncImageLoader( Internal::AsyncImageLoader* impl )
39 : BaseHandle( impl )
40 {
41 }
42
43 AsyncImageLoader::AsyncImageLoader( const AsyncImageLoader& handle )
44 : BaseHandle( handle )
45 {
46 }
47
48 AsyncImageLoader& AsyncImageLoader::operator=( const AsyncImageLoader& handle )
49 {
50   BaseHandle::operator=( handle );
51   return *this;
52 }
53
54 AsyncImageLoader AsyncImageLoader::DownCast( BaseHandle handle )
55 {
56   return AsyncImageLoader( dynamic_cast<Dali::Toolkit::Internal::AsyncImageLoader*>( handle.GetObjectPtr() ) );
57 }
58
59 AsyncImageLoader AsyncImageLoader::New()
60 {
61   IntrusivePtr<Internal::AsyncImageLoader> internal = Internal::AsyncImageLoader::New();
62    return AsyncImageLoader( internal.Get() );
63 }
64
65 uint32_t AsyncImageLoader::Load( const std::string& url )
66 {
67   return GetImplementation( *this ).Load( Toolkit::Internal::VisualUrl(url), ImageDimensions(), FittingMode::DEFAULT, SamplingMode::BOX_THEN_LINEAR, true, DevelAsyncImageLoader::PreMultiplyOnLoad::OFF );
68 }
69
70 uint32_t AsyncImageLoader::Load( const std::string& url, ImageDimensions dimensions )
71 {
72   return GetImplementation( *this ).Load( Toolkit::Internal::VisualUrl(url), dimensions, FittingMode::DEFAULT, SamplingMode::BOX_THEN_LINEAR, true , DevelAsyncImageLoader::PreMultiplyOnLoad::OFF );
73 }
74
75 uint32_t AsyncImageLoader::Load( const std::string& url,
76                                  ImageDimensions dimensions,
77                                  FittingMode::Type fittingMode,
78                                  SamplingMode::Type samplingMode,
79                                  bool orientationCorrection )
80 {
81   return GetImplementation(*this).Load( Toolkit::Internal::VisualUrl(url), dimensions, fittingMode, samplingMode, orientationCorrection, DevelAsyncImageLoader::PreMultiplyOnLoad::OFF );
82 }
83
84 bool AsyncImageLoader::Cancel( uint32_t loadingTaskId )
85 {
86   return GetImplementation(*this).Cancel( loadingTaskId );
87 }
88
89 void AsyncImageLoader::CancelAll()
90 {
91   GetImplementation( *this ).CancelAll();
92 }
93
94 AsyncImageLoader::ImageLoadedSignalType& AsyncImageLoader::ImageLoadedSignal()
95 {
96   return GetImplementation( *this ).ImageLoadedSignal();
97 }
98 } // namespace Toolkit
99
100 } // namespace Dali