tizen 2.4 release
[framework/uifw/libeom.git] / include / eom_internal.h
1 /**************************************************************************
2
3 eom (external output manager)
4
5 Copyright 2014 Samsung Electronics co., Ltd. All Rights Reserved.
6
7 Contact:
8 SooChan Lim <sc1.lim@samsung.com>
9 Boram Park <boram1288.park@samsung.com>
10 Changyeon Lee <cyeon.lee@samsung.com>
11 JunKyeong Kim <jk0430.kim@samsung.com>
12
13 Permission is hereby granted, free of charge, to any person obtaining a
14 copy of this software and associated documentation files (the
15 "Software"), to deal in the Software without restriction, including
16 without limitation the rights to use, copy, modify, merge, publish,
17 distribute, sub license, and/or sell copies of the Software, and to
18 permit persons to whom the Software is furnished to do so, subject to
19 the following conditions:
20
21 The above copyright notice and this permission notice (including the
22 next paragraph) shall be included in all copies or substantial portions
23 of the Software.
24
25 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
26 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
28 IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
29 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
30 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
31 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32
33 **************************************************************************/
34
35 #ifndef __EOM_INTERNAL_H__
36 #define __EOM_INTERNAL_H__
37
38 /**
39  * @brief Enumeration of eom notify type
40  * @since_tizen 2.4
41  */
42 typedef enum {
43         EOM_OUTPUT_NOTIFY_NONE,               /**< None notify */
44         EOM_OUTPUT_NOTIFY_ADD,                /**< Output add notify */
45         EOM_OUTPUT_NOTIFY_REMOVE,             /**< Output remove notify */
46         EOM_OUTPUT_NOTIFY_MODE_CHANGED,       /**< Mode change notify */
47         EOM_OUTPUT_NOTIFY_ATTRIBUTE_CHANGED,  /**< Attribute change notify */
48         EOM_OUTPUT_NOTIFY_MAX,
49 } eom_output_notify_type_e;
50
51 #endif /* __EOM_INTERNAL_H__ */