summaryrefslogtreecommitdiff
path: root/lib/list/ct-list-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/list/ct-list-utils.h')
-rwxr-xr-xlib/list/ct-list-utils.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/lib/list/ct-list-utils.h b/lib/list/ct-list-utils.h
deleted file mode 100755
index 9dd6aa7..0000000
--- a/lib/list/ct-list-utils.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright 2012 Samsung Electronics Co., Ltd
- *
- * Licensed under the Flora License, Version 1.1 (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.
- */
-
-#ifndef __CONTACTS_LIST_UTILS_H__
-#define __CONTACTS_LIST_UTILS_H__
-
-/**
- * Helper-like functionality used in the following managing contacts routines:
- * * add specified contact to group/favorites
- * * create/destroy user-gadgets for calls and messages
- */
-
-int ct_list_parse_bundle(service_h service, ct_list_data* clist_d);
-void ct_list_call(void *data, Evas_Object *obj, void *event_info);
-void ct_list_msg(void *data, Evas_Object *obj, void *event_info);
-void ct_list_popup_hide_cb(void *data, Evas_Object *obj, void *event_info);
-void ct_list_sweep_del_cb(void *data, Evas_Object *obj, void *event_info);
-void ct_list_get_title(ct_list_data *data, int list_op, int id_ab, int id_grp);
-void ct_list_add_contacts_to_group(Evas_Object *win, Evas_Object *navi,
- int cnt);
-
-/**
- * Adds group contacts to database.
- * @param clist_d Contact list data.
- */
-void ct_list_add_contacts_to_group_without_progressbar(ct_list_data *clist_d);
-
-/**
- * The callback function to get the result of contacts_db_update_records_async operation.
- * @param error Error code for batch operation.
- * @param user_data The user data passed from the batch operation.
- */
-void ct_list_add_contacts_to_group_without_progressbar_cb(int err, void *data);
-/**
- * Add checked contacts to group.
- * @param win a window object.
- * @param navi a naviframe object.
- * @param cnt the number of checked contacts.
- */
-void ct_list_add_contacts(Evas_Object *win, Evas_Object *navi, int cnt);
-
-void ct_list_add_contacts_to_favorite(Evas_Object *win, Evas_Object *navi,
- int cnt);
-void ct_list_destroy_child_ug(void *data);
-
-#endif //__CONTACTS_LIST_UTILS_H__