Remove trivial unnecessary build dependency
[apps/core/preloaded/lockscreen.git] / inc / events_view.h
1 /*
2  * Copyright (c) 2016 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 #ifndef _LOCKSCREEN_EVENTS_VIEW_H_
18 #define _LOCKSCREEN_EVENTS_VIEW_H_
19
20 #include <Elementary.h>
21
22 #define NOTI_ITEM_STYLE "noti"
23 #define NOTI_ITEM_TEXT "elm.text"
24 #define NOTI_ITEM_TEXT_SUB "elm.text.sub"
25 #define NOTI_ITEM_TEXT_TIME "elm.text.time"
26 #define NOTI_ITEM_ICON "elm.swallow.icon"
27 #define NOTI_ITEM_ICON_SUB "elm.swallow.sub.icon"
28
29 #define WIDGET_ITEM_STYLE "one_icon"
30 #define WIDGET_ITEM_CONTENT "elm.swallow.icon"
31
32 /**
33  * @brief Smart signal emitted when close button is clicked.
34  */
35 #define SIGNAL_CLOSE_BUTTON_CLICKED "btn,close,clicked"
36
37 /**
38  * @brief Creates camera view object.
39  * @note parent should be elementary widget.
40  */
41 Evas_Object *lockscreen_events_view_create(Evas_Object *parent);
42
43 /**
44  * @brief Gets internall genlist object
45  * @note should not be del manually
46  */
47 Evas_Object *lockscreen_events_genlist_get(Evas_Object *events_view);
48
49 #endif
50