X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fpublic-api%2Fobject%2Fproperty-array.h;h=331d1e934499918f4646ab2a6666e80ec441f46f;hb=4d75040ab200bd306ec5a48f2a617480062eef4c;hp=5fd3f865c47d33b695905960a983a299630e550e;hpb=d894f394cfdeea4e482b0666fe25d6039dca6bcb;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/public-api/object/property-array.h b/dali/public-api/object/property-array.h old mode 100644 new mode 100755 index 5fd3f86..331d1e9 --- a/dali/public-api/object/property-array.h +++ b/dali/public-api/object/property-array.h @@ -2,7 +2,7 @@ #define __DALI_PROPERTY_ARRAY_H__ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2018 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -37,7 +37,7 @@ namespace Dali * @brief A Array of property values. * @SINCE_1_0.0 */ -class DALI_IMPORT_API Property::Array +class DALI_CORE_API Property::Array { public: @@ -53,7 +53,7 @@ public: * @brief Copy Constructor. * * @SINCE_1_0.0 - * @param[in] other The Array to copy from. + * @param[in] other The Array to copy from */ Array( const Array& other ); @@ -64,10 +64,10 @@ public: ~Array(); /** - * @brief Retrieve the number of elements in the array. + * @brief Retrieves the number of elements in the array. * * @SINCE_1_0.0 - * @return The number of elements in the array. + * @return The number of elements in the array */ SizeType Size() const { @@ -75,10 +75,10 @@ public: } /** - * @brief Retrieve the number of elements in the array. + * @brief Retrieves the number of elements in the array. * * @SINCE_1_0.0 - * @return The number of elements in the array. + * @return The number of elements in the array */ SizeType Count() const; @@ -86,7 +86,7 @@ public: * @brief Returns whether the array is empty. * * @SINCE_1_0.0 - * @return true if empty, false otherwise + * @return @c true if empty, @c false otherwise */ bool Empty() const { @@ -100,19 +100,21 @@ public: void Clear(); /** - * @brief Increase the capcity of the array. + * @brief Increases the capacity of the array. * @SINCE_1_0.0 + * @param[in] size The size to reserve */ void Reserve( SizeType size ); /** - * @brief Resize to size. + * @brief Resizes to size. * @SINCE_1_0.0 + * @param[in] size The size to resize */ void Resize( SizeType size ); /** - * @brief Retrieve the capacity of the array. + * @brief Retrieves the capacity of the array. * * @SINCE_1_0.0 * @return The allocated capacity of the array @@ -120,7 +122,7 @@ public: SizeType Capacity(); /** - * @brief Add an element to the array. + * @brief Adds an element to the array. * * @SINCE_1_0.0 * @param[in] value The value to add to the end of the array @@ -128,12 +130,24 @@ public: void PushBack( const Value& value ); /** + * @brief Add an element to the array. + * + * @SINCE_1_2.11 + * @param[in] value The value to add to the end of the array + * @return A reference to this object + */ + inline Property::Array& Add( const Value& value ) + { + PushBack( value ); + return *this; + } + + /** * @brief Const access an element. * * @SINCE_1_0.0 - * @param[in] index The element index to access. No bounds checking is performed. - * - * @return The a reference to the element. + * @param[in] index The element index to access. No bounds checking is performed + * @return The a reference to the element */ const Value& GetElementAt( SizeType index ) const { @@ -141,12 +155,11 @@ public: } /** - * @brief Access an element. + * @brief Accesses an element. * * @SINCE_1_0.0 - * @param[in] index The element index to access. No bounds checking is performed. - * - * @return The a reference to the element. + * @param[in] index The element index to access. No bounds checking is performed + * @return The a reference to the element */ Value& GetElementAt( SizeType index ) { @@ -157,9 +170,8 @@ public: * @brief Const operator to access an element. * * @SINCE_1_0.0 - * @param[in] index The element index to access. No bounds checking is performed. - * - * @return The a reference to the element. + * @param[in] index The element index to access. No bounds checking is performed + * @return The a reference to the element * */ const Value& operator[]( SizeType index ) const; @@ -168,29 +180,44 @@ public: * @brief Operator to access an element. * * @SINCE_1_0.0 - * @param[in] index The element index to access. No bounds checking is performed. - * - * @return The a reference to the element. + * @param[in] index The element index to access. No bounds checking is performed + * @return The a reference to the element * */ Value& operator[]( SizeType index ); /** - * @brief Assignment Operator + * @brief Assignment Operator. * * @SINCE_1_0.0 - * @param[in] other The array to copy from. + * @param[in] other The array to copy from * * @return The copied array. */ Array& operator=( const Array& other ); + /** + * @brief Output to stream. + * @SINCE_1_1.28 + */ + friend DALI_CORE_API std::ostream& operator<<( std::ostream& stream, const Property::Array& array ); + private: struct DALI_INTERNAL Impl; ///< Private data Impl* mImpl; ///< Pointer to private data }; /** + * @brief Converts the values of the property array into a string and append to an output stream. + * + * @SINCE_1_1.28 + * @param[in] stream The output stream operator + * @param[in] array The array to insert + * @return The output stream operator + */ +DALI_CORE_API std::ostream& operator<<( std::ostream& stream, const Property::Array& array ); + +/** * @} */ } // namespace Dali