[TSAM-11694] Merge client list into main view
[apps/native/ug-mobile-ap.git] / include / mobile_hotspot.h
1 /*
2 * ug-mobile-ap
3 *
4 * Copyright 2012  Samsung Electronics Co., Ltd
5
6 * Licensed under the Flora License, Version 1.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9
10 * http://www.tizenopensource.org/license
11
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 */
19
20 #ifndef __MOBILE_HOTSPOT_H__
21 #define __MOBILE_HOTSPOT_H__
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 #if !defined(PACKAGE)
28 #define PACKAGE "ug-setting-mobileap-efl"
29 #endif
30
31 #if !defined(LOCALEDIR)
32 #define LOCALEDIR "/usr/apps/ug-setting-mobileap-efl/res/locale"
33 #endif
34
35 #if !defined(EDJDIR)
36 #define EDJDIR "/usr/apps/ug-setting-mobileap-efl/res/edje/ug-setting-mobileap-efl"
37 #endif
38
39 #if !defined(PREFIX)
40 #define PREFIX "/usr/ug"
41 #endif
42
43 #define TETHERING_EDJ "tethering.edj"
44 #define POPUP_EDJ_PATH EDJDIR"/"TETHERING_EDJ
45
46 #include <sys/time.h>
47 #include <glib.h>
48 #include <Elementary.h>
49 #include <vconf.h>
50 #include <ui-gadget-module.h>
51 #include <wifi.h>
52 #include <net_connection.h>
53 #include <tethering.h>
54 #include <dlog.h>
55 #include <notification.h>
56
57 #define MH_TEXT_DOMAIN                          PACKAGE
58 #define MH_LOCALEDIR                            LOCALEDIR
59
60
61 #define VCONF_MOBILE_AP_PREV_WIFI_STATUS        "db/private/libug-setting-mobileap-efl/prev_wifi_status"
62 #define VCONF_MOBILE_AP_WIFI_POPUP_CHECKBOX_STATUS "file/private/libug-setting-mobileap-efl/wifi_popup_check_box_status"
63 #define VCONF_MOBILE_AP_BT_POPUP_CHECKBOX_STATUS "file/private/libug-setting-mobileap-efl/bt_popup_check_box_status"
64 #define VCONF_MOBILE_AP_USB_POPUP_CHECKBOX_STATUS "file/private/libug-setting-mobileap-efl/usb_popup_check_box_status"
65 #define VCONF_MOBILE_AP_CONNECT_USB_POPUP_STATUS "memory/private/libug-setting-mobileap-efl/trying_usb_tethering"
66 #define COLOR_TABLE "/usr/apps/ug-setting-mobileap-efl/shared/res/tables/ug-setting-mobileap-efl_ChangeableColorInfo.xml"
67 #define FONT_TABLE "/usr/apps/ug-setting-mobileap-efl/shared/res/tables/ug-setting-mobileap-efl_fontInfoTable.xml"
68
69 #define VCONF_KEY_MOBILEAP_SYSPOPUP_RESPONSE "memory/private/libug-setting-mobileap-efl/mobileap_syspopup_user_response"
70
71 #ifdef LOG_TAG
72 #undef LOG_TAG
73 #endif
74
75 #define LOG_TAG                         "UG_SETTING_MOBILEAP_EFL"
76
77 #define DBG(fmt, args...)               LOGD(fmt, ##args)
78 #define INFO(fmt, args...)              LOGI(fmt, ##args)
79 #define ERR(fmt, args...)               LOGE(fmt, ##args)
80 #define SDBG(fmt, args...)              SECURE_LOGD(fmt, ##args)
81 #define SERR(fmt, args...)              SECURE_LOGE(fmt, ##args)
82
83 #define __MOBILE_AP_FUNC_ENTER__        DBG("Entering: +\n")
84 #define __MOBILE_AP_FUNC_EXIT__         DBG("Exit: -\n")
85
86 #define TETHERING_IMAGES_EDJ            "tethering_images.edj"
87 #define WIFI_ICON                       "A01-5_device_WIFI.png"
88 #define BT_ICON                         "A01-5_device_bluetooth.png"
89 #define USB_ICON                        "A01-5_device_USB_icon.png"
90
91 #define DEFAULT_ICON_SIZE       40
92 #define DEVICE_NAME_LENGTH_MAX          32
93 #define WIFI_PASSPHRASE_LENGTH_MIN      8
94 #define WIFI_PASSPHRASE_LENGTH_MAX      63
95 #define MH_LABEL_LENGTH_MAX             1024
96
97 #define _EDJ(obj)                       elm_layout_edje_get(obj)
98
99 #define TETHERING_WIFI_MAX_CONNECTED_STA        10
100 #define TETHERING_BT_MAX_CONNECTED_STA          4
101 #define MAX_CONNECTED_STA 15
102
103 /* This is from tethering_private.h */
104 #define TETHERING_TYPE_MAX              4       /**< All, USB, Wi-Fi, BT */
105
106 typedef enum {
107         MH_POPUP_NONE,
108         MH_POPUP_WIFI_ON_CHECKBOX,
109         MH_POPUP_BT_ON_CHECKBOX,
110         MH_POPUP_USB_ON_CHECKBOX,
111         MH_POPUP_WIFI_AP_OFF,
112         MH_POPUP_NO_SIM,
113         MH_POPUP_FLIGHT_MODE,
114         MH_POPUP_MOBILE_DATA_OFF,
115         MH_POPUP_CANCEL_MOBILE_DATA_ON,
116         MH_POPUP_NETWORK_OUT_OF_RANGE,
117         MH_POPUP_WIFI_OFF,
118         MH_POPUP_TETH_ENABLING_FAILED,
119         MH_POPUP_SPECIAL_LETTER_WARN,
120         MH_POPUP_MAX
121 } mh_popup_type_e;
122
123 typedef enum {
124         MH_STATE_NONE,
125         MH_STATE_PROCESS,
126         MH_STATE_MAX
127 } mh_state_e;
128
129 typedef struct ap_app_main {
130         Evas_Object             *genlist;
131         Evas_Object             *back_btn;
132         Evas_Object             *check_popup_ly;
133
134         Elm_Genlist_Item_Class  *wifi_itc;
135         Elm_Genlist_Item_Class  *setup_itc;
136         Elm_Genlist_Item_Class  *bt_itc;
137         Elm_Genlist_Item_Class  *usb_itc;
138         Elm_Genlist_Item_Class  *help_itc;
139         Elm_Genlist_Item_Class  *device_itc;
140         Elm_Genlist_Item_Class  *device0_itc;
141         Elm_Genlist_Item_Class  *popup_descp_itc;
142         Elm_Genlist_Item_Class  *popup_check_itc;
143         Elm_Genlist_Item_Class  *dev_itc[TETHERING_TYPE_MAX];
144
145         Elm_Object_Item         *sp_item[4];
146         Elm_Object_Item         *help_sp_item;
147         Elm_Object_Item         *wifi_item;
148         Elm_Object_Item         *setup_item;
149         Elm_Object_Item         *bt_item;
150         Elm_Object_Item         *usb_item;
151         Elm_Object_Item         *device_item;
152         Elm_Object_Item         *help_item;
153         Elm_Object_Item         *popup_descp_item;
154         Elm_Object_Item         *popup_check_item;
155         Elm_Object_Item         *dev_item;
156         Elm_Object_Item         *station_items[MAX_CONNECTED_STA];
157
158         int no_of_clients;
159 #ifdef TETHERING_DATA_USAGE_SUPPORT
160         Elm_Genlist_Item_Class  *usage_itc;
161         Elm_Object_Item         *usage_item;
162 #endif
163
164         int             hotspot_mode;
165         int             wifi_state;
166         int             bt_state;
167         int             usb_state;
168 } mh_main_view_t;
169
170 typedef struct {
171         Elm_Object_Item         *navi_it;
172         Evas_Object                     *genlist;
173         Evas_Object                     *rename_genlist;
174         Evas_Object             *hide_btn;
175         Evas_Object             *security_btn;
176         Evas_Object             *pw_entry;
177         Evas_Object             *popup_passphrase;
178         Evas_Object             *save_button;
179         Evas_Object             *cancel_button;
180
181         Elm_Genlist_Item_Class          *hide_itc;
182         Elm_Genlist_Item_Class          *security_itc;
183         Elm_Genlist_Item_Class          *pw_itc;
184         Elm_Genlist_Item_Class          *check_box_itc;
185         Elm_Genlist_Item_Class          *name_itc;
186         Elm_Genlist_Item_Class          *rename_entry_itc;
187         Elm_Genlist_Item_Class          *rename_descp_itc;
188
189         Elm_Object_Item         *sp_item[2];
190         Elm_Object_Item         *hide_item;
191         Elm_Object_Item         *security_item;
192         Elm_Object_Item         *pw_item;
193         Elm_Object_Item         *check_box_item;
194         Elm_Object_Item         *name_item;
195         Elm_Object_Item         *pw_guide_item;
196         Elm_Object_Item         *rename_entry_item;
197         Elm_Object_Item         *rename_descp_item;
198
199         bool    visibility;
200         bool    visibility_new;
201         tethering_wifi_security_type_e  security_type;
202         tethering_wifi_security_type_e  security_type_new;
203
204         char    device_name[DEVICE_NAME_LENGTH_MAX + 1];
205         char    wifi_passphrase[WIFI_PASSPHRASE_LENGTH_MAX + 1];
206         char    wifi_passphrase_new[WIFI_PASSPHRASE_LENGTH_MAX + 1];
207 } mh_wifi_setting_view_t;
208
209 typedef struct {
210         bool    is_updated;
211         unsigned long long      pdp_total_sent;
212         unsigned long long      pdp_total_receive;
213 } mh_data_usage_t;
214
215 typedef struct {
216         void    *gadget;
217         GSList  *client_list;
218         bool    is_foreground;
219
220         tethering_h             handle;
221         connection_h    conn_handle;
222         tethering_type_e        type;
223
224         Evas_Object             *win;
225         Evas_Object             *layout;
226         Evas_Object             *bg;
227         Evas_Object             *naviframe;
228         Evas_Object             *popup_checkbox;
229         Evas_Object             *popup;
230         Evas_Object             *rename_entry;
231         Ecore_Timer             *update_statistics_handle;
232         Ecore_Timer             *update_conn_time_handle;
233         Evas_Object             *ctxpopup;
234         Evas_Object             *rename_popup;
235         Evas_Object             *rename_button;
236         Elm_Object_Item         *navi_item;
237
238         int             ps_recheck_timer_id;
239         int             is_wifi_teth_enabling;
240         int             is_usb_teth_enabling;
241         int             is_bt_teth_enabling;
242
243         mh_main_view_t  main;
244         mh_wifi_setting_view_t  setup;
245         mh_data_usage_t         data_statistics;
246 } mh_appdata_t;
247
248 typedef struct {
249         mh_appdata_t    *ad;
250         ui_gadget_h             ug;
251 } mh_ugdata_t;
252
253 #ifdef __cplusplus
254 }
255 #endif
256 #endif /* __MOBILE_HOTSPOT_H__ */