cd84dd65b9ea4ffe8a5df4889bbeecd4cd7e5753
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / image-loader / async-image-loader.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 // 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 ) = default;
44
45 AsyncImageLoader::AsyncImageLoader( AsyncImageLoader&& rhs ) = default;
46
47 AsyncImageLoader& AsyncImageLoader::operator=( const AsyncImageLoader& handle ) =  default;
48
49 AsyncImageLoader& AsyncImageLoader::operator=( AsyncImageLoader&& rhs ) =  default;
50
51 AsyncImageLoader AsyncImageLoader::DownCast( BaseHandle handle )
52 {
53   return AsyncImageLoader( dynamic_cast<Dali::Toolkit::Internal::AsyncImageLoader*>( handle.GetObjectPtr() ) );
54 }
55
56 AsyncImageLoader AsyncImageLoader::New()
57 {
58   IntrusivePtr<Internal::AsyncImageLoader> internal = Internal::AsyncImageLoader::New();
59    return AsyncImageLoader( internal.Get() );
60 }
61
62 uint32_t AsyncImageLoader::Load( const std::string& url )
63 {
64   return GetImplementation( *this ).Load( Toolkit::Internal::VisualUrl(url), ImageDimensions(), FittingMode::DEFAULT, SamplingMode::BOX_THEN_LINEAR, true, DevelAsyncImageLoader::PreMultiplyOnLoad::OFF );
65 }
66
67 uint32_t AsyncImageLoader::Load( const std::string& url, ImageDimensions dimensions )
68 {
69   return GetImplementation( *this ).Load( Toolkit::Internal::VisualUrl(url), dimensions, FittingMode::DEFAULT, SamplingMode::BOX_THEN_LINEAR, true , DevelAsyncImageLoader::PreMultiplyOnLoad::OFF );
70 }
71
72 uint32_t AsyncImageLoader::Load( const std::string& url,
73                                  ImageDimensions dimensions,
74                                  FittingMode::Type fittingMode,
75                                  SamplingMode::Type samplingMode,
76                                  bool orientationCorrection )
77 {
78   return GetImplementation(*this).Load( Toolkit::Internal::VisualUrl(url), dimensions, fittingMode, samplingMode, orientationCorrection, DevelAsyncImageLoader::PreMultiplyOnLoad::OFF );
79 }
80
81 bool AsyncImageLoader::Cancel( uint32_t loadingTaskId )
82 {
83   return GetImplementation(*this).Cancel( loadingTaskId );
84 }
85
86 void AsyncImageLoader::CancelAll()
87 {
88   GetImplementation( *this ).CancelAll();
89 }
90
91 AsyncImageLoader::ImageLoadedSignalType& AsyncImageLoader::ImageLoadedSignal()
92 {
93   return GetImplementation( *this ).ImageLoadedSignal();
94 }
95 } // namespace Toolkit
96
97 } // namespace Dali