awtk/demos/demo_ui_app.c
2019-03-02 18:04:29 +08:00

536 lines
16 KiB
C

/**
* File: demo1_app.c
* Author: AWTK Develop Team
* Brief: basic class of all widget
*
* Copyright (c) 2018 - 2019 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:
* ================================================================
* 2018-02-16 Li XianJing <xianjimli@hotmail.com> created
*
*/
#include "awtk.h"
#include "tkc/mem.h"
#include "widgets/label.h"
#include "base/idle.h"
#include "base/timer.h"
#include "widgets/button.h"
#include "widgets/dialog.h"
#include "widgets/image.h"
#include "tkc/utils.h"
#include "widgets/window.h"
#include "tkc/time_now.h"
#include "base/main_loop.h"
#include "base/locale_info.h"
#include "widgets/check_button.h"
#include "widgets/progress_bar.h"
#include "base/image_manager.h"
#include "base/window_manager.h"
#include "base/widget_factory.h"
#include "ui_loader/ui_builder_default.h"
#include "ext_widgets.h"
static void install_click_hander(widget_t* widget);
uint32_t tk_mem_speed_test(void* buffer, uint32_t length, uint32_t* pmemcpy_speed,
uint32_t* pmemset_speed) {
uint32_t i = 0;
uint32_t cost = 0;
uint32_t total_cost = 0;
uint32_t memcpy_speed;
uint32_t memset_speed;
uint32_t max_size = 100 * 1024 * 1024;
uint32_t start = time_now_ms();
uint32_t nr = max_size / length;
for (i = 0; i < nr; i++) {
memset(buffer, 0x00, length);
}
cost = time_now_ms() - start;
total_cost = cost;
if (cost) {
memset_speed = ((max_size / cost) * 1000) / 1024;
}
start = time_now_ms();
for (i = 0; i < nr; i++) {
uint32_t half = length >> 1;
memcpy(buffer, (char*)buffer + half, half);
memcpy((char*)buffer + half, buffer, half);
}
cost = time_now_ms() - start;
total_cost += cost;
if (cost) {
memcpy_speed = ((max_size / cost) * 1000) / 1024;
}
if (pmemset_speed != NULL) {
*pmemset_speed = memset_speed;
}
if (pmemcpy_speed != NULL) {
*pmemcpy_speed = memcpy_speed;
}
return total_cost;
}
static void open_window(const char* name, widget_t* to_close) {
widget_t* win = to_close ? window_open_and_close(name, to_close) : window_open(name);
install_click_hander(win);
if (tk_str_eq(widget_get_type(win), WIDGET_TYPE_DIALOG)) {
dialog_modal(win);
}
}
static ret_t on_paint_linear_gradient(void* ctx, event_t* e) {
paint_event_t* evt = paint_event_cast(e);
canvas_t* c = evt->c;
widget_t* widget = WIDGET(e->target);
vgcanvas_t* vg = canvas_get_vgcanvas(c);
color_t scolor = color_init(0xff, 0, 0, 0xff);
color_t ecolor = color_init(0xff, 0, 0, 0x0);
uint32_t spacing = 10;
uint32_t w = (widget->w - 3 * spacing) >> 1;
uint32_t h = (widget->h - 3 * spacing) >> 1;
rect_t r = rect_init(spacing, spacing, w, h);
vgcanvas_save(vg);
vgcanvas_translate(vg, c->ox, c->oy);
vgcanvas_rect(vg, r.x, r.y, r.w, r.h);
vgcanvas_set_fill_linear_gradient(vg, r.x, r.y, r.x + r.w, r.y + r.h, scolor, ecolor);
vgcanvas_fill(vg);
vgcanvas_translate(vg, r.x + r.w, 0);
vgcanvas_rect(vg, r.x, r.y, r.w, r.h);
ecolor = color_init(0, 0, 0xff, 0xff);
vgcanvas_set_fill_linear_gradient(vg, r.x, r.y, r.x + r.w, r.y, scolor, ecolor);
vgcanvas_fill(vg);
vgcanvas_translate(vg, 0, r.y + r.h);
vgcanvas_rect(vg, r.x, r.y, r.w, r.h);
ecolor = color_init(0, 0xff, 0xff, 0xff);
vgcanvas_set_fill_linear_gradient(vg, r.x, r.y, r.x + r.w, r.y, scolor, ecolor);
vgcanvas_fill(vg);
vgcanvas_translate(vg, -(r.x + r.w), 0);
vgcanvas_rect(vg, r.x, r.y, r.w, r.h);
ecolor = color_init(0, 0, 0xff, 0xff);
vgcanvas_set_fill_linear_gradient(vg, r.x, r.y, r.x, r.y + r.h, scolor, ecolor);
vgcanvas_fill(vg);
vgcanvas_restore(vg);
return RET_OK;
}
static ret_t on_paint_radial_gradient(void* ctx, event_t* e) {
paint_event_t* evt = paint_event_cast(e);
canvas_t* c = evt->c;
widget_t* widget = WIDGET(e->target);
vgcanvas_t* vg = canvas_get_vgcanvas(c);
color_t scolor = color_init(0xff, 0, 0, 0xff);
color_t ecolor = color_init(0xff, 0, 0, 0);
uint32_t spacing = 10;
uint32_t w = (widget->w - 3 * spacing) >> 1;
uint32_t h = (widget->h - 3 * spacing) >> 1;
rect_t r = rect_init(spacing, spacing, w, h);
uint32_t radial = tk_min(w, h) / 2;
vgcanvas_save(vg);
vgcanvas_translate(vg, c->ox, c->oy);
vgcanvas_rect(vg, r.x, r.y, r.w, r.h);
vgcanvas_set_fill_radial_gradient(vg, r.x + w / 2, r.y + h / 2, 0, radial, scolor, ecolor);
vgcanvas_fill(vg);
vgcanvas_translate(vg, r.x + r.w, 0);
vgcanvas_rect(vg, r.x, r.y, r.w, r.h);
ecolor = color_init(0, 0, 0xff, 0xff);
vgcanvas_set_fill_radial_gradient(vg, r.x + w / 2, r.y + h / 2, radial / 4, radial, scolor,
ecolor);
vgcanvas_fill(vg);
vgcanvas_translate(vg, 0, r.y + r.h);
vgcanvas_rect(vg, r.x, r.y, r.w, r.h);
ecolor = color_init(0, 0xff, 0xff, 0xff);
vgcanvas_set_fill_radial_gradient(vg, r.x + w / 2, r.y + h / 2, radial / 3, radial, scolor,
ecolor);
vgcanvas_fill(vg);
vgcanvas_translate(vg, -(r.x + r.w), 0);
vgcanvas_rect(vg, r.x, r.y, r.w, r.h);
ecolor = color_init(0, 0, 0xff, 0xff);
vgcanvas_set_fill_radial_gradient(vg, r.x + w / 2, r.y + h / 2, radial / 2, radial, scolor,
ecolor);
vgcanvas_fill(vg);
vgcanvas_restore(vg);
return RET_OK;
}
static ret_t on_paint_stroke_gradient(void* ctx, event_t* e) {
paint_event_t* evt = paint_event_cast(e);
canvas_t* c = evt->c;
widget_t* widget = WIDGET(e->target);
vgcanvas_t* vg = canvas_get_vgcanvas(c);
color_t scolor = color_init(0xff, 0, 0, 0xff);
color_t ecolor = color_init(0, 0xff, 0, 0xff);
uint32_t r = tk_min(widget->w, widget->h) / 3;
vgcanvas_save(vg);
vgcanvas_translate(vg, c->ox, c->oy);
vgcanvas_set_stroke_linear_gradient(vg, 0, 0, widget->w, widget->h, scolor, ecolor);
vgcanvas_move_to(vg, 0, 0);
vgcanvas_set_line_width(vg, 5);
vgcanvas_line_to(vg, widget->w / 2, widget->h);
vgcanvas_line_to(vg, widget->w / 2, 0);
vgcanvas_line_to(vg, widget->w, widget->h);
vgcanvas_stroke(vg);
vgcanvas_begin_path(vg);
vgcanvas_arc(vg, widget->w / 2, widget->h / 2, r, 0, M_PI * 2, FALSE);
vgcanvas_stroke(vg);
vgcanvas_restore(vg);
return RET_OK;
}
#include "vg_common.inc"
static ret_t on_paint_vgcanvas(void* ctx, event_t* e) {
paint_event_t* evt = paint_event_cast(e);
canvas_t* c = evt->c;
vgcanvas_t* vg = canvas_get_vgcanvas(c);
vgcanvas_save(vg);
vgcanvas_translate(vg, c->ox, c->oy);
vgcanvas_set_line_width(vg, 1);
vgcanvas_set_stroke_color(vg, color_init(0, 0xff, 0, 0xff));
vgcanvas_set_fill_color(vg, color_init(0xff, 0, 0, 0xff));
draw_basic_shapes(vg, FALSE);
vgcanvas_translate(vg, 0, 50);
draw_basic_shapes(vg, TRUE);
vgcanvas_translate(vg, 0, 50);
stroke_lines(vg);
vgcanvas_translate(vg, 0, 50);
draw_image(vg);
vgcanvas_translate(vg, 50, 100);
draw_matrix(vg);
vgcanvas_translate(vg, 0, 100);
draw_text(vg);
vgcanvas_restore(vg);
return RET_OK;
}
static ret_t on_open_window(void* ctx, event_t* e) {
const char* name = ctx;
if (tk_str_eq(name, "toast")) {
dialog_toast("Hello AWTK!\nThis is a toast!", 3000);
} else if (tk_str_eq(name, "info")) {
dialog_info("Hello AWTK!\nThis is info dialog!");
} else if (tk_str_eq(name, "warn")) {
dialog_warn("Hello AWTK!\nDanger!!!");
} else if (tk_str_eq(name, "confirm")) {
dialog_confirm("Hello AWTK!\nAre you sure to close?");
} else {
open_window(name, NULL);
}
(void)e;
return RET_OK;
}
static ret_t on_close(void* ctx, event_t* e) {
widget_t* win = (widget_t*)ctx;
(void)e;
return window_close(win);
}
static ret_t on_quit(void* ctx, event_t* e) {
widget_t* dialog = (widget_t*)ctx;
dialog_quit(dialog, 0);
(void)e;
return RET_OK;
}
static ret_t on_quit_app(void* ctx, event_t* e) {
tk_quit();
return RET_OK;
}
static ret_t on_combo_box_will_change(void* ctx, event_t* e) {
widget_t* combo_box = WIDGET(ctx);
widget_t* win = widget_get_window(combo_box);
widget_t* value = widget_lookup(win, "old_value", TRUE);
widget_set_tr_text(value, combo_box_get_text(combo_box));
return RET_OK;
}
static ret_t on_combo_box_changed(void* ctx, event_t* e) {
widget_t* combo_box = WIDGET(ctx);
widget_t* win = widget_get_window(combo_box);
widget_t* value = widget_lookup(win, "value", TRUE);
widget_set_tr_text(value, combo_box_get_text(combo_box));
return RET_OK;
}
static ret_t on_remove_self(void* ctx, event_t* e) {
widget_t* widget = WIDGET(ctx);
widget_remove_child(widget->parent, widget);
widget_destroy(widget);
return RET_OK;
}
static ret_t on_clone_self(void* ctx, event_t* e) {
widget_t* widget = WIDGET(ctx);
widget_t* clone = widget_clone(widget, widget->parent);
widget_on(clone, EVT_CLICK, on_clone_self, clone);
return RET_OK;
}
static ret_t on_show_fps(void* ctx, event_t* e) {
widget_t* button = WIDGET(ctx);
widget_t* widget = window_manager();
window_manager_t* wm = WINDOW_MANAGER(widget);
widget_invalidate(widget, NULL);
window_manager_set_show_fps(widget, !wm->show_fps);
widget_set_text(button, wm->show_fps ? L"Hide FPS" : L"Show FPS");
return RET_OK;
}
static ret_t on_mem_test(void* ctx, event_t* e) {
char text[32];
uint32_t size = 100 * 1024;
uint32_t memset_speed = 0;
uint32_t memcpy_speed = 0;
widget_t* win = WIDGET(ctx);
widget_t* label_memset = widget_lookup(win, "memset", TRUE);
widget_t* label_cost = widget_lookup(win, "cost", TRUE);
widget_t* label_memcpy = widget_lookup(win, "memcpy", TRUE);
void* buff = TKMEM_ALLOC(size);
uint32_t cost = tk_mem_speed_test(buff, size, &memcpy_speed, &memset_speed);
TKMEM_FREE(buff);
tk_snprintf(text, sizeof(text), "%ums", cost);
widget_set_text_utf8(label_cost, text);
tk_snprintf(text, sizeof(text), "memset: %uK/s", memset_speed);
widget_set_text_utf8(label_memset, text);
tk_snprintf(text, sizeof(text), "memcpy: %uK/s", memcpy_speed);
widget_set_text_utf8(label_memcpy, text);
return RET_OK;
}
static ret_t on_inc(void* ctx, event_t* e) {
widget_t* win = WIDGET(ctx);
widget_t* progress_bar = widget_lookup(win, "bar1", TRUE);
int32_t value = (PROGRESS_BAR(progress_bar)->value + 20);
widget_animate_value_to(progress_bar, tk_min(100, value), 500);
(void)e;
return RET_OK;
}
static ret_t on_dec(void* ctx, event_t* e) {
widget_t* win = WIDGET(ctx);
widget_t* progress_bar = widget_lookup(win, "bar1", TRUE);
int32_t value = PROGRESS_BAR(progress_bar)->value - 20;
widget_animate_value_to(progress_bar, tk_max(0, value), 500);
(void)e;
return RET_OK;
}
static ret_t on_change_locale(void* ctx, event_t* e) {
char country[3];
char language[3];
const char* str = (const char*)ctx;
tk_strncpy(language, str, 2);
tk_strncpy(country, str + 3, 2);
locale_info_change(locale_info(), language, country);
return RET_OK;
}
static ret_t install_one(void* ctx, const void* iter) {
widget_t* widget = WIDGET(iter);
if (widget->name != NULL) {
const char* name = widget->name;
if (strstr(name, "open:") != NULL) {
widget_on(widget, EVT_CLICK, on_open_window, (void*)(name + 5));
widget_on(widget, EVT_LONG_PRESS, on_open_window, (void*)(name + 5));
} else if (tk_str_eq(name, "paint_linear_gradient")) {
widget_on(widget, EVT_PAINT, on_paint_linear_gradient, NULL);
} else if (tk_str_eq(name, "paint_radial_gradient")) {
widget_on(widget, EVT_PAINT, on_paint_radial_gradient, NULL);
} else if (tk_str_eq(name, "paint_stroke_gradient")) {
widget_on(widget, EVT_PAINT, on_paint_stroke_gradient, NULL);
} else if (tk_str_eq(name, "paint_vgcanvas")) {
widget_on(widget, EVT_PAINT, on_paint_vgcanvas, NULL);
} else if (tk_str_eq(name, "memtest")) {
widget_t* win = widget_get_window(widget);
widget_on(widget, EVT_CLICK, on_mem_test, win);
} else if (tk_str_eq(name, "show_fps")) {
widget_on(widget, EVT_CLICK, on_show_fps, widget);
} else if (tk_str_eq(name, "clone_self")) {
widget_on(widget, EVT_CLICK, on_clone_self, widget);
} else if (tk_str_eq(name, "remove_self")) {
widget_on(widget, EVT_CLICK, on_remove_self, widget);
} else if (tk_str_eq(name, "chinese")) {
widget_on(widget, EVT_CLICK, on_change_locale, "zh_CN");
} else if (tk_str_eq(name, "english")) {
widget_on(widget, EVT_CLICK, on_change_locale, "en_US");
} else if (tk_str_eq(name, "inc_value")) {
widget_t* win = widget_get_window(widget);
widget_on(widget, EVT_CLICK, on_inc, win);
} else if (strstr(name, "dec_value") != NULL) {
widget_t* win = widget_get_window(widget);
widget_on(widget, EVT_CLICK, on_dec, win);
} else if (tk_str_eq(name, "close")) {
widget_t* win = widget_get_window(widget);
if (win) {
widget_on(widget, EVT_CLICK, on_close, win);
}
} else if (tk_str_eq(name, "quit")) {
widget_t* win = widget_get_window(widget);
if (win) {
widget_on(widget, EVT_CLICK, on_quit, win);
}
} else if (tk_str_eq(name, "exit")) {
widget_t* win = widget_get_window(widget);
if (win) {
widget_on(widget, EVT_CLICK, on_quit_app, win);
}
}
} else if (tk_str_eq(widget->vt->type, "combo_box")) {
widget_on(widget, EVT_VALUE_CHANGED, on_combo_box_changed, widget);
widget_on(widget, EVT_VALUE_WILL_CHANGE, on_combo_box_will_change, widget);
}
(void)ctx;
return RET_OK;
}
static void install_click_hander(widget_t* widget) {
widget_foreach(widget, install_one, widget);
}
#include "base/idle.h"
#include "base/assets_manager.h"
static uint32_t s_preload_nr = 0;
static const preload_res_t s_preload_res[] = {{ASSET_TYPE_IMAGE, "bg800x480"},
{ASSET_TYPE_IMAGE, "earth"},
{ASSET_TYPE_IMAGE, "dialog_title"},
{ASSET_TYPE_IMAGE, "rgb"},
{ASSET_TYPE_IMAGE, "rgba"}};
static ret_t timer_preload(const timer_info_t* timer) {
char text[64];
widget_t* win = WIDGET(timer->ctx);
uint32_t total = ARRAY_SIZE(s_preload_res);
widget_t* bar = widget_lookup(win, "bar", TRUE);
widget_t* status = widget_lookup(win, "status", TRUE);
if (s_preload_nr == total) {
window_open("system_bar");
open_window("main", win);
return RET_REMOVE;
} else {
uint32_t value = 0;
const preload_res_t* iter = s_preload_res + s_preload_nr++;
switch (iter->type) {
case ASSET_TYPE_IMAGE: {
bitmap_t img;
image_manager_get_bitmap(image_manager(), iter->name, &img);
break;
}
default: {
assets_manager_ref(assets_manager(), iter->type, iter->name);
break;
}
}
value = (s_preload_nr * 100) / total;
tk_snprintf(text, sizeof(text), "Load: %s(%u/%u)", iter->name, s_preload_nr, total);
widget_set_value(bar, value);
widget_set_text_utf8(status, text);
return RET_REPEAT;
}
}
static ret_t show_preload_res_window() {
uint32_t interval = 500 / ARRAY_SIZE(s_preload_res);
widget_t* win = window_open("preload");
timer_add(timer_preload, win, interval);
return RET_OK;
}
static ret_t close_window_on_event(void* ctx, event_t* e) {
window_close(WIDGET(ctx));
return RET_REMOVE;
}
static ret_t on_screen_saver(void* ctx, event_t* e) {
/*please change image_animation to your own window name*/
widget_t* win = window_open("image_animation");
widget_on(win, EVT_POINTER_MOVE, close_window_on_event, win);
widget_on(win, EVT_POINTER_UP, close_window_on_event, win);
widget_on(win, EVT_KEY_UP, close_window_on_event, win);
return RET_OK;
}
ret_t application_init() {
tk_ext_widgets_init();
/*enable screen saver*/
window_manager_set_screen_saver_time(window_manager(), 180 * 1000);
widget_on(window_manager(), EVT_SCREEN_SAVER, on_screen_saver, NULL);
return show_preload_res_window();
}