Fix for slider
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / text-input / text-input.cpp
index 685a5dd..ff15d35 100644 (file)
@@ -193,21 +193,6 @@ bool TextInput::IsGrabHandleEnabled()
   return GetImpl(*this).IsGrabHandleEnabled();
 }
 
-void TextInput::EnableSelectionHandleFlip( bool toggle )
-{
-  GetImpl(*this).EnableSelectionHandleFlip( toggle );
-}
-
-bool TextInput::IsSelectionHandleFlipEnabled()
-{
-  return GetImpl(*this).IsSelectionHandleFlipEnabled();
-}
-
-void TextInput::SetSelectionHandleFlipMargin( const Vector4& border )
-{
-  GetImpl(*this).SetSelectionHandleFlipMargin( border );
-}
-
 void TextInput::SetBoundingRectangle( const Rect<float>& boundingOriginAndSize )
 {
   GetImpl(*this).SetBoundingRectangle( boundingOriginAndSize );
@@ -218,11 +203,6 @@ const Rect<float> TextInput::GetBoundingRectangle() const
   return GetImpl(*this).GetBoundingRectangle();
 }
 
-const Vector4& TextInput::GetSelectionHandleFlipMargin()
-{
-  return GetImpl(*this).GetSelectionHandleFlipMargin();
-}
-
 void TextInput::SetActiveStyle( const TextStyle& style, const TextStyle::Mask mask )
 {
   GetImpl(*this).SetActiveStyle(style,mask);
@@ -373,6 +353,17 @@ TextInput::InputTextExceedBoundariesSignalV2& TextInput::InputTextExceedBoundari
   return GetImpl(*this).InputTextExceedBoundariesSignal();
 }
 
+void TextInput::SetMarkupProcessingEnabled( bool enable )
+{
+  return GetImpl( *this ).SetMarkupProcessingEnabled( enable );
+}
+
+bool TextInput::IsMarkupProcessingEnabled() const
+{
+  return GetImpl( *this ).IsMarkupProcessingEnabled();
+}
+
+
 TextInput::TextInput( Dali::Internal::CustomActor* internal )
 : Control( internal )
 {