X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Fmulti-language-support-impl.h;h=cc6c985721d404f5c5c6712c2498d323209ebd12;hb=b694e7e2ae624e206e1548b1a863c554eb9cd4d7;hp=ff5e94d9d0b9cf85195036fddd6c26e4424fb0cf;hpb=3e30971f9884dc48e80ef82de4ef85fc9dba1229;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/multi-language-support-impl.h b/dali-toolkit/internal/text/multi-language-support-impl.h index ff5e94d..cc6c985 100644 --- a/dali-toolkit/internal/text/multi-language-support-impl.h +++ b/dali-toolkit/internal/text/multi-language-support-impl.h @@ -1,8 +1,8 @@ -#ifndef __DALI_TOOLKIT_TEXT_MULTI_LANGUAGE_SUPPORT_IMPL_H__ -#define __DALI_TOOLKIT_TEXT_MULTI_LANGUAGE_SUPPORT_IMPL_H__ +#ifndef DALI_TOOLKIT_TEXT_MULTI_LANGUAGE_SUPPORT_IMPL_H +#define DALI_TOOLKIT_TEXT_MULTI_LANGUAGE_SUPPORT_IMPL_H /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2019 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. @@ -77,6 +77,12 @@ struct ValidateFontsPerScript */ struct DefaultFonts { + struct CacheItem + { + TextAbstraction::FontDescription description; + FontId fontId; + }; + /** * Default constructor. */ @@ -94,13 +100,18 @@ struct DefaultFonts * @brief Finds a default font for the given @p size. * * @param[in] fontClient The font client. + * @param[in] description The font's description. * @param[in] size The given size. * * @return The font id of a default font for the given @p size. If there isn't any font cached it returns 0. */ - FontId FindFont( TextAbstraction::FontClient& fontClient, PointSize26Dot6 size ) const; + FontId FindFont( TextAbstraction::FontClient& fontClient, + const TextAbstraction::FontDescription& description, + PointSize26Dot6 size ) const; + + void Cache( const TextAbstraction::FontDescription& description, FontId fontId ); - Vector mFonts; + std::vector mFonts; }; /** @@ -141,7 +152,8 @@ public: void ValidateFonts( const Vector& text, const Vector& scripts, const Vector& fontDescriptions, - FontId defaultFontId, + const TextAbstraction::FontDescription& defaultFontDescription, + TextAbstraction::PointSize26Dot6 defaultFontPointSize, CharacterIndex startIndex, Length numberOfCharacters, Vector& fonts ); @@ -173,4 +185,4 @@ inline static const Internal::MultilanguageSupport& GetImplementation( const Mul } // namespace Dali -#endif // __DALI_TOOLKIT_TEXT_MULTI_LANGUAGE_SUPPORT_IMPL_H__ +#endif // DALI_TOOLKIT_TEXT_MULTI_LANGUAGE_SUPPORT_IMPL_H