[dali_2.3.24] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / multi-language-support.h
index 7423820..5d15956 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_TOOLKIT_TEXT_MULTI_LANGUAGE_SUPPORT_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.
@@ -110,6 +110,7 @@ public:
    * @param[in] fontDescriptions The fonts set through the mark-up string or the input style set through the property system.
    * @param[in] defaultFontDescription The default font's description set through the property system.
    * @param[in] defaultFontPointSize The default font's point size set through the property system.
+   * @param[in] fontSizeScale The font's size scale.
    * @param[in] startIndex The character from where the font info is set.
    * @param[in] numberOfCharacters The number of characters to set the font.
    * @param[out] fonts The validated fonts.
@@ -119,9 +120,17 @@ public:
                      const Vector<FontDescriptionRun>&       fontDescriptions,
                      const TextAbstraction::FontDescription& defaultFontDescription,
                      TextAbstraction::PointSize26Dot6        defaultFontPointSize,
+                     float                                   fontSizeScale,
                      CharacterIndex                          startIndex,
                      Length                                  numberOfCharacters,
                      Vector<FontRun>&                        fonts);
+
+public:
+  // Default copy and move operator
+  MultilanguageSupport(const MultilanguageSupport& rhs) = default;
+  MultilanguageSupport(MultilanguageSupport&& rhs)      = default;
+  MultilanguageSupport& operator=(const MultilanguageSupport& rhs) = default;
+  MultilanguageSupport& operator=(MultilanguageSupport&& rhs) = default;
 };
 
 } // namespace Text