Tizen 2.1 base
[apps/home/call-setting.git] / include / cst-forwarding.h
1 /*
2  * Copyright 2012  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, software
11  * 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 _CST_FORWARDING_H_
18 #define _CST_FORWARDING_H_
19
20 #include <Elementary.h>
21
22 enum {
23         CST_CF_WAIT_TIME_5_SEC = 5,
24         CST_CF_WAIT_TIME_10_SEC = 10,
25         CST_CF_WAIT_TIME_15_SEC = 15,
26         CST_CF_WAIT_TIME_20_SEC = 20,
27         CST_CF_WAIT_TIME_25_SEC = 25,
28         CST_CF_WAIT_TIME_30_SEC = 30,
29
30         CST_CF_WAIT_TIME_NONE,
31 };
32
33 enum {
34         CST_CF_WAIT_TIME_IDX_5_SEC = 0,
35         CST_CF_WAIT_TIME_IDX_10_SEC,
36         CST_CF_WAIT_TIME_IDX_15_SEC,
37         CST_CF_WAIT_TIME_IDX_20_SEC,
38         CST_CF_WAIT_TIME_IDX_25_SEC,
39         CST_CF_WAIT_TIME_IDX_30_SEC,
40
41         CST_CF_WAIT_TIME_IDX_NONE,
42 };
43
44 void _cst_on_click_call_forwarding(void *data, Evas *evas, Evas_Object *obj, void *event_info);
45 void _cst_call_forwarding_input_panel_event_callback(void *data, Ecore_IMF_Context *imf_context, int value);
46 void _cst_call_forward_entry_changed_cb(void *data, Evas_Object *obj, void *event_info);
47 void _cst_destroy_call_forwarding(void);
48
49 #endif  /* _CST_FORWARDING_H_ */
50