Refactor appcore-widget using appcore_multiwindow_base
[platform/core/appfw/appcore-widget.git] / include / widget_app_efl.h
1 /*
2  * Copyright (c) 2015 - 2017 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
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
18 #ifndef __TIZEN_APPFW_WIDGET_APP_EFL_H__
19 #define __TIZEN_APPFW_WIDGET_APP_EFL_H__
20
21 #include <widget_app.h>
22 #include <Evas.h>
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27
28
29 /**
30  * @addtogroup CAPI_WIDGET_APP_MODULE
31  * @{
32  */
33
34 /**
35  * @brief Gets an Evas object for the widget.
36  * @since_tizen 2.3.1
37  * @param[in] context The context for widget instance
38  * @param[out] win evas object for window
39  * @return 0 on success,
40  *                      otherwise a negative error value
41  * @retval #WIDGET_ERROR_NONE Successful
42  * @retval #WIDGET_ERROR_INVALID_PARAMETER Invalid parameter
43  * @retval #WIDGET_ERROR_FAULT Failed to make evas object
44  * @retval #WIDGET_ERROR_NOT_SUPPORTED Not supported
45  */
46 int widget_app_get_elm_win(widget_context_h context, Evas_Object **win);
47
48
49 /**
50  * @}
51  */
52
53
54 #ifdef __cplusplus
55 }
56 #endif
57
58 #endif /* __TIZEN_APPFW_WIDGET_APP_EFL_H__ */
59