mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-29 18:48:09 +08:00
update demoui
This commit is contained in:
parent
765ab2b867
commit
3689f6d429
@ -28,6 +28,10 @@
|
||||
#include "base/font_manager.h"
|
||||
#include "base/event_recorder_player.h"
|
||||
|
||||
#define SCROLL_BAR_H_WIDGT_NAME "bar_h"
|
||||
#define SCROLL_BAR_V_WIDGT_NAME "bar_v"
|
||||
#define SCROLL_GRID_SCROLL_WIDGT_NAME "grid_scroll_view"
|
||||
|
||||
static ret_t on_clone_tab(void* ctx, event_t* e);
|
||||
static ret_t widget_clone_tab(widget_t* widget);
|
||||
static void install_click_hander(widget_t* widget);
|
||||
@ -830,6 +834,49 @@ static ret_t on_action_list(void* ctx, event_t* e) {
|
||||
return RET_OK;
|
||||
}
|
||||
|
||||
static int32_t scroll_bar_value_to_scroll_view_offset_y(scroll_bar_t* scroll_bar,
|
||||
scroll_view_t* sv) {
|
||||
int32_t range = 0;
|
||||
float_t percent = 0;
|
||||
range = scroll_bar->virtual_size;
|
||||
percent = range > 0 ? (float_t)scroll_bar->value / (float_t)(range) : 0;
|
||||
return percent * (sv->virtual_h - sv->widget.h);
|
||||
}
|
||||
|
||||
static int32_t scroll_bar_value_to_scroll_view_offset_x(scroll_bar_t* scroll_bar,
|
||||
scroll_view_t* sv) {
|
||||
int32_t range = 0;
|
||||
float_t percent = 0;
|
||||
range = scroll_bar->virtual_size;
|
||||
percent = range > 0 ? (float_t)scroll_bar->value / (float_t)(range) : 0;
|
||||
return percent * (sv->virtual_w - sv->widget.w);
|
||||
}
|
||||
|
||||
static ret_t scroll_bar_on_value_changed(void* ctx, event_t* e) {
|
||||
widget_t* tmp = WIDGET(ctx);
|
||||
widget_t* parent = tmp->parent;
|
||||
scroll_view_t* sv = SCROLL_VIEW(widget_lookup(parent, SCROLL_GRID_SCROLL_WIDGT_NAME, FALSE));
|
||||
scroll_bar_t* scroll_bar_h = SCROLL_BAR(widget_lookup(parent, SCROLL_BAR_H_WIDGT_NAME, FALSE));
|
||||
scroll_bar_t* scroll_bar_v = SCROLL_BAR(widget_lookup(parent, SCROLL_BAR_V_WIDGT_NAME, FALSE));
|
||||
|
||||
int32_t offset_x = scroll_bar_value_to_scroll_view_offset_x(scroll_bar_h, sv);
|
||||
int32_t offset_y = scroll_bar_value_to_scroll_view_offset_y(scroll_bar_v, sv);
|
||||
|
||||
scroll_view_set_offset(WIDGET(sv), offset_x, offset_y);
|
||||
|
||||
return RET_OK;
|
||||
}
|
||||
|
||||
static ret_t on_idle_scroll_view_set_virtual_wh(const idle_info_t* idle) {
|
||||
scroll_view_t* sv = SCROLL_VIEW(idle->ctx);
|
||||
widget_t* parent = sv->widget.parent;
|
||||
widget_t* bar_h = widget_lookup(parent, SCROLL_BAR_H_WIDGT_NAME, FALSE);
|
||||
widget_t* bar_v = widget_lookup(parent, SCROLL_BAR_V_WIDGT_NAME, FALSE);
|
||||
scroll_bar_set_params(bar_h, sv->virtual_w, 10);
|
||||
scroll_bar_set_params(bar_v, sv->virtual_h, 10);
|
||||
return RET_OK;
|
||||
}
|
||||
|
||||
static ret_t install_one(void* ctx, const void* iter) {
|
||||
widget_t* widget = WIDGET(iter);
|
||||
widget_t* win = widget_get_window(widget);
|
||||
@ -936,6 +983,12 @@ static ret_t install_one(void* ctx, const void* iter) {
|
||||
widget_on(widget, EVT_CLICK, on_change_cursor, win);
|
||||
} else if (tk_str_eq(name, "ani_interval") && tk_str_eq(widget->vt->type, "image_animation")) {
|
||||
widget_on(widget, EVT_POINTER_DOWN, on_image_animation_set_interval, widget);
|
||||
} else if (tk_str_eq(name, SCROLL_GRID_SCROLL_WIDGT_NAME)) {
|
||||
widget_add_idle(widget, on_idle_scroll_view_set_virtual_wh);
|
||||
} else if (tk_str_eq(name, SCROLL_BAR_H_WIDGT_NAME)) {
|
||||
widget_on(widget, EVT_VALUE_CHANGED, scroll_bar_on_value_changed, widget);
|
||||
} else if (tk_str_eq(name, SCROLL_BAR_V_WIDGT_NAME)) {
|
||||
widget_on(widget, EVT_VALUE_CHANGED, scroll_bar_on_value_changed, widget);
|
||||
}
|
||||
} else if (tk_str_eq(widget->vt->type, "combo_box")) {
|
||||
widget_on(widget, EVT_VALUE_CHANGED, on_combo_box_changed, widget);
|
||||
|
@ -1,33 +1,59 @@
|
||||
<window>
|
||||
<grid x="10" y="10" w="-20" h="30" columns_definition="col(w=0.4,m=5);col(w=0.3,m=5);col(w=0.3,m=5);" rows="1"
|
||||
style.normal.grid_color="gray" style.normal.border_color="black" show_grid="true"
|
||||
style.normal.bg_color="#a0a0a0">
|
||||
<label text="姓名" />
|
||||
<label text="语文" />
|
||||
<label text="数学" />
|
||||
</grid>
|
||||
<view x="c" y="m" w="90%" h="90%">
|
||||
<scroll_view name="grid_scroll_view" x="10" y="10" w="-30" h="-30" xoffset="0" yoffset="0" style.normal.border_color="#000000" >
|
||||
<grid x="0" y="0" w="300" h="30" columns_definition="col(w=0.4,m=5);col(w=0.3,m=5);col(w=0.3,m=5);" rows="1"
|
||||
style.normal.grid_color="gray" style.normal.border_color="black" show_grid="true"
|
||||
style.normal.bg_color="#a0a0a0">
|
||||
<label text="姓名" />
|
||||
<label text="语文" />
|
||||
<label text="数学" />
|
||||
</grid>
|
||||
|
||||
<grid x="10" y="40" w="-20" h="180" columns_definition="col(w=0.4,m=5);col(w=0.3,m=5);col(w=0.3,m=5);" rows="5"
|
||||
style.normal.grid_color="gray" style.normal.border_color="black"
|
||||
style.normal.odd_bg_color="#f5f5f5" style.normal.even_bg_color="#eeeeee" show_grid="true">
|
||||
<label text="张三" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
<grid x="0" y="30" w="300" h="400" columns_definition="col(w=0.4,m=5);col(w=0.3,m=5);col(w=0.3,m=5);" rows="10"
|
||||
style.normal.grid_color="gray" style.normal.border_color="black"
|
||||
style.normal.odd_bg_color="#f5f5f5" style.normal.even_bg_color="#eeeeee" show_grid="true">
|
||||
<label text="张三" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
|
||||
<label text="李四" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
<label text="李四" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
|
||||
<label text="王五" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
<label text="王五" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
|
||||
<label text="孙六" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
<label text="孙六" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
|
||||
<label text="赵七" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
</grid>
|
||||
<label text="赵七" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
|
||||
<label text="赵八" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
|
||||
<label text="赵九" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
|
||||
<label text="赵十" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
|
||||
<label text="赵十一" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
|
||||
<label text="赵十二" />
|
||||
<label text="98" />
|
||||
<label text="97" />
|
||||
</grid>
|
||||
</scroll_view>
|
||||
<scroll_bar_d name="bar_h" x="10" y="b" w="-30" h="20" value="0"/>
|
||||
<scroll_bar_d name="bar_v" x="r" y="10" w="20" h="-30" value="0"/>
|
||||
</view>
|
||||
</window>
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
2022/08/02
|
||||
* 增加fscript_clean。
|
||||
* 增加滚动的grid例子(感谢智明提供补丁)
|
||||
|
||||
2022/08/01
|
||||
* 增加fscript\_find\_func。
|
||||
|
@ -1,77 +1,59 @@
|
||||
TK_CONST_DATA_ALIGN(const unsigned char ui_grid[]) = {
|
||||
0x04,0x00,0x01,0x01,0xae,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x67,0x72,0x69,0x64,0x00,0x00,0x00,0x00,
|
||||
0x04,0x00,0x01,0x01,0xba,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x67,0x72,0x69,0x64,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x12,0x12,0x22,0x11,0x77,0x69,0x6e,0x64,0x6f,0x77,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x67,0x72,0x69,
|
||||
0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0xec,0xff,0xff,
|
||||
0xff,0x1e,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,
|
||||
0x61,0x75,0x6c,0x74,0x28,0x78,0x3d,0x31,0x30,0x2c,0x79,0x3d,0x31,0x30,0x2c,0x77,0x3d,0x2d,0x32,0x30,
|
||||
0x2c,0x68,0x3d,0x33,0x30,0x29,0x00,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x5f,0x64,0x65,0x66,0x69,0x6e,
|
||||
0x69,0x74,0x69,0x6f,0x6e,0x00,0x63,0x6f,0x6c,0x28,0x77,0x3d,0x30,0x2e,0x34,0x2c,0x6d,0x3d,0x35,0x29,
|
||||
0x3b,0x63,0x6f,0x6c,0x28,0x77,0x3d,0x30,0x2e,0x33,0x2c,0x6d,0x3d,0x35,0x29,0x3b,0x63,0x6f,0x6c,0x28,
|
||||
0x77,0x3d,0x30,0x2e,0x33,0x2c,0x6d,0x3d,0x35,0x29,0x3b,0x00,0x72,0x6f,0x77,0x73,0x00,0x31,0x00,0x73,
|
||||
0x74,0x79,0x6c,0x65,0x2e,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x2e,0x67,0x72,0x69,0x64,0x5f,0x63,0x6f,0x6c,
|
||||
0x6f,0x72,0x00,0x67,0x72,0x61,0x79,0x00,0x73,0x74,0x79,0x6c,0x65,0x2e,0x6e,0x6f,0x72,0x6d,0x61,0x6c,
|
||||
0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x62,0x6c,0x61,0x63,0x6b,0x00,
|
||||
0x73,0x68,0x6f,0x77,0x5f,0x67,0x72,0x69,0x64,0x00,0x74,0x72,0x75,0x65,0x00,0x73,0x74,0x79,0x6c,0x65,
|
||||
0x2e,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x2e,0x62,0x67,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x23,0x61,0x30,
|
||||
0x61,0x30,0x61,0x30,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x76,0x69,0x65,
|
||||
0x77,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5a,0x00,0x00,
|
||||
0x00,0x5a,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,
|
||||
0x61,0x75,0x6c,0x74,0x28,0x78,0x3d,0x63,0x2c,0x79,0x3d,0x6d,0x2c,0x77,0x3d,0x39,0x30,0x25,0x2c,0x68,
|
||||
0x3d,0x39,0x30,0x25,0x29,0x00,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x5f,0x76,0x69,0x65,0x77,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,
|
||||
0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0xe2,0xff,0xff,0xff,0xe2,0xff,0xff,0xff,0x73,0x65,0x6c,0x66,0x5f,
|
||||
0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x78,0x3d,0x31,0x30,0x2c,
|
||||
0x79,0x3d,0x31,0x30,0x2c,0x77,0x3d,0x2d,0x33,0x30,0x2c,0x68,0x3d,0x2d,0x33,0x30,0x29,0x00,0x6e,0x61,
|
||||
0x6d,0x65,0x00,0x67,0x72,0x69,0x64,0x5f,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x5f,0x76,0x69,0x65,0x77,0x00,
|
||||
0x78,0x6f,0x66,0x66,0x73,0x65,0x74,0x00,0x30,0x00,0x79,0x6f,0x66,0x66,0x73,0x65,0x74,0x00,0x30,0x00,
|
||||
0x73,0x74,0x79,0x6c,0x65,0x2e,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x5f,
|
||||
0x63,0x6f,0x6c,0x6f,0x72,0x00,0x23,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x67,0x72,0x69,0x64,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe5,
|
||||
0xa7,0x93,0xe5,0x90,0x8d,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,
|
||||
0x00,0xe8,0xaf,0xad,0xe6,0x96,0x87,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,
|
||||
0x78,0x74,0x00,0xe6,0x95,0xb0,0xe5,0xad,0xa6,0x00,0x00,0x00,0x00,0x67,0x72,0x69,0x64,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x28,0x00,0x00,0x00,0xec,0xff,0xff,0xff,0xb4,0x00,0x00,
|
||||
0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,
|
||||
0x28,0x78,0x3d,0x31,0x30,0x2c,0x79,0x3d,0x34,0x30,0x2c,0x77,0x3d,0x2d,0x32,0x30,0x2c,0x68,0x3d,0x31,
|
||||
0x38,0x30,0x29,0x00,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x5f,0x64,0x65,0x66,0x69,0x6e,0x69,0x74,0x69,
|
||||
0x6f,0x6e,0x00,0x63,0x6f,0x6c,0x28,0x77,0x3d,0x30,0x2e,0x34,0x2c,0x6d,0x3d,0x35,0x29,0x3b,0x63,0x6f,
|
||||
0x6c,0x28,0x77,0x3d,0x30,0x2e,0x33,0x2c,0x6d,0x3d,0x35,0x29,0x3b,0x63,0x6f,0x6c,0x28,0x77,0x3d,0x30,
|
||||
0x2e,0x33,0x2c,0x6d,0x3d,0x35,0x29,0x3b,0x00,0x72,0x6f,0x77,0x73,0x00,0x35,0x00,0x73,0x74,0x79,0x6c,
|
||||
0x65,0x2e,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x2e,0x67,0x72,0x69,0x64,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,
|
||||
0x67,0x72,0x61,0x79,0x00,0x73,0x74,0x79,0x6c,0x65,0x2e,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x2e,0x62,0x6f,
|
||||
0x72,0x64,0x65,0x72,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x62,0x6c,0x61,0x63,0x6b,0x00,0x73,0x74,0x79,
|
||||
0x6c,0x65,0x2e,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x2e,0x6f,0x64,0x64,0x5f,0x62,0x67,0x5f,0x63,0x6f,0x6c,
|
||||
0x6f,0x72,0x00,0x23,0x66,0x35,0x66,0x35,0x66,0x35,0x00,0x73,0x74,0x79,0x6c,0x65,0x2e,0x6e,0x6f,0x72,
|
||||
0x6d,0x61,0x6c,0x2e,0x65,0x76,0x65,0x6e,0x5f,0x62,0x67,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x23,0x65,
|
||||
0x65,0x65,0x65,0x65,0x65,0x00,0x73,0x68,0x6f,0x77,0x5f,0x67,0x72,0x69,0x64,0x00,0x74,0x72,0x75,0x65,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2c,0x01,0x00,0x00,0x1e,
|
||||
0x00,0x00,0x00,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x5f,0x64,0x65,0x66,0x69,0x6e,0x69,0x74,0x69,0x6f,
|
||||
0x6e,0x00,0x63,0x6f,0x6c,0x28,0x77,0x3d,0x30,0x2e,0x34,0x2c,0x6d,0x3d,0x35,0x29,0x3b,0x63,0x6f,0x6c,
|
||||
0x28,0x77,0x3d,0x30,0x2e,0x33,0x2c,0x6d,0x3d,0x35,0x29,0x3b,0x63,0x6f,0x6c,0x28,0x77,0x3d,0x30,0x2e,
|
||||
0x33,0x2c,0x6d,0x3d,0x35,0x29,0x3b,0x00,0x72,0x6f,0x77,0x73,0x00,0x31,0x00,0x73,0x74,0x79,0x6c,0x65,
|
||||
0x2e,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x2e,0x67,0x72,0x69,0x64,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x67,
|
||||
0x72,0x61,0x79,0x00,0x73,0x74,0x79,0x6c,0x65,0x2e,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x2e,0x62,0x6f,0x72,
|
||||
0x64,0x65,0x72,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x62,0x6c,0x61,0x63,0x6b,0x00,0x73,0x68,0x6f,0x77,
|
||||
0x5f,0x67,0x72,0x69,0x64,0x00,0x74,0x72,0x75,0x65,0x00,0x73,0x74,0x79,0x6c,0x65,0x2e,0x6e,0x6f,0x72,
|
||||
0x6d,0x61,0x6c,0x2e,0x62,0x67,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x23,0x61,0x30,0x61,0x30,0x61,0x30,
|
||||
0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe5,0xbc,0xa0,0xe4,0xb8,
|
||||
0x89,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe5,0xa7,0x93,0xe5,0x90,
|
||||
0x8d,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x38,0x00,
|
||||
0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe8,0xaf,0xad,
|
||||
0xe6,0x96,0x87,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x37,0x00,0x00,0x00,
|
||||
0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe6,
|
||||
0x95,0xb0,0xe5,0xad,0xa6,0x00,0x00,0x00,0x00,0x67,0x72,0x69,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe6,0x9d,0x8e,0xe5,0x9b,0x9b,0x00,
|
||||
0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x38,0x00,0x00,0x00,
|
||||
0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x37,0x00,0x00,0x00,0x6c,0x61,
|
||||
0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe7,0x8e,0x8b,0xe4,0xba,0x94,0x00,0x00,0x00,
|
||||
0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x38,0x00,0x00,0x00,0x6c,0x61,
|
||||
0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x37,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,
|
||||
0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x2c,0x01,0x00,0x00,0x90,0x01,0x00,0x00,0x63,0x6f,0x6c,
|
||||
0x75,0x6d,0x6e,0x73,0x5f,0x64,0x65,0x66,0x69,0x6e,0x69,0x74,0x69,0x6f,0x6e,0x00,0x63,0x6f,0x6c,0x28,
|
||||
0x77,0x3d,0x30,0x2e,0x34,0x2c,0x6d,0x3d,0x35,0x29,0x3b,0x63,0x6f,0x6c,0x28,0x77,0x3d,0x30,0x2e,0x33,
|
||||
0x2c,0x6d,0x3d,0x35,0x29,0x3b,0x63,0x6f,0x6c,0x28,0x77,0x3d,0x30,0x2e,0x33,0x2c,0x6d,0x3d,0x35,0x29,
|
||||
0x3b,0x00,0x72,0x6f,0x77,0x73,0x00,0x31,0x30,0x00,0x73,0x74,0x79,0x6c,0x65,0x2e,0x6e,0x6f,0x72,0x6d,
|
||||
0x61,0x6c,0x2e,0x67,0x72,0x69,0x64,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x67,0x72,0x61,0x79,0x00,0x73,
|
||||
0x74,0x79,0x6c,0x65,0x2e,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x5f,0x63,
|
||||
0x6f,0x6c,0x6f,0x72,0x00,0x62,0x6c,0x61,0x63,0x6b,0x00,0x73,0x74,0x79,0x6c,0x65,0x2e,0x6e,0x6f,0x72,
|
||||
0x6d,0x61,0x6c,0x2e,0x6f,0x64,0x64,0x5f,0x62,0x67,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x23,0x66,0x35,
|
||||
0x66,0x35,0x66,0x35,0x00,0x73,0x74,0x79,0x6c,0x65,0x2e,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x2e,0x65,0x76,
|
||||
0x65,0x6e,0x5f,0x62,0x67,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x23,0x65,0x65,0x65,0x65,0x65,0x65,0x00,
|
||||
0x73,0x68,0x6f,0x77,0x5f,0x67,0x72,0x69,0x64,0x00,0x74,0x72,0x75,0x65,0x00,0x00,0x6c,0x61,0x62,0x65,
|
||||
0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe5,0xad,0x99,0xe5,0x85,0xad,0x00,0x00,0x00,0x6c,0x61,
|
||||
0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe5,0xbc,0xa0,0xe4,0xb8,0x89,0x00,0x00,0x00,0x6c,0x61,
|
||||
0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x38,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,
|
||||
@ -80,10 +62,93 @@ TK_CONST_DATA_ALIGN(const unsigned char ui_grid[]) = {
|
||||
0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x37,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe8,0xb5,0xb5,0xe4,0xb8,0x83,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,
|
||||
0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe6,0x9d,0x8e,0xe5,0x9b,0x9b,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,
|
||||
0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x38,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x37,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*1758*/
|
||||
0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x37,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x74,0x65,0x78,0x74,0x00,0xe7,0x8e,0x8b,0xe4,0xba,0x94,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x38,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x74,0x65,0x78,0x74,0x00,0x39,0x37,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,
|
||||
0x78,0x74,0x00,0xe5,0xad,0x99,0xe5,0x85,0xad,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x74,0x65,0x78,0x74,0x00,0x39,0x38,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,
|
||||
0x78,0x74,0x00,0x39,0x37,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,
|
||||
0x00,0xe8,0xb5,0xb5,0xe4,0xb8,0x83,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,
|
||||
0x78,0x74,0x00,0x39,0x38,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,
|
||||
0x00,0x39,0x37,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe8,
|
||||
0xb5,0xb5,0xe5,0x85,0xab,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,
|
||||
0x00,0x39,0x38,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,
|
||||
0x37,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe8,0xb5,0xb5,
|
||||
0xe4,0xb9,0x9d,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,
|
||||
0x38,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x37,0x00,
|
||||
0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe8,0xb5,0xb5,0xe5,0x8d,
|
||||
0x81,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x38,0x00,
|
||||
0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x37,0x00,0x00,0x00,
|
||||
0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe8,0xb5,0xb5,0xe5,0x8d,0x81,0xe4,
|
||||
0xb8,0x80,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x38,
|
||||
0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x37,0x00,0x00,
|
||||
0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0xe8,0xb5,0xb5,0xe5,0x8d,0x81,
|
||||
0xe4,0xba,0x8c,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,
|
||||
0x38,0x00,0x00,0x00,0x6c,0x61,0x62,0x65,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x74,0x00,0x39,0x37,0x00,
|
||||
0x00,0x00,0x00,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x5f,0x62,0x61,0x72,0x5f,0x64,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0xe2,0xff,0xff,0xff,0x14,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,
|
||||
0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x78,0x3d,0x31,0x30,0x2c,0x79,0x3d,0x62,
|
||||
0x2c,0x77,0x3d,0x2d,0x33,0x30,0x2c,0x68,0x3d,0x32,0x30,0x29,0x00,0x6e,0x61,0x6d,0x65,0x00,0x62,0x61,
|
||||
0x72,0x5f,0x68,0x00,0x76,0x61,0x6c,0x75,0x65,0x00,0x30,0x00,0x00,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,
|
||||
0x5f,0x62,0x61,0x72,0x5f,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0xe2,0xff,
|
||||
0xff,0xff,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,
|
||||
0x74,0x28,0x78,0x3d,0x72,0x2c,0x79,0x3d,0x31,0x30,0x2c,0x77,0x3d,0x32,0x30,0x2c,0x68,0x3d,0x2d,0x33,
|
||||
0x30,0x29,0x00,0x6e,0x61,0x6d,0x65,0x00,0x62,0x61,0x72,0x5f,0x76,0x00,0x76,0x61,0x6c,0x75,0x65,0x00,
|
||||
0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*3050*/
|
||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user