[Feature] use system-info api to get build info .
[apps/core/preloaded/settings.git] / setting-about / include / setting-about.h
1 /*
2  * setting
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd.
5  *
6  * Contact: MyoungJune Park <mj2004.park@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 #ifndef __SETTING_ABOUT_H__
22 #define __SETTING_ABOUT_H__
23
24 #include <stdio.h>
25 #include <Elementary.h>
26 #include <ITapiSim.h>
27
28 #include <glib-object.h>
29
30 // #include <mobileap_lib.h>
31
32 #include <setting-common-draw-widget.h>
33 #include <setting-common-view.h>
34
35 #include <TapiUtility.h>
36 #include <tapi_common.h>
37 #include <ITapiSim.h>
38
39 #define MAX_DISPLAY_STR_LEN_ON_PHONE_INFO       256
40
41 #define SETTING_ABOUT_PROGRESSBAR_TIMEOUT 10
42 //#define SETTING_ABOUT_MOBILE_AP_TURNED_OFF "Mobile hotspot will be turned off."
43 #define SETTING_ABOUT_MOBILE_AP_TURNED_OFF "Wi-Fi hotspot will be turned off if Device name is changed."
44
45 #define SETTING_ABOUT_MY_NUMBERS_LEN 3
46 #define SETTING_ABOUT_WIFI_MAC_STR_LEN 17
47 #define SETTING_ABOUT_DEFAULT_DEVICE_NAME       "Redwood"
48
49 typedef struct _SettingAboutUG SettingAboutUG;
50
51 /**
52  * Setting About UG context
53  * all UG function has void* as an agument. this is casted back to SettingAboutUG
54  * and the functions access app context.
55  */
56 struct _SettingAboutUG {
57         ui_gadget_h ug;
58         TapiHandle *handle;
59         bool tapi_responsed;
60
61         setting_view *view_to_load;
62
63         Elm_Genlist_Item_Class itc_1text;
64         Elm_Genlist_Item_Class itc_1icon;
65         Elm_Genlist_Item_Class itc_2text_2;
66         Elm_Genlist_Item_Class itc_seperator;
67         Elm_Genlist_Item_Class itc_group_item;
68         Elm_Genlist_Item_Class itc_2text_3_parent;
69         Elm_Genlist_Item_Class itc_1icon_1text_sub;
70         Elm_Genlist_Item_Class itc_help_style;
71
72         /* add more variables here (move your appdata to here) */
73         Evas *evas;
74         Evas_Object *win_main_layout;
75         Evas_Object *win_get;
76
77         ui_gadget_h ug_loading;
78
79         Evas_Object *navi_bar;
80         Evas_Object *ly_main;
81         Evas_Object *genlsit;
82         Elm_Object_Item *navi_item;
83
84         Ecore_Timer *update_timer;
85         Setting_GenGroupItem_Data *item_dev_name;
86         Setting_GenGroupItem_Data *item_data_cpu;
87         Setting_GenGroupItem_Data *item_data_battery;
88         Setting_GenGroupItem_Data *item_data_bt;
89         Setting_GenGroupItem_Data *item_data_wifi;
90         Evas_Object *popup;
91         bool empty_flag;
92         //char *my_numbers[SETTING_ABOUT_MY_NUMBERS_LEN];
93         TelSimMsisdnList_t my_numbers;
94         bool popup_showed_flag; /** if popup has been showed, do not show again*/
95 //      MOBILE_AP_HANDLE mobile_ap_handle;
96 };
97
98 extern setting_view setting_view_about_main;
99 extern int setting_about_generate_genlist(void *data);
100 void setting_about_layout_ug_cb(ui_gadget_h ug, enum ug_mode mode, void *priv);
101 void setting_about_main_exp_cb(void *data, Evas_Object *obj, void *event_info);
102
103 #endif                          /* __SETTING_ABOUT_H__ */