Removed some redundant methods from TextController & Moved some code to other files
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / segmentation.h
index 4bbe5d5..305329f 100644 (file)
@@ -1,8 +1,8 @@
-#ifndef __DALI_TOOLKIT_TEXT_SEGMENTATION_H__
-#define __DALI_TOOLKIT_TEXT_SEGMENTATION_H__
+#ifndef DALI_TOOLKIT_TEXT_SEGMENTATION_H
+#define DALI_TOOLKIT_TEXT_SEGMENTATION_H
 
 /*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2021 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.
 
 namespace Dali
 {
-
 namespace Toolkit
 {
-
 namespace Text
 {
-
 class LogicalModel;
 
 /**
@@ -45,10 +42,14 @@ class LogicalModel;
  *  - 2 is a LINE_NO_BREAK.    Text can't be broken into a new line.
  *
  * @param[in] text Vector of UTF-32 characters.
+ * @param[in] startIndex The character from where the break info is set.
+ * @param[in] numberOfCharacters The number of characters.
  * @param[out] lineBreakInfo The line break info
  */
-void SetLineBreakInfo( const Vector<Character>& text,
-                       Vector<LineBreakInfo>& lineBreakInfo );
+void SetLineBreakInfo(const Vector<Character>& text,
+                      CharacterIndex           startIndex,
+                      Length                   numberOfCharacters,
+                      Vector<LineBreakInfo>&   lineBreakInfo);
 
 /**
  * Sets word break info.
@@ -57,10 +58,14 @@ void SetLineBreakInfo( const Vector<Character>& text,
  * - 1 is a WORD_NO_BREAK. Text can't be broken into a new word.
  *
  * @param[in] text Vector of UTF-32 characters.
+ * @param[in] startIndex The character from where the break info is set.
+ * @param[in] numberOfCharacters The number of characters.
  * @param[out] wordBreakInfo The word break info.
  */
-void SetWordBreakInfo( const Vector<Character>& text,
-                       Vector<WordBreakInfo>& wordBreakInfo );
+void SetWordBreakInfo(const Vector<Character>& text,
+                      CharacterIndex           startIndex,
+                      Length                   numberOfCharacters,
+                      Vector<WordBreakInfo>&   wordBreakInfo);
 
 } // namespace Text
 
@@ -68,4 +73,4 @@ void SetWordBreakInfo( const Vector<Character>& text,
 
 } // namespace Dali
 
-#endif // __DALI_TOOLKIT_TEXT_SEGMENTATION_H__
+#endif // DALI_TOOLKIT_TEXT_SEGMENTATION_H