Code sync
[apps/native/starter.git] / lock-setting / lockapp-setting / include / openlock-setting-main.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://www.tizenopensource.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
18
19 #ifndef __OPENLOCK_SETTING_MAIN_H__
20 #define __OPENLOCK_SETTING_MAIN_H__
21
22 #include <Elementary.h>
23 #include "openlock-setting.h"
24
25 typedef struct _openlock_setting_appdata openlock_setting_appdata;
26
27 struct _openlock_setting_appdata {
28         openlock_setting_appdata *prev;
29         openlock_setting_appdata *next;
30
31         char *pkg_name;
32         char *app_name;
33         int index;
34
35         Evas_Object *radio;
36         Evas_Object *entry;
37         Evas_Object *editfield_layout;
38         Evas_Object *popup;
39         /* for pw */
40         Evas_Object *ly;
41         Evas_Object *genlist;
42         int count;
43         openlock_ug_data *openlock_data;
44 };
45
46 void openlock_setting_main_create_view(openlock_ug_data * openlock_data);
47
48 #endif                          /* __OPENLOCK_SETTING_MAIN_H__ */