X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fimage-view%2Fimage-view-impl.h;h=19d75ac35ef3c48166d472e1befb9c67fc4ed193;hp=3af21ce921432ccd0d18200dcb835375c59d638c;hb=0a374bcfcf4fb906d2c8256cfee595e6193f4dbf;hpb=172678a60aceeb2a60e5d4e5a3c613f8f3c492a9 diff --git a/dali-toolkit/internal/controls/image-view/image-view-impl.h b/dali-toolkit/internal/controls/image-view/image-view-impl.h index 3af21ce..19d75ac 100644 --- a/dali-toolkit/internal/controls/image-view/image-view-impl.h +++ b/dali-toolkit/internal/controls/image-view/image-view-impl.h @@ -38,7 +38,7 @@ namespace Internal { class ImageView : public Control { - protected: +protected: /** * Construct a new ImageView. @@ -50,8 +50,6 @@ class ImageView : public Control */ virtual ~ImageView(); - - public: /** * Create a new ImageView. @@ -75,7 +73,7 @@ public: /** * @copydoc Dali::Toolkit::SetImage */ - void SetImage( const std::string& imageUrl ); + void SetImage( const std::string& imageUrl, ImageDimensions size ); // Properties /** @@ -94,6 +92,15 @@ public: */ static Property::Value GetProperty( BaseObject* object, Property::Index propertyIndex ); + /** + * @brief Set the depth index of this image renderer + * + * Renderer with higher depth indices are rendered in front of other renderers with smaller values + * + * @param[in] depthIndex The depth index of this renderer + */ + void SetDepthIndex( int depthIndex ); + private: // From Control /** @@ -102,6 +109,11 @@ private: // From Control virtual void OnStageConnection( int depth ); /** + * @copydoc Toolkit::Control::OnStageDisconnection() + */ + virtual void OnStageDisconnection(); + + /** * @copydoc Toolkit::Control::GetNaturalSize */ virtual Vector3 GetNaturalSize(); @@ -117,14 +129,6 @@ private: // From Control virtual float GetWidthForHeight( float height ); private: - /** - * Attaches mImage member to the renderer, creating the renderers, samplers, meshes and materials if needed - * - * @pre mImage has been initialised - */ - void AttachImage(); - -private: // Undefined ImageView( const ImageView& ); ImageView& operator=( const ImageView& );