Merge "Unchecked GetCharacter func when index is over string length" into tizen_2.2
[platform/framework/native/uifw.git] / inc / FUiClipboardTypes.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                FUiClipboardTypes.h
20  * @brief               This is the header file for the enumerations of the Clipboard class.
21  *
22  * The %ClipboardDataType enumeration defines the data types for the system clipboard.
23  */
24
25 #ifndef _FUI_CLIPBOARD_ENUM_H_
26 #define _FUI_CLIPBOARD_ENUM_H_
27
28 namespace Tizen { namespace Ui
29 {
30 /**
31  * @enum ClipboardDataType
32  *
33  * Defines the data types supported by %Clipboard.
34  *
35  * @since 2.0
36  */
37 enum ClipboardDataType
38 {
39         CLIPBOARD_DATA_TYPE_TEXT = 0x0001, /**< The text data type */
40         CLIPBOARD_DATA_TYPE_HTML = 0x0002, /**< The HTML data type */
41         CLIPBOARD_DATA_TYPE_IMAGE = 0x0004, /**< The image data type */
42         CLIPBOARD_DATA_TYPE_VIDEO = 0x0008, /**< The video data type */
43         CLIPBOARD_DATA_TYPE_AUDIO = 0x0010, /**< The audio data type */
44         CLIPBOARD_DATA_TYPE_MAX = 0x7fff, // The data type max
45         CLIPBOARD_DATA_TYPE_NONE = 0x0000 // No data type
46 };
47
48 }} // Tizen::Ui
49
50 #endif // _FUI_CLIPBOARD_ENUM_H_