N_SE-47263 : reset touch cancel when indicator touch released/N_SE-51832 : fix checki...
[platform/framework/native/uifw.git] / inc / FGrpFontCommon.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 /**
19  * @file        FGrpFontCommon.h
20  * @brief       This is the header file for the enumerations of the Font class.
21  *
22  * This header file contains the definitions of the enumerations of the Font class.
23  */
24
25 #ifndef _FGRP_FONT_COMMON_H_
26 #define _FGRP_FONT_COMMON_H_
27
28 namespace Tizen { namespace Graphics
29 {
30 /**
31 * @enum FontStyle
32 *
33 * Defines the style of the Font class instance.
34 *
35 * @since        2.0
36 *
37 * @remarks  Several different font styles can be combined using the "OR" operator. @n
38 *                       (For example, int style = @c FONT_STYLE_BOLD | @c FONT_STYLE_ITALIC).
39 */
40 enum FontStyle
41 {
42         FONT_STYLE_PLAIN = 0x0001, /**< The plain font style */
43         FONT_STYLE_BOLD = 0x0002, /**< The bold font style */
44         FONT_STYLE_ITALIC = 0x0004, /**<The italic font style */
45         FONT_STYLE_MAX, // This enum value is for internal use only. Using this enum value can cause behavioral, security-related, and consistency-related issues in the application.
46         FONT_STYLE_MIN = 0 // This enum value is for internal use only. Using this enum value can cause behavioral, security-related, and consistency-related issues in the application.
47 };
48
49 } } // Tizen::Graphics
50
51 #endif // _FGRP_FONT_COMMON_H_