Merge "modified default wallpaper image for Tizen setting" into 2.0_beta
[apps/core/preloaded/settings.git] / setting-shortcut / include / setting-shortcut.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_SHORTCUT_H_
22 #define _SETTING_SHORTCUT_H_
23
24 #include <glib.h>
25 #include <Elementary.h>
26 #include <Ecore_IMF.h>
27
28 #include <glib-object.h>
29
30 #include <setting-common-draw-widget.h>
31 #include <setting-common-view.h>
32 #include <setting-debug.h>
33
34 typedef struct _SettingShortcutUG {
35         ui_gadget_h ug;
36
37         /* add more variables here (move your appdata to here) */
38         Evas *evas;
39         Evas_Object *win_main_layout;
40         Evas_Object *win_get;
41         Evas_Object *ly_main;
42
43         Elm_Object_Item *navi_it;
44         Evas_Object *controllbar;
45         Evas_Object *navi_bar;
46         Evas_Object *sub_layout;
47
48         Evas_Object *scroller;
49
50         Setting_GenGroupItem_Data *acc_negative_color;
51         Setting_GenGroupItem_Data *acc_screen_reader;
52         Setting_GenGroupItem_Data *acc_zoom;
53         Setting_GenGroupItem_Data *acc_led_notification;
54         Setting_GenGroupItem_Data *acc_mono_audio;
55         Setting_GenGroupItem_Data *acc_assistive_light;
56 } SettingShortcutUG;
57
58 extern setting_view setting_view_shortcut_main;
59
60
61
62 #endif