Revert "[4.0] Support custom fonts registration" 91/155691/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 16 Oct 2017 02:52:19 +0000 (11:52 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 16 Oct 2017 02:52:27 +0000 (11:52 +0900)
This reverts commit 8419e3b84588eb5c0a775b9011beeb9227c96d06.

Change-Id: I2da2c0d76bbb1ef13e776bfe781d9c17ae5d7553

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

index 8fe2812..07d657f 100644 (file)
@@ -1309,8 +1309,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"
@@ -1328,12 +1327,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()