X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Flogical-model-impl.h;h=4702c380f9cbbdd311b842978118d10e8d1f5c8b;hb=HEAD;hp=0fa3df2092823d0d9fd64bb6acc60b042b0703f9;hpb=6a219d0bbcfd016e24b5466d5fb1a666c92feae5;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 0fa3df2..af4510f 100644 --- a/dali-toolkit/internal/text/logical-model-impl.h +++ b/dali-toolkit/internal/text/logical-model-impl.h @@ -160,6 +160,11 @@ public: */ void ClearStrikethroughRuns(); + /** + * @brief Clears the underline runs. + */ + void ClearUnderlineRuns(); + // Paragraphs /** @@ -262,6 +267,11 @@ public: Vector mCharacterSpacingCharacterRuns; ///< The character-spacing character run from markup-processor. BidirectionalLineRunIndex mBidirectionalLineIndex; ///< The last fetched bidirectional line info. + bool mSpannedTextPlaced : 1; ///< Whether the spanned-text is placed. + + bool mUnderlineRunsUpdated : 1; /// Whether the UnderlinedCharacterRuns is updated. (Added for SpannedText) + bool mCharacterSpacingRunsUpdated : 1; // Flag for updating character-spacing. + bool mStrikethroughRunsUpdated : 1; /// Whether the StrikethroughCharacterRuns is updated. (Added for SpannedText) }; } // namespace Text