X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=base%2Fdali-toolkit%2Finternal%2Fcontrols%2Ftext-view%2Ftext-view-processor-dbg.cpp;h=100c570cc903d0e7aced53a3368171e363628673;hb=a81e6cdec136b728115431822a2ff3f60e279045;hp=b94a53c5c9ebea8f5f247dbe6d11e0eab521d601;hpb=a881757839b7abb008873a68c67e17b3ba39669b;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/base/dali-toolkit/internal/controls/text-view/text-view-processor-dbg.cpp b/base/dali-toolkit/internal/controls/text-view/text-view-processor-dbg.cpp index b94a53c..100c570 100644 --- a/base/dali-toolkit/internal/controls/text-view/text-view-processor-dbg.cpp +++ b/base/dali-toolkit/internal/controls/text-view/text-view-processor-dbg.cpp @@ -123,24 +123,28 @@ void dbgPrint( const TextLayoutInfo& textInfo ) void dbgPrint( const TextStyle& style ) { - std::cout << " font name : " << style.GetFontName() << std::endl; - std::cout << " font style : " << style.GetFontStyle() << std::endl; - std::cout << " font point size : " << style.GetFontPointSize() << std::endl; - std::cout << " weight : " << style.GetWeight() << std::endl; - std::cout << " text color : " << style.GetTextColor() << std::endl; - std::cout << " italics : " << style.GetItalics() << std::endl; - std::cout << " underline : " << style.GetUnderline() << std::endl; - std::cout << " shadow : " << style.GetShadow() << std::endl; - std::cout << " shadow color : " << style.GetShadowColor() << std::endl; - std::cout << " shadow offset : " << style.GetShadowOffset() << std::endl; - std::cout << " glow : " << style.GetGlow() << std::endl; - std::cout << " italics angle : " << style.GetItalicsAngle() << std::endl; - std::cout << " glow color : " << style.GetGlowColor() << std::endl; - std::cout << " glow intensity : " << style.GetGlowIntensity() << std::endl; - std::cout << " smooth edge : " << style.GetSmoothEdge() << std::endl; - std::cout << " outline : " << style.GetOutline() << std::endl; - std::cout << " outline color : " << style.GetOutlineColor() << std::endl; - std::cout << " outline thickness : " << style.GetOutlineThickness() << std::endl; + std::cout << " font name : " << style.GetFontName() << std::endl; + std::cout << " font style : " << style.GetFontStyle() << std::endl; + std::cout << " font point size : " << style.GetFontPointSize() << std::endl; + std::cout << " weight : " << style.GetWeight() << std::endl; + std::cout << " text color : " << style.GetTextColor() << std::endl; + std::cout << " italics : " << style.IsItalicsEnabled() << std::endl; + std::cout << " underline : " << style.IsUnderlineEnabled() << std::endl; + std::cout << " shadow : " << style.IsShadowEnabled() << std::endl; + std::cout << " shadow color : " << style.GetShadowColor() << std::endl; + std::cout << " shadow offset : " << style.GetShadowOffset() << std::endl; + std::cout << " glow : " << style.IsGlowEnabled() << std::endl; + std::cout << " italics angle : " << style.GetItalicsAngle() << std::endl; + std::cout << " glow color : " << style.GetGlowColor() << std::endl; + std::cout << " glow intensity : " << style.GetGlowIntensity() << std::endl; + std::cout << " smooth edge : " << style.GetSmoothEdge() << std::endl; + std::cout << " outline : " << style.IsOutlineEnabled() << std::endl; + std::cout << " outline color : " << style.GetOutlineColor() << std::endl; + std::cout << " outline thickness : " << style.GetOutlineThickness() << std::endl; + std::cout << " gradient : " << style.IsGradientEnabled() << std::endl; + std::cout << " gradient color : " << style.GetGradientColor() << std::endl; + std::cout << " gradient start point : " << style.GetGradientStartPoint() << std::endl; + std::cout << " gradient end point : " << style.GetGradientEndPoint() << std::endl; } void dbgPrint( const TextInfoIndices& indices )