X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Flogical-model-impl.h;h=1bed3428bb48377bad20310297fb10635de85d02;hb=e029ad17187a0cc3749982788e16e5a5bbb65301;hp=4702c380f9cbbdd311b842978118d10e8d1f5c8b;hpb=d0b0cfa4a44953be9af9128885eb6ef5d83a214e;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/logical-model-impl.h b/dali-toolkit/internal/text/logical-model-impl.h index 4702c38..1bed342 100644 --- a/dali-toolkit/internal/text/logical-model-impl.h +++ b/dali-toolkit/internal/text/logical-model-impl.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_TEXT_LOGICAL_MODEL_IMPL_H /* - * Copyright (c) 2021 Samsung Electronics Co., Ltd. + * Copyright (c) 2022 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. @@ -24,6 +24,7 @@ #include // INTERNAL INCLUDES +#include #include #include #include @@ -32,6 +33,8 @@ #include #include #include +#include +#include namespace Dali { @@ -181,6 +184,11 @@ public: */ void ClearEmbeddedImages(); + /** + * @brief Clears the anchors. + */ + void ClearAnchors(); + protected: /** * @brief A reference counted object may only be deleted by calling Unreference(). @@ -212,6 +220,9 @@ public: Vector mCharacterDirections; ///< For each character, whether is right to left. ( @e flase is left to right, @e true right to left ). Vector mBidirectionalLineInfo; Vector mEmbeddedItems; + Vector mAnchors; + Vector mUnderlinedCharacterRuns; ///< The underlined character run from markup-processor + Vector mStrikethroughCharacterRuns; ///< The strikethrough character run from markup-processor BidirectionalLineRunIndex mBidirectionalLineIndex; ///< The last fetched bidirectional line info. };