-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpopup_menu.c
54 lines (43 loc) · 1.3 KB
/
popup_menu.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
* File: popup_menu.c
* Author: AWTK Develop Team
* Brief: popup menu
*
* Copyright (c) 2020 - 2025 Guangzhou ZHIYUAN Electronics Co.,Ltd.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* License file for more details.
*
*/
/**
* History:
* ================================================================
* 2020-06-14 Li XianJing <xianjimli@hotmail.com> created
*
*/
#include "awtk.h"
static ret_t on_click(void* ctx, event_t* e) {
const char* win_name = (const char*)ctx;
window_open(win_name);
return RET_OK;
}
ret_t application_init() {
widget_t* win = window_create(NULL, 0, 0, 0, 0);
widget_t* ok = button_create(win, 0, 0, 0, 0);
widget_set_tr_text(ok, "...");
widget_set_self_layout_params(ok, "10", "bottom:30", "40", "30");
widget_on(ok, EVT_CLICK, on_click, "menu_up_left");
ok = button_create(win, 0, 0, 0, 0);
widget_set_tr_text(ok, "...");
widget_set_self_layout_params(ok, "10", "top:30", "40", "30");
widget_on(ok, EVT_CLICK, on_click, "menu_down_left");
widget_layout(win);
return RET_OK;
}
ret_t application_exit() {
log_debug("application_exit\n");
return RET_OK;
}
#include "awtk_main.inc"