X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Frenderers%2Fcontrol-renderer-impl.h;h=883d4d6b2a638df3ac3509df7ce7de3225423aa8;hp=10a13dc7e76fe79b23e65280eacd7501888fbb97;hb=f3da11c2818c6d17706fbb2417f21b602b3190f5;hpb=21b42a30e8a6e94e5e523ebdaec055a91a38f046 diff --git a/dali-toolkit/internal/controls/renderers/control-renderer-impl.h b/dali-toolkit/internal/controls/renderers/control-renderer-impl.h index 10a13dc..883d4d6 100644 --- a/dali-toolkit/internal/controls/renderers/control-renderer-impl.h +++ b/dali-toolkit/internal/controls/renderers/control-renderer-impl.h @@ -45,18 +45,18 @@ namespace Internal * * The following properties are optional * - * | %Property Name | Type | - * |---------------------------|------------------| - * | custom-shader | MAP | + * | %Property Name | Type | + * |-------------------------|------------------| + * | customShader | MAP | * * where custom-shader is a map with the following properties: - * | %Property Name | Type | - * |---------------------------|------------------| - * | vertex-shader | STRING | - * | fragment-shader | STRING | - * | subdivide-grid-x | INT | - * | subdivide-grid-y | INT | - * | shader-hints | INT | + * | %Property Name | Type | + * |-------------------------|------------------| + * | vertexShader | STRING | + * | fragmentShader | STRING | + * | subdivideGridX | INT | + * | subdivideGridY | INT | + * | shaderHints | INT | */ class ControlRenderer : public BaseObject { @@ -67,9 +67,10 @@ public: * request the geometry and shader from the cache, if not available, create and save to the cache for sharing; * record the property values. * + * @param[in] actor The Actor the renderer is applied to if, empty if the renderer has not been applied to any Actor * @param[in] propertyMap The properties for the requested ControlRenderer object. */ - void Initialize( const Property::Map& propertyMap ); + void Initialize( Actor& actor, const Property::Map& propertyMap ); /** * @copydoc Toolkit::ControlRenderer::SetSize @@ -156,17 +157,10 @@ protected: /** * @brief Called by Initialize() allowing sub classes to respond to the Initialize event * - * @param[in] factoryCache A pointer pointing to the RendererFactoryCache object + * @param[in] actor The Actor the renderer is applied to if, empty if the renderer has not been applied to any Actor * @param[in] propertyMap The properties for the requested ControlRenderer object. */ - virtual void DoInitialize( const Property::Map& propertyMap ) = 0; - - /** - * @brief Initialises a renderer ready to be put on stage. - * - * @param[inout] renderer The Renderer to initialise. If the renderer is not empty then re-initialise the renderer - */ - virtual void InitializeRenderer( Renderer& renderer ) = 0; + virtual void DoInitialize( Actor& actor, const Property::Map& propertyMap ) = 0; protected: @@ -185,13 +179,19 @@ protected: virtual void DoSetOffStage( Actor& actor ); protected: + /** + * @brief Gets the on stage state for this ControlRenderer + * + * @return Returns true if this ControlRenderer is on stage, false if it is off the stage + */ + bool GetIsOnStage() const; /** - * @brief Sets the key to use for caching the renderer. If this is empty then no caching will occur + * @brief Gets whether the Dali::Renderer is from a shared cache (and therefore any modifications will affect other users of that renderer) * - * @param[in] cachedRendererKey The key to use for caching the renderer. + * @return Returns true if the renderer is from shared cache, false otherwise */ - void SetCachedRendererKey( const std::string& cachedRendererKey ); + bool GetIsFromCache() const; private: