2018-03-11 11:26:12 +08:00
|
|
|
/**
|
2019-08-08 10:53:54 +08:00
|
|
|
* File: preview_ui.c
|
2018-05-15 09:31:58 +08:00
|
|
|
* Author: AWTK Develop Team
|
2019-08-08 10:53:54 +08:00
|
|
|
* Brief: preview ui
|
2018-03-11 11:26:12 +08:00
|
|
|
*
|
2019-01-07 10:58:36 +08:00
|
|
|
* Copyright (c) 2018 - 2019 Guangzhou ZHIYUAN Electronics Co.,Ltd.
|
2018-03-11 11:26:12 +08:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-08-05 18:56:46 +08:00
|
|
|
#include "awtk.h"
|
2018-12-15 17:22:05 +08:00
|
|
|
#include "tkc/fs.h"
|
|
|
|
#include "tkc/mem.h"
|
|
|
|
#include "tkc/utils.h"
|
2018-10-10 17:30:59 +08:00
|
|
|
#include "base/timer.h"
|
2018-08-24 07:45:37 +08:00
|
|
|
#include "assets.h"
|
2018-08-07 11:29:55 +08:00
|
|
|
|
2018-03-11 11:26:12 +08:00
|
|
|
#include "ui_loader/ui_loader_xml.h"
|
2018-06-08 17:03:06 +08:00
|
|
|
#include "ui_loader/ui_loader_default.h"
|
2018-03-11 11:26:12 +08:00
|
|
|
#include "ui_loader/ui_builder_default.h"
|
|
|
|
|
2019-05-31 11:05:36 +08:00
|
|
|
static ret_t refresh_in_timer(const timer_info_t* info) {
|
2018-10-10 17:30:59 +08:00
|
|
|
widget_t* widget = WIDGET(info->ctx);
|
|
|
|
|
|
|
|
widget_invalidate(widget, NULL);
|
|
|
|
|
|
|
|
return RET_REPEAT;
|
|
|
|
}
|
|
|
|
|
2018-06-08 17:03:06 +08:00
|
|
|
widget_t* preview_ui(const char* filename) {
|
2018-08-29 14:21:06 +08:00
|
|
|
str_t s;
|
2018-03-11 11:26:12 +08:00
|
|
|
uint32_t size = 0;
|
2018-12-26 09:14:02 +08:00
|
|
|
char name[TK_NAME_LEN + 1];
|
2018-06-15 19:12:34 +08:00
|
|
|
ui_builder_t* builder = NULL;
|
2018-08-29 14:21:06 +08:00
|
|
|
uint8_t* content = NULL;
|
|
|
|
bool_t is_bin = strstr(filename, ".bin") != NULL;
|
|
|
|
ui_loader_t* loader = is_bin ? default_ui_loader() : xml_ui_loader();
|
|
|
|
|
|
|
|
str_init(&s, 0);
|
|
|
|
if (is_bin) {
|
|
|
|
content = (uint8_t*)file_read(filename, &size);
|
|
|
|
} else {
|
|
|
|
xml_file_expand_read(filename, &s);
|
|
|
|
content = (uint8_t*)s.str;
|
|
|
|
size = s.size;
|
|
|
|
}
|
2018-06-08 17:03:06 +08:00
|
|
|
|
2018-12-26 09:14:02 +08:00
|
|
|
filename_to_name(filename, name, TK_NAME_LEN);
|
2018-06-15 19:12:34 +08:00
|
|
|
builder = ui_builder_default(name);
|
2018-03-11 11:26:12 +08:00
|
|
|
printf("preview %s\n", filename);
|
2018-03-11 14:21:19 +08:00
|
|
|
return_value_if_fail(content != NULL, NULL);
|
2018-03-11 11:26:12 +08:00
|
|
|
ui_loader_load(loader, content, size, builder);
|
2018-08-29 14:21:06 +08:00
|
|
|
|
2019-05-31 11:05:36 +08:00
|
|
|
if (builder->root == NULL) {
|
|
|
|
builder->root = label_create(NULL, 10, 10, 100, 30);
|
|
|
|
widget_set_text_utf8(builder->root, "not found ui file!");
|
|
|
|
}
|
|
|
|
|
2019-04-12 17:21:28 +08:00
|
|
|
if (builder->root != NULL && !(builder->root->vt->is_window)) {
|
|
|
|
widget_t* win = window_create(NULL, 0, 0, 0, 0);
|
|
|
|
widget_add_child(win, builder->root);
|
|
|
|
widget_layout(win);
|
2019-05-31 11:05:36 +08:00
|
|
|
|
|
|
|
timer_add(refresh_in_timer, builder->root, 1000);
|
2019-04-12 17:21:28 +08:00
|
|
|
}
|
|
|
|
|
2018-08-29 14:21:06 +08:00
|
|
|
if (is_bin) {
|
|
|
|
TKMEM_FREE(content);
|
|
|
|
} else {
|
|
|
|
str_reset(&s);
|
|
|
|
}
|
2018-03-11 11:26:12 +08:00
|
|
|
|
|
|
|
return builder->root;
|
|
|
|
}
|
|
|
|
|
2018-12-15 17:22:05 +08:00
|
|
|
#include "tkc/path.h"
|
2018-08-28 16:10:20 +08:00
|
|
|
|
2018-08-24 07:45:37 +08:00
|
|
|
#define DEFAULT_UI "./demos/assets/raw/ui/main.xml"
|
2018-03-11 11:26:12 +08:00
|
|
|
#if defined(WIN32)
|
|
|
|
#include <windows.h>
|
2018-08-28 16:10:20 +08:00
|
|
|
|
|
|
|
#define MAX_ARGV 5
|
|
|
|
void command_line_to_argv(char* lpcmdline, const char* argv[MAX_ARGV], int32_t* argc) {
|
|
|
|
int32_t i = 1;
|
|
|
|
char* p = lpcmdline;
|
|
|
|
|
|
|
|
argv[0] = "preview.exe";
|
|
|
|
for (i = 1; i < MAX_ARGV; i++) {
|
|
|
|
argv[i] = p;
|
|
|
|
p = strchr(p, ' ');
|
|
|
|
if (p == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (*p == ' ') {
|
|
|
|
*p++ = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*argc = i + 1;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-11 11:26:12 +08:00
|
|
|
int WINAPI WinMain(HINSTANCE hinstance, HINSTANCE hprevinstance, LPSTR lpcmdline, int ncmdshow) {
|
2018-08-28 16:10:20 +08:00
|
|
|
str_t str;
|
2018-03-11 11:26:12 +08:00
|
|
|
int argc = 1;
|
2018-08-28 16:10:20 +08:00
|
|
|
char* argv[MAX_ARGV];
|
|
|
|
str_init(&str, 1024);
|
|
|
|
str_set(&str, lpcmdline);
|
|
|
|
command_line_to_argv(str.str, argv, &argc);
|
2019-05-21 16:23:10 +08:00
|
|
|
#if defined(WIN32)
|
|
|
|
#if !defined(NDEBUG)
|
|
|
|
{
|
|
|
|
AllocConsole();
|
|
|
|
FILE* fp = NULL;
|
|
|
|
freopen_s(&fp, "CONOUT$", "w+t", stdout);
|
|
|
|
}
|
|
|
|
#endif /*NDEBUG*/
|
|
|
|
#endif /*WIN32*/
|
2018-03-11 11:26:12 +08:00
|
|
|
#else
|
2018-12-15 17:22:05 +08:00
|
|
|
#include "tkc/mem.h"
|
2018-03-11 11:26:12 +08:00
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
#endif
|
2018-08-28 16:10:20 +08:00
|
|
|
int32_t w = 320;
|
|
|
|
int32_t h = 480;
|
|
|
|
const char* filename = DEFAULT_UI;
|
2019-07-24 11:05:34 +08:00
|
|
|
char res_root[MAX_PATH + 1];
|
|
|
|
memset(res_root, 0x00, sizeof(res_root));
|
2018-03-11 11:26:12 +08:00
|
|
|
|
2018-08-28 16:10:20 +08:00
|
|
|
if (argc > 1) {
|
|
|
|
filename = argv[1];
|
|
|
|
} else {
|
2019-07-24 11:05:34 +08:00
|
|
|
log_debug("%s ui_file [w] [h] [res root]\n", argv[0]);
|
2018-08-28 16:10:20 +08:00
|
|
|
#ifdef WIN32
|
|
|
|
assert(!"no ui file provided");
|
|
|
|
#endif /*WIN32*/
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 2) {
|
|
|
|
int32_t ww = atoi(argv[2]);
|
|
|
|
if (ww > 0) {
|
|
|
|
w = ww;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 3) {
|
|
|
|
int32_t hh = atoi(argv[3]);
|
|
|
|
if (h > 0) {
|
|
|
|
h = hh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-24 11:05:34 +08:00
|
|
|
if (argc > 5) {
|
|
|
|
memcpy(res_root, argv[4], strlen(argv[4]));
|
|
|
|
} else {
|
|
|
|
char* p = NULL;
|
|
|
|
memcpy(res_root, filename, strlen(filename));
|
|
|
|
p = strstr(res_root, "assets");
|
|
|
|
if (p != NULL) {
|
|
|
|
*p = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log_debug("%s %s %d %d %s\n", argv[0], argv[1], w, h, res_root);
|
|
|
|
tk_init(w, h, APP_SIMULATOR, NULL, res_root);
|
2019-07-01 17:40:15 +08:00
|
|
|
#ifdef WITH_FS_RES
|
|
|
|
system_info_set_default_font(system_info(), "default_full");
|
|
|
|
#endif /*WITH_FS_RES*/
|
2018-08-28 16:10:20 +08:00
|
|
|
|
2018-08-24 07:45:37 +08:00
|
|
|
assets_init();
|
2018-08-07 11:29:55 +08:00
|
|
|
tk_ext_widgets_init();
|
2018-07-28 19:45:28 +08:00
|
|
|
|
2018-08-17 18:11:08 +08:00
|
|
|
preview_ui(filename);
|
2018-04-27 11:23:09 +08:00
|
|
|
tk_run();
|
2018-03-11 11:26:12 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|