Tizen 2.1 base
[apps/native/ug-bluetooth-efl.git] / include / bt-widget.h
1 /*
2  * Copyright (c) 2012-2013 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://floralicense.org/license/
9  *
10  * Unless required by applicable law or agreed to in writing,
11  * software 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 __BT_WIDGET_H__
18 #define __BT_WIDGET_H__
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 #include "Elementary.h"
25
26 Evas_Object *_bt_create_naviframe(Evas_Object *parent);
27
28 Evas_Object *_bt_create_icon(Evas_Object *parent, char *img);
29
30 Evas_Object *_bt_create_button(Evas_Object *parent, char *style,
31                                 char *text, char *icon_path,
32                                 Evas_Smart_Cb func, void *data);
33
34 Evas_Object *_bt_modify_button(Evas_Object *btn, char *style,
35                                 char *text, char *icon_path);
36
37 Evas_Object *_bt_create_onoff_toggle(Evas_Object *parent,
38                                 Evas_Smart_Cb func, void *data);
39
40 Evas_Object *_bt_create_progressbar(Evas_Object *parent,
41                                 const char *style);
42
43 Evas_Object *_bt_create_genlist(Evas_Object *parent);
44
45 Evas_Object *_bt_create_separator(Evas_Object *parent,
46                                 const char *style);
47
48 Evas_Object *_bt_create_box(Evas_Object *parent);
49
50 Evas_Object *_bt_create_scroller(Evas_Object *parent,
51                                 Evas_Object *ly);
52
53 Evas_Object *_bt_create_controlbar(Evas_Object *parent, char *style);
54
55 Evas_Object *_bt_create_bg(Evas_Object *parent, char *style);
56
57 Evas_Object *_bt_create_layout(Evas_Object *parent, char *edj,
58                                 char *content);
59
60 Evas_Object *_bt_create_conformant(Evas_Object *parent,
61                                    Evas_Object *content);
62
63 Evas_Object *_bt_create_popup(Evas_Object *parent, char *title,
64                                 char *text, void *cb, void *cb_data,
65                                 int timer_val);
66
67 Evas_Object *_bt_create_selectioninfo(Evas_Object *parent, char *text,
68                                         int rotation, void *cb,
69                                         void *cb_data,int timeout);
70
71 void _bt_rotate_selectioninfo(Evas_Object *selectioninfo, int rotation);
72
73 #ifdef __cplusplus
74 }
75 #endif
76 #endif                          /* __BT_WIDGET_H__ */