Update AUTHORS and boiler plates
[platform/core/uifw/libpui.git] / include / PUI.h
1 /*
2  * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining
5  * a copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial
14  * portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  */
25
26 #ifndef _LIBPUI_H_
27 #define _LIBPUI_H_
28
29 #include "PUI_common.h"
30
31 #define EFL_BETA_API_SUPPORT
32 #include <Ecore_Wl2.h>
33
34 #define PUI_API __attribute__ ((visibility("default")))
35
36 extern PUI_API int PUI_EVENT_ANI_STARTED;
37 extern PUI_API int PUI_EVENT_ANI_STOPPED;
38 extern PUI_API int PUI_EVENT_ANI_PAUSED;
39 extern PUI_API int PUI_EVENT_ANI_READY_TO_START;
40 extern PUI_API int PUI_EVENT_ANI_READY_TO_RESUME;
41 extern PUI_API int PUI_EVENT_ANI_FRAME_DONE;
42 extern PUI_API int PUI_EVENT_ANI_BUFFER_RELEASED;
43
44 struct _PUI_Event_Animation_Status
45 {
46    unsigned int win;
47    pui_ani_status status;
48 };
49
50 #ifdef __cplusplus
51 extern "C" {
52 #endif
53
54 PUI_API int
55 pui_init(void);
56
57 PUI_API int
58 pui_shutdown(void);
59
60 PUI_API pui_h
61 pui_create(Ecore_Wl2_Window *win);
62
63 PUI_API void
64 pui_destroy(pui_h handle);
65
66 PUI_API pui_error_string
67 pui_error_to_string(pui_error e);
68
69 PUI_API pui_ani_h
70 pui_ani_create(pui_h handle, pui_id id);
71
72 PUI_API pui_error
73 pui_ani_control(pui_ani_h handle, pui_ani_cmd cmd, int repeat);
74
75 PUI_API void
76 pui_ani_destroy(pui_ani_h ani_h);
77
78 PUI_API pui_id
79 pui_ani_get_id(pui_ani_h ani_h);
80
81 PUI_API pui_ani_cmd
82 pui_ani_get_cmd(pui_ani_h ani_h);
83
84 PUI_API int
85 pui_ani_get_repeat(pui_ani_h ani_h);
86
87 #ifdef __cplusplus
88 }
89 #endif
90
91 #endif//_LIBPUI_H_