Changed all property & signal names to lowerCamelCase
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-font-style.h
index 35696af..68c230c 100644 (file)
@@ -36,38 +36,38 @@ namespace Text
 
 const Scripting::StringEnum FONT_WIDTH_STRING_TABLE[] =
 {
-  { "ultra-condensed", TextAbstraction::FontWidth::ULTRA_CONDENSED },
-  { "extra-condensed", TextAbstraction::FontWidth::EXTRA_CONDENSED },
+  { "ultraCondensed", TextAbstraction::FontWidth::ULTRA_CONDENSED },
+  { "extraCondensed", TextAbstraction::FontWidth::EXTRA_CONDENSED },
   { "condensed", TextAbstraction::FontWidth::CONDENSED },
-  { "semi-condensed", TextAbstraction::FontWidth::SEMI_CONDENSED },
+  { "semiCondensed", TextAbstraction::FontWidth::SEMI_CONDENSED },
   { "normal", TextAbstraction::FontWidth::NORMAL },
-  { "semi-expanded", TextAbstraction::FontWidth::SEMI_EXPANDED },
+  { "semiExpanded", TextAbstraction::FontWidth::SEMI_EXPANDED },
   { "expanded", TextAbstraction::FontWidth::EXPANDED },
-  { "extra-expanded", TextAbstraction::FontWidth::EXTRA_EXPANDED },
-  { "ultra-expanded", TextAbstraction::FontWidth::ULTRA_EXPANDED },
+  { "extraExpanded", TextAbstraction::FontWidth::EXTRA_EXPANDED },
+  { "ultraExpanded", TextAbstraction::FontWidth::ULTRA_EXPANDED },
 };
 const unsigned int FONT_WIDTH_STRING_TABLE_COUNT = sizeof( FONT_WIDTH_STRING_TABLE ) / sizeof( FONT_WIDTH_STRING_TABLE[0] );
 
 const Scripting::StringEnum FONT_WEIGHT_STRING_TABLE[] =
 {
   { "thin", TextAbstraction::FontWeight::THIN },
-  { "ultra-light", TextAbstraction::FontWeight::ULTRA_LIGHT },
-  { "extra-light", TextAbstraction::FontWeight::EXTRA_LIGHT },
+  { "ultraLight", TextAbstraction::FontWeight::ULTRA_LIGHT },
+  { "extraLight", TextAbstraction::FontWeight::EXTRA_LIGHT },
   { "light", TextAbstraction::FontWeight::LIGHT },
-  { "demi-light", TextAbstraction::FontWeight::DEMI_LIGHT },
-  { "semi-light", TextAbstraction::FontWeight::SEMI_LIGHT },
+  { "demiLight", TextAbstraction::FontWeight::DEMI_LIGHT },
+  { "semiLight", TextAbstraction::FontWeight::SEMI_LIGHT },
   { "book", TextAbstraction::FontWeight::BOOK },
   { "normal", TextAbstraction::FontWeight::NORMAL },
   { "regular", TextAbstraction::FontWeight::REGULAR },
   { "medium", TextAbstraction::FontWeight::MEDIUM },
-  { "demi-bold", TextAbstraction::FontWeight::DEMI_BOLD },
-  { "semi-bold", TextAbstraction::FontWeight::SEMI_BOLD },
+  { "demiBold", TextAbstraction::FontWeight::DEMI_BOLD },
+  { "semiBold", TextAbstraction::FontWeight::SEMI_BOLD },
   { "bold", TextAbstraction::FontWeight::BOLD },
-  { "ultra-bold", TextAbstraction::FontWeight::ULTRA_BOLD },
-  { "extra-bold", TextAbstraction::FontWeight::EXTRA_BOLD },
+  { "ultraBold", TextAbstraction::FontWeight::ULTRA_BOLD },
+  { "extraBold", TextAbstraction::FontWeight::EXTRA_BOLD },
   { "black", TextAbstraction::FontWeight::BLACK },
   { "heavy", TextAbstraction::FontWeight::HEAVY },
-  { "extra-black", TextAbstraction::FontWeight::EXTRA_BLACK }
+  { "extraBlack", TextAbstraction::FontWeight::EXTRA_BLACK }
 };
 const unsigned int FONT_WEIGHT_STRING_TABLE_COUNT = sizeof( FONT_WEIGHT_STRING_TABLE ) / sizeof( FONT_WEIGHT_STRING_TABLE[0] );