Revert "[Tizen] Add DALi Autofill implementation"
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / image-loader-input.h
1 #ifndef DALI_TIZEN_PLATFORM_IMAGE_LOADER_INPUT_H
2 #define DALI_TIZEN_PLATFORM_IMAGE_LOADER_INPUT_H
3
4 /*
5  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 // EXTERNAL INCLUDES
21 #include <cstdio>
22 #include <dali/public-api/images/image-operations.h>
23 #include <dali/devel-api/adaptor-framework/pixel-buffer.h>
24 #include <dali/integration-api/bitmap.h>
25
26 // INTERNAL INCLUDES
27
28 namespace Dali
29 {
30 namespace ImageLoader
31 {
32
33 /**
34  * @brief A simple immutable struct to bundle together parameters for scaling an image.
35  */
36 class ScalingParameters
37 {
38 public:
39   ScalingParameters( ImageDimensions dimensions = ImageDimensions(), FittingMode::Type fittingMode = FittingMode::DEFAULT, SamplingMode::Type samplingMode = SamplingMode::DEFAULT ) :
40     dimensions(dimensions), scalingMode(fittingMode), samplingMode(samplingMode) {}
41   const ImageDimensions dimensions;
42   const FittingMode::Type scalingMode;
43   const SamplingMode::Type samplingMode;
44 };
45
46   /**
47    * @brief Bundle-up the data pushed into an image loader.
48    */
49 struct Input
50 {
51   Input( FILE* file, ScalingParameters scalingParameters = ScalingParameters(), bool reorientationRequested = true ) :
52     file(file), scalingParameters(scalingParameters), reorientationRequested(reorientationRequested) {}
53   FILE* file;
54   ScalingParameters scalingParameters;
55   bool reorientationRequested;
56 };
57
58
59 using LoadBitmapFunction = bool( * )( const Dali::ImageLoader::Input& input, Dali::Devel::PixelBuffer& pixelData );
60 using LoadBitmapHeaderFunction = bool( * )( const Dali::ImageLoader::Input& input, unsigned int& width, unsigned int& height );
61
62 /**
63  * Stores the magic bytes, and the loader and header functions used for each image loader.
64  */
65 struct BitmapLoader
66 {
67   unsigned char magicByte1;        ///< The first byte in the file should be this
68   unsigned char magicByte2;        ///< The second byte in the file should be this
69   LoadBitmapFunction loader;       ///< The function which decodes the file
70   LoadBitmapHeaderFunction header; ///< The function which decodes the header of the file
71   Dali::Integration::Bitmap::Profile profile;         ///< The kind of bitmap to be created
72                                    ///  (addressable packed pixels or an opaque compressed blob).
73 };
74
75 } // ImageLoader
76 } // Dali
77
78 #endif // DALI_TIZEN_PLATFORM_IMAGE_LOADER_INPUT_H