X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-model.h;h=1ea725cb3e7134698b0c48086066766f108b23ec;hp=a7b0bb8adc6a5429e459a5b9578b666cedf34e90;hb=9346cf33ef49063185d54fbbfc186864d96c51ca;hpb=4d305b893731daafafc293b92dc4fa25a896e929 diff --git a/dali-toolkit/internal/text/text-model.h b/dali-toolkit/internal/text/text-model.h old mode 100644 new mode 100755 index a7b0bb8..1ea725c --- a/dali-toolkit/internal/text/text-model.h +++ b/dali-toolkit/internal/text/text-model.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_TEXT_MODEL_H /* - * Copyright (c) 2017 Samsung Electronics Co., Ltd. + * Copyright (c) 2018 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,8 +22,7 @@ #include // INTERNAL INCLUDES -#include -#include +#include #include #include #include @@ -77,12 +76,17 @@ public: /** * @copydoc ModelInterface::GetHorizontalAlignment() */ - virtual Layout::HorizontalAlignment GetHorizontalAlignment() const; + virtual HorizontalAlignment::Type GetHorizontalAlignment() const; /** * @copydoc ModelInterface::GetVerticalAlignment() */ - virtual Layout::VerticalAlignment GetVerticalAlignment() const; + virtual VerticalAlignment::Type GetVerticalAlignment() const; + + /** + * @copydoc ModelInterface::GetVerticalLineAlignment() + */ + virtual DevelText::VerticalLineAlignment::Type GetVerticalLineAlignment() const override; /** * @copydoc ModelInterface::IsTextElideEnabled() @@ -150,6 +154,11 @@ public: virtual const Vector4& GetShadowColor() const; /** + * @copydoc ModelInterface::GetShadowBlurRadius() + */ + virtual const float& GetShadowBlurRadius() const; + + /** * @copydoc ModelInterface::GetUnderlineColor() */ virtual const Vector4& GetUnderlineColor() const; @@ -174,6 +183,26 @@ public: */ virtual void GetUnderlineRuns( GlyphRun* underlineRuns, UnderlineRunIndex index, Length numberOfRuns ) const; + /** + * @copydoc ModelInterface::GetOutlineColor() + */ + virtual const Vector4& GetOutlineColor() const; + + /** + * @copydoc ModelInterface::GetOutlineWidth() + */ + virtual float GetOutlineWidth() const; + + /** + * @copydoc ModelInterface::GetBackgroundColor() + */ + virtual const Vector4& GetBackgroundColor() const; + + /** + * @copydoc ModelInterface::IsBackgroundEnabled() + */ + virtual bool IsBackgroundEnabled() const; + private: // Private contructors & copy operator. /** @@ -201,13 +230,15 @@ public: * 0,0 means that the top-left corner of the layout matches the top-left corner of the UI control. * Typically this will have a negative value with scrolling occurs. */ - Vector2 mScrollPosition; ///< The text is offset by this position when scrolling. - Vector2 mScrollPositionLast; ///< The last offset value of mScrollPosition - Layout::HorizontalAlignment mHorizontalAlignment; ///< The layout's horizontal alignment. - Layout::VerticalAlignment mVerticalAlignment; ///< The layout's vertical alignment. - Layout::LineWrap::Mode mLineWrapMode; ///< The text wrap mode - float mAlignmentOffset; ///< The alignment offset. - bool mElideEnabled:1; ///< Whether the text's elide is enabled. + Vector2 mScrollPosition; ///< The text is offset by this position when scrolling. + Vector2 mScrollPositionLast; ///< The last offset value of mScrollPosition + HorizontalAlignment::Type mHorizontalAlignment; ///< The layout's horizontal alignment. + VerticalAlignment::Type mVerticalAlignment; ///< The layout's vertical alignment. + DevelText::VerticalLineAlignment::Type mVerticalLineAlignment; ///< The layout's vertical line alignment. + Text::LineWrap::Mode mLineWrapMode; ///< The text wrap mode + float mAlignmentOffset; ///< The alignment offset. + bool mElideEnabled:1; ///< Whether the text's elide is enabled. + bool mIgnoreSpacesAfterText:1; ///< Whether ignoring spaces after text or not. Default is true. }; } // namespace Text