X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-model.h;h=cd4958133cc80ff0e42eacb19e0338b3d269eca4;hb=44bb6ae11e1c189104d9a8c9881bd5e524b398c0;hp=26b9f08ebc9f1e65423670e3a956a7336b8cfe4a;hpb=8e7cfd0c114bf778287cc6e67d0f42f3c866e205;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git 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 26b9f08..cd49581 --- 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) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2017 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. @@ -23,6 +23,7 @@ // INTERNAL INCLUDES #include +#include #include #include #include @@ -99,6 +100,16 @@ public: virtual const LineRun* const GetLines() const; /** + * @copydoc ModelInterface::GetNumberOfScripts() + */ + virtual Length GetNumberOfScripts() const; + + /** + * @copydoc ModelInterface::GetScriptRuns() + */ + virtual const ScriptRun* const GetScriptRuns() const; + + /** * @copydoc ModelInterface::GetNumberOfGlyphs() */ virtual Length GetNumberOfGlyphs() const; @@ -128,6 +139,51 @@ public: */ virtual const Vector4& GetDefaultColor() const; + /** + * @copydoc ModelInterface::GetShadowOffset() + */ + virtual const Vector2& GetShadowOffset() const; + + /** + * @copydoc ModelInterface::GetShadowColor() + */ + virtual const Vector4& GetShadowColor() const; + + /** + * @copydoc ModelInterface::GetUnderlineColor() + */ + virtual const Vector4& GetUnderlineColor() const; + + /** + * @copydoc ModelInterface::IsUnderlineEnabled() + */ + virtual bool IsUnderlineEnabled() const; + + /** + * @copydoc ModelInterface::GetUnderlineHeight() + */ + virtual float GetUnderlineHeight() const; + + /** + * @copydoc ModelInterface::GetNumberOfUnderlineRuns() + */ + virtual Length GetNumberOfUnderlineRuns() const; + + /** + * @copydoc ModelInterface::GetUnderlineRuns() + */ + 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; + private: // Private contructors & copy operator. /** @@ -159,6 +215,7 @@ public: 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. };