Adding Decorator BoundingBox
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / text-controls / text-field.cpp
index d891302..397f6a5 100644 (file)
@@ -27,6 +27,7 @@ namespace Dali
 namespace Toolkit
 {
 
+const std::string TextField::RENDERING_BACKEND_PROPERTY_NAME("rendering-backend");
 const std::string TextField::PLACEHOLDER_TEXT_PROPERTY_NAME("placeholder-text");
 const std::string TextField::TEXT_PROPERTY_NAME("text");
 const std::string TextField::CURSOR_IMAGE_PROPERTY_NAME("cursor-image");
@@ -36,6 +37,7 @@ const std::string TextField::ENABLE_CURSOR_BLINK_PROPERTY_NAME("enable-cursor-bl
 const std::string TextField::CURSOR_BLINK_INTERVAL_PROPERTY_NAME("cursor-blink-interval");
 const std::string TextField::CURSOR_BLINK_DURATION_PROPERTY_NAME("cursor-blink-duration");
 const std::string TextField::GRAB_HANDLE_IMAGE_PROPERTY_NAME("grab-handle-image");
+const std::string TextField::DECORATION_BOUNDING_BOX("decoration-bounding-box");
 
 TextField TextField::New()
 {
@@ -69,11 +71,6 @@ TextField TextField::DownCast( BaseHandle handle )
   return Control::DownCast<TextField, Internal::TextField>(handle);
 }
 
-void TextField::SetRenderer( Text::RendererPtr renderer )
-{
-  GetImpl(*this).SetRenderer( renderer );
-}
-
 TextField::TextField( Internal::TextField& implementation )
 : Control(implementation)
 {