awtk/demos/demo1_app.c
2018-03-18 17:02:10 +08:00

139 lines
3.9 KiB
C

/**
* File: demo1_app.c
* Author: Li XianJing <xianjimli@hotmail.com>
* Brief: basic class of all widget
*
* Copyright (c) 2018 - 2018 Li XianJing <xianjimli@hotmail.com>
*
* 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 "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 "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");
dialog_set_icon(win, "info");
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);
widget_destroy(win);
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* progress_bar = NULL;
widget_t* check_button = NULL;
widget_t* radio_button = NULL;
widget_t* show_dialog = 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");
label = label_create(win, 10, 40, 80, 30);
widget_set_text(label, L"Left");
label_set_text_align_h(label, ALIGN_H_LEFT);
label = label_create(win, 100, 40, 80, 30);
widget_set_text(label, L"Center");
label_set_text_align_h(label, ALIGN_H_CENTER);
label = label_create(win, 200, 40, 80, 30);
widget_set_text(label, L"Right");
label_set_text_align_h(label, ALIGN_H_RIGHT);
progress_bar = progress_bar_create(win, 10, 80, 168, 30);
widget_set_value(progress_bar, 40);
timer_add(on_timer, progress_bar, 200);
// progress_bar_set_show_text(progress_bar, TRUE);
progress_bar = progress_bar_create(win, 260, 80, 30, 118);
widget_set_value(progress_bar, 40);
progress_bar_set_vertical(progress_bar, 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);
widget_to_xml(win);
return RET_OK;
}