X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=dali-toolkit%2Finternal%2Fvisuals%2Fvisual-factory-impl.h;h=a3bc7ccbe242a6731e80fc52bcb6d9849c2465ad;hb=8aa5ae787e14584ef1d338d1b3be9b2ee0b6097b;hp=670567bb2f46d43c243ae619f78655b57ae4c82c;hpb=d486a4972fc67ba4aa9209926f457532bf39b4d5;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/visuals/visual-factory-impl.h b/dali-toolkit/internal/visuals/visual-factory-impl.h index 670567b..a3bc7cc 100644 --- a/dali-toolkit/internal/visuals/visual-factory-impl.h +++ b/dali-toolkit/internal/visuals/visual-factory-impl.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_VISUAL_FACTORY_IMPL_H /* - * Copyright (c) 2021 Samsung Electronics Co., Ltd. + * Copyright (c) 2023 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. @@ -19,9 +19,9 @@ // EXTERNAL INCLUDES #include +#include // INTERNAL INCLUDES -#include #include #include #include @@ -35,6 +35,7 @@ namespace Internal { class VisualFactoryCache; class ImageVisualShaderFactory; +class TextVisualShaderFactory; /** * @copydoc Toolkit::VisualFactory @@ -58,6 +59,13 @@ public: void OnStyleChangedSignal(Toolkit::StyleManager styleManager, StyleChange::Type type); /** + * @brief BrokenImageChanged callback + * + * @param[in] styleManager Handle for style manager. + */ + void OnBrokenImageChangedSignal(Toolkit::StyleManager styleManager); + + /** * @copydoc Toolkit::VisualFactory::CreateVisual( const Property::Map& ) */ Toolkit::Visual::Base CreateVisual(const Property::Map& propertyMap); @@ -78,6 +86,11 @@ public: bool GetPreMultiplyOnLoad() const; /** + * @copydoc Toolkit::VisualFactory::UsePreCompiledShader() + */ + void UsePreCompiledShader(); + + /** * @return the reference to texture manager */ Internal::TextureManager& GetTextureManager(); @@ -91,7 +104,7 @@ protected: private: /** * @brief Set the Broken Image url - * + * @param[in] styleManager The instance of StyleManager */ void SetBrokenImageUrl(Toolkit::StyleManager& styleManager); @@ -105,6 +118,11 @@ private: */ ImageVisualShaderFactory& GetImageVisualShaderFactory(); + /** + * Get the text visual shader factory, creating it if necessary. + */ + TextVisualShaderFactory& GetTextVisualShaderFactory(); + VisualFactory(const VisualFactory&) = delete; VisualFactory& operator=(const VisualFactory& rhs) = delete; @@ -112,9 +130,11 @@ private: private: std::unique_ptr mFactoryCache; std::unique_ptr mImageVisualShaderFactory; + std::unique_ptr mTextVisualShaderFactory; SlotDelegate mSlotDelegate; bool mDebugEnabled : 1; bool mPreMultiplyOnLoad : 1; ///< Local store for this flag + bool mPrecompiledShaderRequested{false}; }; /**