Skeleton Decorator API
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / text / multi-language-support.cpp
index 1eb6805..205b39b 100644 (file)
@@ -48,14 +48,20 @@ MultilanguageSupport MultilanguageSupport::Get()
   return Internal::MultilanguageSupport::Get();
 }
 
-void MultilanguageSupport::SetScripts( LogicalModel& model )
+void MultilanguageSupport::SetScripts( const Vector<Character>& text,
+                                       Vector<ScriptRun>& scripts )
 {
-  GetImplementation( *this ).SetScripts( model );
+  GetImplementation( *this ).SetScripts( text,
+                                         scripts );
 }
 
-void MultilanguageSupport::ValidateFonts( LogicalModel& model )
+void MultilanguageSupport::ValidateFonts( const Vector<Character>& text,
+                                          const Vector<ScriptRun>& scripts,
+                                          Vector<FontRun>& fonts )
 {
-  GetImplementation( *this ).ValidateFonts( model );
+  GetImplementation( *this ).ValidateFonts( text,
+                                            scripts,
+                                            fonts );
 }
 
 } // namespace Text