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=c3ee530f20d1f9a46d40a42149c7e71a9dcb4254;hb=HEAD;hpb=960870f0f39490cf3679ab54b3f32c258bb4ab03 diff --git a/dali-toolkit/internal/text/rendering/view-model.h b/dali-toolkit/internal/text/rendering/view-model.h index c3ee530..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. @@ -23,6 +23,7 @@ // INTERNAL INCLUDES #include +#include #include #include @@ -103,7 +104,7 @@ public: /** * @copydoc ModelInterface::GetLines() */ - const LineRun* const GetLines() const override; + const LineRun* GetLines() const override; /** * @copydoc ModelInterface::GetNumberOfScripts() @@ -113,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() @@ -143,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() @@ -206,6 +212,11 @@ public: bool IsUnderlineEnabled() const override; /** + * @copydoc ModelInterface::IsMarkupUnderlineSet() + */ + bool IsMarkupUnderlineSet() const override; + + /** * @copydoc ModelInterface::GetUnderlineHeight() */ float GetUnderlineHeight() const override; @@ -233,7 +244,12 @@ public: /** * @copydoc ModelInterface::GetUnderlineRuns() */ - void GetUnderlineRuns(GlyphRun* underlineRuns, UnderlineRunIndex index, Length numberOfRuns) const override; + void GetUnderlineRuns(UnderlinedGlyphRun* underlineRuns, UnderlineRunIndex index, Length numberOfRuns) const override; + + /** + * @copydoc ModelInterface::GetOutlineOffset() + */ + const Vector2& GetOutlineOffset() const override; /** * @copydoc ModelInterface::GetOutlineColor() @@ -261,6 +277,11 @@ public: bool IsMarkupProcessorEnabled() const override; /** + * @copydoc ModelInterface::IsSpannedTextPlaced() + */ + bool IsSpannedTextPlaced() const override; + + /** * @copydoc ModelInterface::GetHyphens() */ const GlyphInfo* GetHyphens() const override; @@ -278,7 +299,7 @@ public: /** * @copydoc ModelInterface::GetCharacterSpacing() */ - const float GetCharacterSpacing() const override; + float GetCharacterSpacing() const override; /** * @copydoc ModelInterface::GetTextBuffer() @@ -302,22 +323,66 @@ 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; /** + * @copydoc ModelInterface::GetNumberOfBoundedParagraphRuns() + */ + virtual Length GetNumberOfBoundedParagraphRuns() const override; + + /** + * @copydoc ModelInterface::GetBoundedParagraphRuns() + */ + virtual const Vector& GetBoundedParagraphRuns() const override; + + /** * @copydoc ModelInterface::GetStrikethroughRuns() */ void GetStrikethroughRuns(StrikethroughGlyphRun* strikethroughRuns, StrikethroughRunIndex index, Length numberOfRuns) const override; + /** + * @copydoc ModelInterface::GetNumberOfCharacterSpacingGlyphRuns() + */ + Length GetNumberOfCharacterSpacingGlyphRuns() const override; + + /** + * @copydoc ModelInterface::GetCharacterSpacingGlyphRuns() + */ + 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.