Remove obsolete codes
[platform/core/uifw/inputmethod-setting.git] / im_setting_selector / input_method_setting_selector.h
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.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://www.apache.org/licenses/LICENSE-2.0
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 __INPUTMETHOD_SETTING_SELECTOR_H__
18 #define __INPUTMETHOD_SETTING_SELECTOR_H__
19
20 #include <Elementary.h>
21 #include <dlog.h>
22 #include <app.h>
23
24 #ifdef  LOG_TAG
25 #undef  LOG_TAG
26 #endif
27 #define LOG_TAG "INPUTMETHOD_SETTING_SELECTOR"
28
29 enum {
30     APP_STATE_PAUSE = 1,
31     APP_STATE_SERVICE,
32     APP_STATE_RESUME,
33     APP_STATE_TERMINATE,
34 };
35
36 enum {
37     APP_TYPE_SETTING = 1,
38     APP_TYPE_SETTING_NO_ROTATION,
39     APP_TYPE_NORMAL,
40 };
41
42 typedef struct _appdata {
43     Evas_Object *win;
44     Evas_Object *conform;
45     Evas_Object *naviframe;
46     Evas_Object *genlist;
47     Evas_Object *popup;
48
49     int app_state;
50     int app_type;
51 }appdata;
52
53 #endif /*__INPUTMETHOD_SETTING_SELECTOR_H__*/