/** * File: demo1_app.c * Author: Li XianJing * Brief: basic class of all widget * * Copyright (c) 2018 - 2018 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 created * */ #include "base/timer.h" #include "base/enums.h" #include "base/button.h" #include "base/check_button.h" #include "base/dialog.h" #include "base/image.h" #include "base/image_manager.h" #include "base/label.h" #include "base/mem.h" #include "base/progress_bar.h" #include "base/utils.h" #include "base/utf8.h" #include "base/window.h" #include "base/slider.h" #include "base/group_box.h" #include "common.c" static ret_t on_show_dialog(void* ctx, event_t* e) { uint32_t code = 0; widget_t* ok = NULL; widget_t* label = NULL; widget_t* cancel = NULL; widget_t* win = dialog_create(NULL, 0, 0, 240, 160); dialog_t* dialog = DIALOG(win); widget_set_text(win, L"Dialog"); ok = button_create(dialog->client, 20, 80, 80, 30); widget_set_text(ok, L"Go"); cancel = button_create(dialog->client, 140, 80, 80, 30); widget_set_text(cancel, L"Cancel"); label = label_create(dialog->client, 10, 30, 200, 30); widget_set_text(label, L"Are you ready!"); widget_on(ok, EVT_CLICK, on_ok, dialog); widget_on(cancel, EVT_CLICK, on_cancel, dialog); widget_to_xml(win); code = dialog_modal(win); log_debug("code=%d\n", code); mem_info_dump(); (void)e; return RET_OK; } ret_t application_init() { widget_t* image = NULL; widget_t* ok = NULL; widget_t* label = NULL; widget_t* cancel = NULL; widget_t* slider = NULL; widget_t* progress_bar = NULL; widget_t* check_button = NULL; widget_t* radio_button = NULL; widget_t* show_dialog = NULL; widget_t* group_box = NULL; widget_t* win = window_create(NULL, 0, 0, 0, 0); ok = button_create(win, 10, 5, 80, 30); widget_set_text(ok, L"Inc"); cancel = button_create(win, 100, 5, 80, 30); widget_set_text(cancel, L"Dec"); show_dialog = button_create(win, 190, 5, 80, 30); widget_set_text(show_dialog, L"Dialog"); image = image_create(win, 10, 230, 100, 100); image_set_image_name(image, "earth"); image = image_create(win, 100, 230, 60, 60); image_set_image_name(image, "earth"); image_set_draw_type(image, IMAGE_DRAW_SCALE); label = label_create(win, 10, 40, 80, 30); widget_set_text(label, L"Left"); widget_use_style(label, "2:left"); label = label_create(win, 100, 40, 80, 30); widget_set_text(label, L"C enter"); #ifdef WITH_STB_FONT widget_use_style(label, "3:center"); #else widget_use_style(label, "5:center-ap"); #endif label = label_create(win, 190, 40, 80, 30); widget_set_text(label, L"Right"); widget_use_style(label, "4:right"); progress_bar = progress_bar_create(win, 10, 80, 168, 20); widget_set_value(progress_bar, 40); // timer_add(on_timer, progress_bar, 1000); #ifndef WITH_STB_FONT progress_bar_set_show_text(progress_bar, TRUE); #endif slider = slider_create(win, 10, 105, 168, 20); widget_set_value(slider, 40); progress_bar = progress_bar_create(win, 260, 80, 20, 118); widget_set_value(progress_bar, 40); progress_bar_set_vertical(progress_bar, TRUE); slider = slider_create(win, 230, 80, 20, 118); widget_set_value(slider, 40); slider_set_vertical(slider, TRUE); widget_on(ok, EVT_CLICK, on_inc, progress_bar); widget_on(cancel, EVT_CLICK, on_dec, progress_bar); widget_on(show_dialog, EVT_CLICK, on_show_dialog, NULL); check_button = check_button_create(win, 10, 150, 80, 30); widget_set_text(check_button, L"Book"); check_button = check_button_create(win, 100, 150, 80, 30); widget_set_text(check_button, L"Food"); radio_button = check_button_create_radio(win, 10, 200, 80, 30); widget_set_text(radio_button, L"Book"); radio_button = check_button_create_radio(win, 100, 200, 80, 30); widget_set_text(radio_button, L"Food"); radio_button = check_button_create_radio(win, 190, 200, 80, 30); widget_set_text(radio_button, L"Pencil"); widget_set_value(radio_button, TRUE); group_box = group_box_create(win, 10, 300, 32 * 3, 32); widget_use_style(group_box, "1:box"); radio_button = check_button_create_radio(group_box, 0, 0, 32, 32); widget_use_style(radio_button, "2:left"); radio_button = check_button_create_radio(group_box, 32, 0, 32, 32); widget_use_style(radio_button, "3:middle"); radio_button = check_button_create_radio(group_box, 64, 0, 32, 32); widget_use_style(radio_button, "4:right"); check_button = check_button_create(win, 108, 300, 32, 32); widget_use_style(check_button, "1:mute"); widget_to_xml(win); return RET_OK; }