/* * Copyright (c) 2014 Samsung Electronics Co., Ltd. * * Licensed under the Flora License, Version 1.0 (the License); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://floralicense.org/license/ * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ /* * setting-datausage.h * * Created on: Aug 22, 2018 * Author: JinWang An */ #ifndef SETTING_MOBILE_NETWORKS_H_ #define SETTING_MOBILE_NETWORKS_H_ #include #include #include enum { SETTING_MOBILE_NETWORKS_MOBILE_DATA, SETTING_MOBILE_NETWORKS_DATA_ROAMING, SETTING_MOBILE_NETWORKS_NETWORK_MODE, SETTING_MOBILE_NETWORKS_NETWORK_OPERATORS, // SETTING_MOBILE_NETWORKS_ACCESS_POINT_NAME }; struct _mobile_networks_menu_item { char *name; int type; void (*func)(void *data, Evas_Object *obj, void *event_info); }; typedef struct mobile_networks_Item_Data { int index; int menu_array_idx; Elm_Object_Item *item; Evas_Object *check; } mobile_networks_Item_Data; void _update_mobile_networks_list(); void _clear_mobile_networks_resource(); Evas_Object *_create_mobile_networks_list(void *data); #endif /* SETTING_MOBILE_NETWORKS_H_ */