X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fvisual-factory%2Fvisual-base.h;h=f7ffb51d42f5a68359d6e6649046a360cf151fc8;hp=8b0f576158467788666ed6891dc1e91a55211b9e;hb=cb93c3930ba6271ae4b93a46fbb518833d580651;hpb=d0b03f52573948c53cdca89ec5e3be201737c3bb diff --git a/dali-toolkit/devel-api/visual-factory/visual-base.h b/dali-toolkit/devel-api/visual-factory/visual-base.h index 8b0f576..f7ffb51 100644 --- a/dali-toolkit/devel-api/visual-factory/visual-base.h +++ b/dali-toolkit/devel-api/visual-factory/visual-base.h @@ -142,7 +142,16 @@ public: * * @return The height based on the width. */ - float GetHeightForWidth( float width ) const; + float GetHeightForWidth( float width ); + + /** + * @brief Returns the width for a given height. + * + * @param[in] height Height to use. + * + * @return The width based on the height. + */ + float GetWidthForHeight( float height ); /** * @brief Return the natural size of the visual. @@ -181,23 +190,6 @@ public: */ void CreatePropertyMap( Dali::Property::Map& map ) const; - /** - * @brief Sets the value of an existing property. - * - * @param [in] index The index of the property. - * @param [in] propertyValue The new value of the property. - */ - void SetProperty( Dali::Property::Index index, const Dali::Property::Value& propertyValue ); - - /** - * @brief Retrieves a property value. - * - * @param [in] index The index of the property. - * - * @return The property value. - */ - Dali::Property::Value GetProperty( Dali::Property::Index index ); - public: // Not intended for application developers explicit DALI_INTERNAL Base(Internal::Visual::Base *impl);