X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Ftext%2Ftext-enumerations.h;h=e5b7fbe2526edeeedcdffc5e3322bb0f554ff814;hp=5276d320642fc68c650a97ed16e09bf872be0990;hb=3a6adcbec75784b051cb9ebaf204d72b553ea355;hpb=6e208aaad38b77bce2b7c5955196d5770d8b75a9 diff --git a/dali-toolkit/public-api/text/text-enumerations.h b/dali-toolkit/public-api/text/text-enumerations.h index 5276d32..e5b7fbe 100644 --- a/dali-toolkit/public-api/text/text-enumerations.h +++ b/dali-toolkit/public-api/text/text-enumerations.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_TEXT_ENUMERATIONS_H /* - * Copyright (c) 2017 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 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. @@ -20,7 +20,6 @@ namespace Dali { - namespace Toolkit { /** @@ -30,7 +29,6 @@ namespace Toolkit namespace Text { - /** * @brief The available Horizontal alignments for text. * @@ -38,7 +36,6 @@ namespace Text */ namespace HorizontalAlignment { - /** * @brief Enumerations for Horizontal alignment. * @@ -46,9 +43,9 @@ namespace HorizontalAlignment */ enum Type { - BEGIN, ///< @SINCE_1_2.60 - CENTER, ///< @SINCE_1_2.60 - END ///< @SINCE_1_2.60 + BEGIN, ///< @SINCE_1_2.60 + CENTER, ///< @SINCE_1_2.60 + END ///< @SINCE_1_2.60 }; } // namespace HorizontalAlignment @@ -60,7 +57,6 @@ enum Type */ namespace VerticalAlignment { - /** * @brief Enumerations for Vertical alignment. * @@ -68,9 +64,9 @@ namespace VerticalAlignment */ enum Type { - TOP, ///< @SINCE_1_2.60 - CENTER, ///< @SINCE_1_2.60 - BOTTOM ///< @SINCE_1_2.60 + TOP, ///< @SINCE_1_2.60 + CENTER, ///< @SINCE_1_2.60 + BOTTOM ///< @SINCE_1_2.60 }; } // namespace VerticalAlignment @@ -100,7 +96,6 @@ enum Type */ namespace LineWrap { - /** * @brief Enumerations specifying how a line is wrapped. * @SINCE_1_2.60 @@ -108,12 +103,30 @@ namespace LineWrap */ enum Mode { - WORD, ///< @SINCE_1_2.60 - CHARACTER ///< @SINCE_1_2.60 + WORD, ///< @SINCE_1_2.60 + CHARACTER ///< @SINCE_1_2.60 }; } // namespace LineWrap +/** + * @brief The available underline types for text. + * @SINCE_1_2.60 + */ +namespace Underline +{ +/** + * @brief Enumerations specifying the underline type. + */ +enum Type +{ + SOLID, + DASHED, + DOUBLE +}; + +} // namespace UnderlineType + } // namespace Text /**