X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fvisual-factory-impl.h;h=484a688ca3f66d18c7bd36411e85833b34613ae2;hp=d0c2308b107be4803d4edc47eb0a8141e2eb2cf7;hb=e6757fc2f8c05d6da32f329a874b0ae129abf3d4;hpb=99e2ea03e6d6059f5803d700932df1ff1c848cd3 diff --git a/dali-toolkit/internal/visuals/visual-factory-impl.h b/dali-toolkit/internal/visuals/visual-factory-impl.h index d0c2308..484a688 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) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 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. @@ -36,9 +36,6 @@ namespace Internal class VisualFactoryCache; typedef IntrusivePtr VisualFactoryCachePtr; -class ImageAtlasManager; -typedef IntrusivePtr ImageAtlasManagerPtr; - /** * @copydoc Toolkit::VisualFactory */ @@ -46,19 +43,6 @@ class VisualFactory : public BaseObject { public: - enum RendererType - { - COLOR, - BORDER, - GRADIENT, - IMAGE, - N_PATCH, - SVG, - MESH, - PRIMITIVE, - UNDEFINED - }; - /** * @brief Constructor * @@ -81,11 +65,6 @@ public: */ Toolkit::Visual::Base CreateVisual( const std::string& image, ImageDimensions size ); -public: - /** - * @brief Returns an image to be used when a renderer has failed to correctly render - */ - static Image GetBrokenRendererImage(); protected: @@ -97,19 +76,6 @@ protected: private: /** - * Get the visual type from the property map. - * - * @param[in] propertyMap The map contains the properties of the visual - * @return The rendererType - */ - RendererType GetRendererType( const Property::Map& propertyMap ); - - /** - * Prepare the atlas manager - */ - void CreateAtlasManager(); - - /** * Undefined copy constructor. */ VisualFactory(const VisualFactory&); @@ -122,7 +88,6 @@ private: private: VisualFactoryCachePtr mFactoryCache; - ImageAtlasManagerPtr mAtlasManager; bool mDebugEnabled; };