Revert "[4.0] Support custom fonts registration" 16/154816/1
authortaeyoon0.lee <taeyoon0.lee@samsung.com>
Wed, 11 Oct 2017 09:05:35 +0000 (18:05 +0900)
committertaeyoon0.lee <taeyoon0.lee@samsung.com>
Wed, 11 Oct 2017 09:05:44 +0000 (18:05 +0900)
This reverts commit e671199f1ebb4418bcaeb76adba35551df5d1b68.

Change-Id: I7f34e1a3bd4b25d981de141aa64759a6aba73421

automated-tests/src/dali-toolkit-styling/utc-Dali-StyleManager.cpp
dali-toolkit/internal/text/multi-language-support-impl.cpp

index a143f7e..e8348f1 100644 (file)
@@ -1313,8 +1313,7 @@ int UtcDaliStyleManagerConfigSectionTest(void)
     "  \"config\":\n"
     "  {\n"
     "    \"alwaysShowFocus\":false,\n"
-    "    \"clearFocusOnEscape\":false,\n"
-    "    \"customFontDirectory\":\"" DALI_STYLE_DIR "\"\n"
+    "    \"clearFocusOnEscape\":false\n"
     "  },\n"
     "  \"styles\":\n"
     "  {\n"
@@ -1332,12 +1331,9 @@ int UtcDaliStyleManagerConfigSectionTest(void)
   DALI_TEST_CHECK( !alwaysShowFocus );
   bool clearFocusOnEscape = config["clearFocusOnEscape"].Get<bool>();
   DALI_TEST_CHECK( !clearFocusOnEscape );
-  std::string customFontDirectory = config["customFontDirectory"].Get<std::string>();
-  DALI_TEST_EQUALS( customFontDirectory, DALI_STYLE_DIR, TEST_LOCATION );
 
   // For coverage
   Toolkit::TextEditor editor = Toolkit::TextEditor::New();
-  editor.SetProperty( TextEditor::Property::TEXT, "Test" );
   editor.SetKeyboardFocusable( true );
   Stage::GetCurrent().Add( editor );
 
index d32809c..e88a286 100644 (file)
@@ -25,7 +25,6 @@
 
 // INTERNAL INCLUDES
 #include <dali-toolkit/internal/text/multi-language-helper-functions.h>
-#include <dali-toolkit/devel-api/styling/style-manager-devel.h>
 
 namespace Dali
 {
@@ -107,20 +106,6 @@ MultilanguageSupport::MultilanguageSupport()
   // Initializes the valid fonts cache to NULL (no valid fonts).
   // Reserves space to cache the valid fonts and access them with the script as an index.
   mValidFontsPerScriptCache.Resize( TextAbstraction::UNKNOWN, NULL );
-
-  // Add custom font directory
-  Toolkit::StyleManager styleManager = Toolkit::StyleManager::Get();
-  if( styleManager )
-  {
-    std::string path;
-    Property::Map config = Toolkit::DevelStyleManager::GetConfigurations( styleManager );
-    if( config["customFontDirectory"].Get( path ) )
-    {
-      TextAbstraction::FontClient fontClient = TextAbstraction::FontClient::Get();
-      fontClient.AddCustomFontDirectory( path.c_str() );
-    }
-  }
-
 }
 
 MultilanguageSupport::~MultilanguageSupport()