Merge "Added FileReader and FileWriter classes to wrap FileCloser" into devel/master
[platform/core/uifw/dali-adaptor.git] / adaptors / common / indicator-buffer.h
1 #ifndef __DALI_INTERNAL_INDICATOR_BUFFER_H__
2 #define __DALI_INTERNAL_INDICATOR_BUFFER_H__
3
4 /*
5  * Copyright (c) 2014 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
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/ref-object.h>
23
24 // INTERNAL INCLUDES
25 #include <native-bitmap-buffer-impl.h>
26 #include <adaptor-impl.h>
27
28 namespace Dali
29 {
30
31 namespace Internal
32 {
33 namespace Adaptor
34 {
35
36 class NativeBitmapBuffer;
37 class IndicatorBuffer;
38
39 typedef IntrusivePtr<IndicatorBuffer> IndicatorBufferPtr;
40
41 /**
42  * The IndicatorBuffer class uses the best available implementation for rendering indicator data.
43  * On platforms where EglImage is available it uses either SharedGlBuffer or NativeImageSource, on older
44  * platforms it falls back to using a bitmap buffer based solution.
45  */
46 class IndicatorBuffer : public RefObject
47 {
48 public:
49
50   /**
51    * Constructor
52    */
53   IndicatorBuffer( Adaptor* adaptor, unsigned int width, unsigned int height, Pixel::Format pixelFormat );
54
55   /**
56    * Copy bitmap data to pixel buffer.
57    * @param src  bitmap data source
58    * @param size size of bitmap data
59    * @return true if successful, false otherwise
60    */
61   bool UpdatePixels( const unsigned char *src, size_t size );
62
63   /**
64    * Returns the NativeImage used internally
65    * @return the NativeImage used internally
66    */
67   NativeImageInterface& GetNativeImage() const;
68
69   /**
70    * Set currently used Adaptor
71    * @param adaptor
72    */
73   void SetAdaptor( Adaptor* adaptor );
74
75 private:
76   NativeImageInterfacePtr mNativeImage; ///< Image buffer created for shared file copy
77
78   NativeBitmapBufferPtr mBitmapBuffer;    ///< Image buffer created for shared file copy if extension not available
79
80   Adaptor*      mAdaptor;
81
82   int           mImageWidth;
83   int           mImageHeight;
84   Pixel::Format mPixelFormat;
85 };
86
87 } // Adaptor
88 } // Internal
89 } // Dali
90
91 #endif // __DALI_INTERNAL_INDICATOR_H__