awtk/demos/common.inc

50 lines
1.1 KiB
PHP
Raw Normal View History

2018-06-11 17:36:54 +08:00
#include "base/timer.h"
2018-03-10 22:01:10 +08:00
static ret_t on_timer(const timer_info_t* timer) {
widget_t* progress_bar = (widget_t*)timer->ctx;
2018-03-18 11:29:31 +08:00
uint8_t value = (PROGRESS_BAR(progress_bar)->value + 5) % 100;
2018-03-10 22:01:10 +08:00
progress_bar_set_value(progress_bar, value);
return RET_REPEAT;
}
static ret_t on_inc(void* ctx, event_t* e) {
widget_t* progress_bar = (widget_t*)ctx;
uint8_t value = (PROGRESS_BAR(progress_bar)->value + 10) % 100;
progress_bar_set_value(progress_bar, value);
(void)e;
return RET_OK;
}
static ret_t on_dec(void* ctx, event_t* e) {
widget_t* progress_bar = (widget_t*)ctx;
uint8_t value = (PROGRESS_BAR(progress_bar)->value + 90) % 100;
progress_bar_set_value(progress_bar, value);
(void)e;
return RET_OK;
}
static ret_t on_ok(void* ctx, event_t* e) {
widget_t* dialog = (widget_t*)ctx;
dialog_quit(dialog, 0);
(void)e;
2018-05-24 11:18:46 +08:00
tk_mem_info_dump();
2018-03-10 22:01:10 +08:00
return RET_OK;
}
2018-04-21 07:43:02 +08:00
static ret_t on_close(void* ctx, event_t* e) {
widget_t* win = (widget_t*)ctx;
(void)e;
return window_close(win);
}
2018-03-10 22:01:10 +08:00
static ret_t on_cancel(void* ctx, event_t* e) {
widget_t* dialog = (widget_t*)ctx;
dialog_quit(dialog, 1);
(void)e;
2018-05-24 11:18:46 +08:00
tk_mem_info_dump();
2018-03-10 22:01:10 +08:00
return RET_OK;
}