[mobile] Fix logic to launch menu-screen at 64bit binary
[apps/native/starter.git] / include / mobile / lock_pwd_util.h
1 /*
2  * Copyright (c) 2000 - 2015 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 __LOCK_PWD_UTIL_H__
18 #define __LOCK_PWD_UTIL_H__
19
20 #define LOCK_PWD_EDJE_FILE "/usr/share/starter/res/edje/lock_pwd.edj"
21 #define LOCK_PWD_BTN_EDJE_FILE "/usr/share/starter/res/edje/lock_btn.edj"
22
23 int lock_pwd_util_win_width_get(void);
24 int lock_pwd_util_win_height_get(void);
25
26 void lock_pwd_util_create(Eina_Bool is_show);
27 void lock_pwd_util_del(void);
28
29 void lock_pwd_util_popup_create(char *title, char *text, Evas_Smart_Cb func, double timeout);
30
31 void lock_pwd_util_view_init(void);
32 void lock_pwd_util_back_key_relased(void);
33 Evas_Object *lock_pwd_util_win_get(void);
34 Eina_Bool lock_pwd_util_win_visible_get(void);
35 void lock_pwd_util_win_show(void);
36 void lock_pwd_util_win_hide(void);
37
38 #endif