Revert TextVisual in TextLabel Patches
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / view-model.cpp
index 1dcda36..eb49465 100644 (file)
@@ -86,16 +86,6 @@ const LineRun* const ViewModel::GetLines() const
   return mModel->GetLines();
 }
 
-Length ViewModel::GetNumberOfScripts() const
-{
-  return mModel->GetNumberOfScripts();
-}
-
-const ScriptRun* const ViewModel::GetScriptRuns() const
-{
-  return mModel->GetScriptRuns();
-}
-
 Length ViewModel::GetNumberOfGlyphs() const
 {
   if( mIsTextElided && mModel->IsTextElideEnabled() )
@@ -153,41 +143,6 @@ const Vector4& ViewModel::GetDefaultColor() const
   return mModel->GetDefaultColor();
 }
 
-const Vector2& ViewModel::GetShadowOffset() const
-{
-  return mModel->GetShadowOffset();
-}
-
-const Vector4& ViewModel::GetShadowColor() const
-{
-  return mModel->GetShadowColor();
-}
-
-const Vector4& ViewModel::GetUnderlineColor() const
-{
-  return mModel->GetUnderlineColor();
-}
-
-bool ViewModel::IsUnderlineEnabled() const
-{
-  return mModel->IsUnderlineEnabled();
-}
-
-float ViewModel::GetUnderlineHeight() const
-{
-  return mModel->GetUnderlineHeight();
-}
-
-Length ViewModel::GetNumberOfUnderlineRuns() const
-{
-  return mModel->GetNumberOfUnderlineRuns();
-}
-
-void ViewModel::GetUnderlineRuns( GlyphRun* underlineRuns, UnderlineRunIndex index, Length numberOfRuns ) const
-{
-  mModel->GetUnderlineRuns( underlineRuns, index, numberOfRuns );
-}
-
 void ViewModel::ElideGlyphs()
 {
   mIsTextElided = false;