Initial upload of minicontrol(tagging)
[apps/home/minicontrol.git] / include / minicontrol-type.h
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *  http://www.tizenopensource.org/license
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef _MINICTRL_TYPE_H_
18 #define _MINICTRL_TYPE_H_
19
20 /**
21  * @defgroup MINICONTROL_LIBRARY_TYPE minicontrol monitor error type
22  * @brief minicontrol library type
23  */
24
25 /**
26  * @addtogroup MINICONTROL_LIBRARY_TYPE
27  * @{
28  */
29
30 /**
31  * @breief Enumeration describing type of events originated by minicontrol provider
32  */
33 typedef enum _minicontrol_action {
34         MINICONTROL_ACTION_START = 0,
35         MINICONTROL_ACTION_STOP,
36         MINICONTROL_ACTION_RESIZE,
37 } minicontrol_action_e;
38
39 /**
40  * @breief Enumeration describing priority of minicontrol provider
41  */
42 typedef enum {
43         MINICONTROL_PRIORITY_TOP = 1000,
44         MINICONTROL_PRIORITY_MIDDLE = 100,
45         MINICONTROL_PRIORITY_LOW = 1,
46 }minicontrol_priority_e;
47
48 #endif /* _MINICTRL_TYPE_H_ */