6f7af803d6534502c067b52c3c09b2552c5a3c32
[platform/core/uifw/dali-core.git] / dali / public-api / images / nine-patch-image.h
1 #ifndef __DALI_NINE_PATCH_IMAGE_H__
2 #define __DALI_NINE_PATCH_IMAGE_H__
3
4 /*
5  * Copyright (c) 2015 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 // INTERNAL INCLUDES
22 #include <dali/public-api/images/resource-image.h>
23 #include <dali/public-api/images/buffer-image.h>
24 #include <dali/public-api/math/rect.h>
25
26 namespace Dali
27 {
28 /**
29  * @addtogroup dali_core_images
30  * @{
31  */
32
33 namespace Internal DALI_INTERNAL
34 {
35 class NinePatchImage;
36 }
37
38 /**
39  * @brief NinePatchImage represents an nine-patch image resource.
40  *
41  * It contains a bitmap that is synchronously loaded from the file system that contains
42  * a 9 patch border - a 1 pixel border that describes the stretch borders and the child
43  * area.
44  *
45  * The class offers an API to read the stretch area and child area, but it does not
46  * remove the border from it's bitmap. An API can be used to obtain a BufferImage with
47  * the border removed.
48  *
49  * Adding this image to an ImageActor using an Image handle will automatically convert
50  * to use the cropped BufferImage - if you don't retain a handle to this object, it will
51  * be automatically destroyed.
52  * @SINCE_1_0.0
53  */
54 class DALI_IMPORT_API NinePatchImage : public ResourceImage
55 {
56 public:
57   typedef Vector< Uint16Pair > StretchRanges;
58
59 public:
60   /**
61    * @brief Constructor which creates an uninitialized NinePatchImage object.
62    *
63    * Use @ref NinePatchImage::New to create an initialised object.
64    * @SINCE_1_0.0
65    */
66   NinePatchImage();
67
68   /**
69    * @brief Create a new NinePatchImage.
70    *
71    * A pixel buffer for image data is allocated and loaded from the filesystem.
72    * Dali has ownership of the buffer.
73    * @SINCE_1_0.0
74    * @param [in] filename File to load synchronously into buffer
75    * @return A handle to a new instance of NinePatchImage
76    */
77   static NinePatchImage New( const std::string& filename );
78
79   /**
80    * @brief Downcast a handle to NinePatchImage handle.
81    *
82    * If handle points to a NinePatchImage the downcast produces valid
83    * handle. If not the returned handle is left uninitialized.
84    *
85    * @SINCE_1_0.0
86    * @param[in] handle Handle to an object
87    * @return Handle to a NinePatchImage or an uninitialized handle
88    */
89   static NinePatchImage DownCast( BaseHandle handle );
90
91   /**
92    * @brief Destructor
93    *
94    * This is non-virtual since derived Handle types must not contain data or virtual methods.
95    * @SINCE_1_0.0
96    */
97   ~NinePatchImage();
98
99   /**
100    * @brief This copy constructor is required for (smart) pointer semantics.
101    *
102    * @SINCE_1_0.0
103    * @param [in] handle A reference to the copied handle
104    */
105   NinePatchImage(const NinePatchImage& handle);
106
107   /**
108    * @brief This assignment operator is required for (smart) pointer semantics.
109    *
110    * @SINCE_1_0.0
111    * @param [in] rhs  A reference to the copied handle
112    * @return A reference to this
113    */
114   NinePatchImage& operator=(const NinePatchImage& rhs);
115
116   /**
117    * @DEPRECATED_1_1.4. Use GetStretchPixelsX and GetStretchPixelsY instead.
118    *
119    * @brief Get the stretch borders
120    *
121    * @SINCE_1_0.0
122    * @return The border in pixels from the left, top, right, and bottom of the image respectively.
123    */
124   Vector4 GetStretchBorders();
125
126   /**
127    * @brief Retrieves the horizontal stretch pixel ranges in the cropped image space
128    *
129    * @SINCE_1_1.4
130    * @return the horizontal stretch pixel ranges in the cropped image space
131    */
132   const StretchRanges& GetStretchPixelsX();
133
134   /**
135    * @brief Retrieves the vertical stretch pixel ranges in the cropped image space
136    *
137    * @SINCE_1_1.4
138    * @return the vertical stretch pixel ranges in the cropped image space
139    */
140   const StretchRanges& GetStretchPixelsY();
141
142   /**
143    * @brief Get the child rectangle
144    *
145    * @SINCE_1_0.0
146    * @return The position and size of the child rectangle
147    */
148   Rect<int> GetChildRectangle();
149
150   /**
151    * @brief Creates a buffer image from the bitmap with the 1 pixel border cropped off.
152    *
153    * This does not change the internal bitmap.
154    *
155    * @SINCE_1_0.0
156    * @return The cropped BufferImage
157    */
158   BufferImage CreateCroppedBufferImage();
159
160   /**
161    * @brief Helper method to determine if the filename indicates that the image has a 9 patch or n patch border.
162    *
163    * @SINCE_1_1.4
164    * @param [in] url The URL of the image file.
165    * @return true if it is a 9 patch or n patch image
166    */
167   static bool IsNinePatchUrl( const std::string& url );
168
169 public: // Not intended for application developers
170
171   explicit DALI_INTERNAL NinePatchImage(Internal::NinePatchImage*);
172 };
173
174 /**
175  * @}
176  */
177 } // namespace Dali
178
179 #endif // __DALI_NINE_PATCH_IMAGE_H__