Merge "Unchecked GetCharacter func when index is over string length" into tizen_2.2
[platform/framework/native/uifw.git] / inc / FUiCtrlLabelTypes.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 /**
18 * @file         FUiCtrlLabelTypes.h
19 * @brief        This is the header file for the LabelTextStyle enumeration.
20 *
21 * This header file contains the declarations of the LabelTextStyle enumeration.
22 */
23 #ifndef _FUI_CTRL_LABEL_ENUM_H_
24 #define _FUI_CTRL_LABEL_ENUM_H_
25
26 namespace Tizen { namespace Ui { namespace Controls
27 {
28
29 /**
30   * @enum       LabelTextStyle
31   *
32   * Defines the text styles of the label.
33   *
34   * @since              2.0
35   */
36 enum LabelTextStyle
37 {
38         LABEL_TEXT_STYLE_NORMAL,        /**< The plain text style */
39         LABEL_TEXT_STYLE_BOLD,      /**< The bold text style */
40         LABEL_TEXT_STYLE_ITALIC,        /**< The italic text style */
41 };
42
43 /**
44   * @enum       LabelContentHint
45   *
46   * Defines the content update type.
47   *
48   * @since 2.0
49   */
50 enum LabelContentHint
51 {
52         LABEL_CONTENT_HINT_DYNAMIC,         /**< The contents will change */
53         LABEL_CONTENT_HINT_STATIC       /**< The contents will not change */
54 };
55
56 }}} // Tizen::Ui::Controls
57
58 #endif // _FUI_CTRL_LABEL_ENUM_H_