Remove useless iteration when debug mode
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-definitions.h
index 4879090..d5ce520 100644 (file)
@@ -1,8 +1,8 @@
-#ifndef __DALI_TEXT_ABSTRACTION_TEXT_TYPE_DEFINITIONS_H__
-#define __DALI_TEXT_ABSTRACTION_TEXT_TYPE_DEFINITIONS_H__
+#ifndef DALI_TEXT_ABSTRACTION_TEXT_TYPE_DEFINITIONS_H
+#define DALI_TEXT_ABSTRACTION_TEXT_TYPE_DEFINITIONS_H
 
 /*
- * Copyright (c) 2015 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.
  */
 
 // EXTERNAL INCLUDES
-#include <dali/devel-api/text-abstraction/text-abstraction-definitions.h>
 #include <dali/devel-api/text-abstraction/font-list.h>
 #include <dali/devel-api/text-abstraction/font-metrics.h>
 #include <dali/devel-api/text-abstraction/glyph-info.h>
 #include <dali/devel-api/text-abstraction/script.h>
+#include <dali/devel-api/text-abstraction/text-abstraction-definitions.h>
 
 namespace Dali
 {
-
 namespace Toolkit
 {
-
 namespace Text
 {
-
 typedef TextAbstraction::FontId             FontId;             ///< The unique identifier for a font face (generated by FontClient).
 typedef TextAbstraction::FontWidth::Type    FontWidth;          ///< The font's width.
 typedef TextAbstraction::FontWeight::Type   FontWeight;         ///< The font's weight.
@@ -51,14 +48,18 @@ typedef TextAbstraction::Script             Script;             ///< The charact
 typedef TextAbstraction::LineBreakInfo      LineBreakInfo;      ///< Line break info (must break, allow break, no break). Possible values are: @e LINE_MUST_BREAK, @e LINE_ALLOW_BREAK and @e LINE_NO_BREAK (in the TextAbstraction namespace).
 typedef TextAbstraction::WordBreakInfo      WordBreakInfo;      ///< Word break info (break, no break). Possible values are: @e WORD_BREAK and @e WORD_NO_BREAK (in the TextAbstraction namespace).
 typedef TextAbstraction::CharacterDirection CharacterDirection; ///< The character's direction: @e false is left to right, @e true is right to left.
+typedef TextAbstraction::ColorBlendingMode  ColorBlendingMode;  ///< Defines how a color is blended.
+typedef TextAbstraction::ColorIndex         ColorIndex;         ///< An index into an array of colors.
 
-typedef uint32_t                         GlyphIndex;                ///< An index into an array of glyphs.
-typedef uint32_t                         ScriptRunIndex;            ///< An index into an array of script runs.
-typedef uint32_t                         FontRunIndex;              ///< An index into an array of font runs.
-typedef uint32_t                         UnderlineRunIndex;         ///< An index into an array of underline runs.
-typedef uint32_t                         BidirectionalRunIndex;     ///< An index into an array of bidirectional info.
-typedef uint32_t                         BidirectionalLineRunIndex; ///< An index into an array of bidirectional line info.
-typedef uint32_t                         LineIndex;                 ///< An index into an array of lines.
+typedef uint32_t GlyphIndex;                ///< An index into an array of glyphs.
+typedef uint32_t ScriptRunIndex;            ///< An index into an array of script runs.
+typedef uint32_t FontRunIndex;              ///< An index into an array of font runs.
+typedef uint32_t UnderlineRunIndex;         ///< An index into an array of underline runs.
+typedef uint32_t StrikethroughRunIndex;     ///< An index into an array of underline runs.
+typedef uint32_t BidirectionalRunIndex;     ///< An index into an array of bidirectional info.
+typedef uint32_t BidirectionalLineRunIndex; ///< An index into an array of bidirectional line info.
+typedef uint32_t LineIndex;                 ///< An index into an array of lines.
+typedef uint32_t ParagraphRunIndex;         ///< An index into an array of paragraphs.
 
 } // namespace Text
 
@@ -66,4 +67,4 @@ typedef uint32_t                         LineIndex;                 ///< An inde
 
 } // namespace Dali
 
-#endif // __DALI_TEXT_ABSTRACTION_TEXT_TYPE_DEFINITIONS_H__
+#endif // DALI_TEXT_ABSTRACTION_TEXT_TYPE_DEFINITIONS_H