X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Frendering%2Fview-model.h;h=c127ebbad528adbb5411a22d07da9823b9f60139;hp=c7b0b183df3ebf97bc441db2bee9e80643ab8d88;hb=HEAD;hpb=a5167c61104580ae0ab724f904537a3a01ea3061 diff --git a/dali-toolkit/internal/text/rendering/view-model.h b/dali-toolkit/internal/text/rendering/view-model.h index c7b0b18..e85dbbc 100644 --- a/dali-toolkit/internal/text/rendering/view-model.h +++ b/dali-toolkit/internal/text/rendering/view-model.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_TEXT_VIEW_MODEL_H /* - * Copyright (c) 2022 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. @@ -104,7 +104,7 @@ public: /** * @copydoc ModelInterface::GetLines() */ - const LineRun* const GetLines() const override; + const LineRun* GetLines() const override; /** * @copydoc ModelInterface::GetNumberOfScripts() @@ -114,7 +114,12 @@ public: /** * @copydoc ModelInterface::GetScriptRuns() */ - const ScriptRun* const GetScriptRuns() const override; + const ScriptRun* GetScriptRuns() const override; + + /** + * @copydoc ModelInterface::GetNumberOfCharacters() + */ + Length GetNumberOfCharacters() const override; /** * @copydoc ModelInterface::GetNumberOfGlyphs() @@ -144,37 +149,37 @@ public: /** * @copydoc ModelInterface::GetGlyphs() */ - const GlyphInfo* const GetGlyphs() const override; + const GlyphInfo* GetGlyphs() const override; /** * @copydoc ModelInterface::GetLayout() */ - const Vector2* const GetLayout() const override; + const Vector2* GetLayout() const override; /** * @copydoc ModelInterface::GetColors() */ - const Vector4* const GetColors() const override; + const Vector4* GetColors() const override; /** * @copydoc ModelInterface::GetColorIndices() */ - const ColorIndex* const GetColorIndices() const override; + const ColorIndex* GetColorIndices() const override; /** * @copydoc ModelInterface::GetBackgroundColors() */ - const Vector4* const GetBackgroundColors() const override; + const Vector4* GetBackgroundColors() const override; /** * @copydoc ModelInterface::GetBackgroundColorIndices() */ - const ColorIndex* const GetBackgroundColorIndices() const override; + const ColorIndex* GetBackgroundColorIndices() const override; /** * @copydoc ModelInterface::IsMarkupBackgroundColorSet() */ - bool const IsMarkupBackgroundColorSet() const override; + bool IsMarkupBackgroundColorSet() const override; /** * @copydoc ModelInterface::GetDefaultColor() @@ -207,6 +212,11 @@ public: bool IsUnderlineEnabled() const override; /** + * @copydoc ModelInterface::IsMarkupUnderlineSet() + */ + bool IsMarkupUnderlineSet() const override; + + /** * @copydoc ModelInterface::GetUnderlineHeight() */ float GetUnderlineHeight() const override; @@ -237,6 +247,11 @@ public: void GetUnderlineRuns(UnderlinedGlyphRun* underlineRuns, UnderlineRunIndex index, Length numberOfRuns) const override; /** + * @copydoc ModelInterface::GetOutlineOffset() + */ + const Vector2& GetOutlineOffset() const override; + + /** * @copydoc ModelInterface::GetOutlineColor() */ const Vector4& GetOutlineColor() const override; @@ -262,6 +277,11 @@ public: bool IsMarkupProcessorEnabled() const override; /** + * @copydoc ModelInterface::IsSpannedTextPlaced() + */ + bool IsSpannedTextPlaced() const override; + + /** * @copydoc ModelInterface::GetHyphens() */ const GlyphInfo* GetHyphens() const override; @@ -279,7 +299,7 @@ public: /** * @copydoc ModelInterface::GetCharacterSpacing() */ - const float GetCharacterSpacing() const override; + float GetCharacterSpacing() const override; /** * @copydoc ModelInterface::GetTextBuffer() @@ -303,13 +323,27 @@ public: */ void ElideGlyphs(); + /** + * @copydoc ModelInterface::GetStrikethroughHeight() + */ float GetStrikethroughHeight() const override; + /** + * @copydoc ModelInterface::GetStrikethroughColor() + */ const Vector4& GetStrikethroughColor() const override; + /** + * @copydoc ModelInterface::IsStrikethroughEnabled() + */ bool IsStrikethroughEnabled() const override; /** + * @copydoc ModelInterface::IsMarkupStrikethroughSet() + */ + bool IsMarkupStrikethroughSet() const override; + + /** * @copydoc ModelInterface::GetNumberOfStrikethroughRuns() */ Length GetNumberOfStrikethroughRuns() const override; @@ -339,6 +373,16 @@ public: */ const Vector& GetCharacterSpacingGlyphRuns() const override; + /** + * @copydoc ModelInterface::GetFontRuns() + */ + const Vector& GetFontRuns() const override; + + /** + * @copydoc ModelInterface::GetFontDescriptionRuns() + */ + const Vector& GetFontDescriptionRuns() const override; + private: const ModelInterface* const mModel; ///< Pointer to the text's model. Vector mElidedGlyphs; ///< Stores the glyphs of the elided text.