1 #ifndef __DALI_PROPERTY_ARRAY_H__
2 #define __DALI_PROPERTY_ARRAY_H__
5 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
25 #include <dali/public-api/common/dali-common.h>
26 #include <dali/public-api/object/property-value.h>
27 #include <dali/public-api/object/property.h>
32 * @addtogroup dali_core_object
37 * @brief A Array of property values.
40 class DALI_IMPORT_API Property::Array
44 typedef std::size_t SizeType; ///< Size type @since_tizen 2.4
47 * @brief Default constructor.
53 * @brief Copy Constructor.
56 * @param[in] other The Array to copy from.
58 Array( const Array& other );
61 * @brief Non-virtual destructor.
67 * @brief Retrieve the number of elements in the array.
70 * @return The number of elements in the array.
78 * @brief Retrieve the number of elements in the array.
81 * @return The number of elements in the array.
83 SizeType Count() const;
86 * @brief Returns whether the array is empty.
89 * @return true if empty, false otherwise
97 * @brief Clears the array.
103 * @brief Increase the capcity of the array.
106 void Reserve( SizeType size );
109 * @brief Resize to size.
112 void Resize( SizeType size );
115 * @brief Retrieve the capacity of the array.
118 * @return The allocated capacity of the array
123 * @brief Add an element to the array.
126 * @param[in] value The value to add to the end of the array
128 void PushBack( const Value& value );
131 * @brief Const access an element.
134 * @param[in] index The element index to access. No bounds checking is performed.
136 * @return The a reference to the element.
138 const Value& GetElementAt( SizeType index ) const
140 return operator[]( index );
144 * @brief Access an element.
147 * @param[in] index The element index to access. No bounds checking is performed.
149 * @return The a reference to the element.
151 Value& GetElementAt( SizeType index )
153 return operator[]( index );
157 * @brief Const operator to access an element.
160 * @param[in] index The element index to access. No bounds checking is performed.
162 * @return The a reference to the element.
165 const Value& operator[]( SizeType index ) const;
168 * @brief Operator to access an element.
171 * @param[in] index The element index to access. No bounds checking is performed.
173 * @return The a reference to the element.
176 Value& operator[]( SizeType index );
179 * @brief Assignment Operator
182 * @param[in] other The array to copy from.
184 * @return The copied array.
186 Array& operator=( const Array& other );
189 struct DALI_INTERNAL Impl; ///< Private data
190 Impl* mImpl; ///< Pointer to private data
198 #endif // __DALI_PROPERTY_ARRAY_H__