Skip to content

Commit 565b85d

Browse files
committed
1 parent 68ff40f commit 565b85d

12 files changed

+38
-3
lines changed

packages/project-editor/flow/runtime/lvgl_runtime_v8.3.js

+1
Original file line numberDiff line numberDiff line change
@@ -5352,6 +5352,7 @@ var _lv_msg_init = Module['_lv_msg_init'] = createExportWrapper('lv_msg_init');
53525352
var _lv_snprintf = Module['_lv_snprintf'] = createExportWrapper('lv_snprintf');
53535353
var _lv_fs_tell = Module['_lv_fs_tell'] = createExportWrapper('lv_fs_tell');
53545354
var _lv_fs_write = Module['_lv_fs_write'] = createExportWrapper('lv_fs_write');
5355+
var _strncmp = Module['_strncmp'] = createExportWrapper('strncmp');
53555356
var _lv_fragment_create = Module['_lv_fragment_create'] = createExportWrapper('lv_fragment_create');
53565357
var _lv_fragment_del = Module['_lv_fragment_del'] = createExportWrapper('lv_fragment_del');
53575358
var _lv_fragment_del_obj = Module['_lv_fragment_del_obj'] = createExportWrapper('lv_fragment_del_obj');
Binary file not shown.

packages/project-editor/flow/runtime/lvgl_runtime_v9.0.js

+1
Original file line numberDiff line numberDiff line change
@@ -6409,6 +6409,7 @@ var _lv_win_add_title = Module['_lv_win_add_title'] = createExportWrapper('lv_wi
64096409
var _lv_win_get_header = Module['_lv_win_get_header'] = createExportWrapper('lv_win_get_header');
64106410
var _lv_win_add_button = Module['_lv_win_add_button'] = createExportWrapper('lv_win_add_button');
64116411
var _lv_win_get_content = Module['_lv_win_get_content'] = createExportWrapper('lv_win_get_content');
6412+
var _strncmp = Module['_strncmp'] = createExportWrapper('strncmp');
64126413
var _onMqttEvent = Module['_onMqttEvent'] = createExportWrapper('onMqttEvent');
64136414
var _strcmp = Module['_strcmp'] = createExportWrapper('strcmp');
64146415
var __evalTextProperty = Module['__evalTextProperty'] = createExportWrapper('_evalTextProperty');
Binary file not shown.

packages/project-editor/lvgl/lvgl-constants.ts

+2
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,7 @@ export const LVGL_PARTS_8: { [key: string]: number } = {
385385
CURSOR: 0x070000, // LV_PART_CURSOR Mark a specific place e.g. for text area's cursor or on a chart
386386

387387
CUSTOM1: 0x080000, // LV_PART_CUSTOM_FIRST Extension point for custom widgets
388+
TEXTAREA_PLACEHOLDER: 0x080000,
388389

389390
ANY: 0x0f0000 // LV_PART_ANY Special value can be used in some functions to target all parts
390391
};
@@ -399,6 +400,7 @@ export const LVGL_PARTS_9: { [key: string]: number } = {
399400
CURSOR: 0x060000, // LV_PART_CURSOR Mark a specific place e.g. for text area's cursor or on a chart
400401

401402
CUSTOM1: 0x080000, // LV_PART_CUSTOM_FIRST Extension point for custom widgets
403+
TEXTAREA_PLACEHOLDER: 0x080000,
402404

403405
ANY: 0x0f0000 // LV_PART_ANY Special value can be used in some functions to target all parts
404406
};

packages/project-editor/lvgl/to-lvgl-code.ts

+15
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ export interface LVGLCode {
120120

121121
if(a: any, callback: () => void): void;
122122
ifStringNotEqual(a: any, b: any, callback: () => void): void;
123+
ifStringNotEqualN(a: any, b: any, n: any, callback: () => void): void;
123124

124125
ifIntegerLess(a: any, b: any, callback: () => void): void;
125126
ifIntegerNotEqual(a: any, b: any, callback: () => void): void;
@@ -588,6 +589,12 @@ export class SimulatorLVGLCode implements LVGLCode {
588589
}
589590
}
590591

592+
ifStringNotEqualN(a: any, b: any, n: any, callback: () => void) {
593+
if (this.callFreeFunction("strncmp", a, b, n) != 0) {
594+
callback();
595+
}
596+
}
597+
591598
ifIntegerLess(a: any, b: any, callback: () => void) {
592599
if (a < b) {
593600
callback();
@@ -1143,6 +1150,14 @@ export class BuildLVGLCode implements LVGLCode {
11431150
build.blockEnd(`}`);
11441151
}
11451152

1153+
ifStringNotEqualN(a: any, b: any, n: any, callback: () => void) {
1154+
const build = this.build;
1155+
1156+
build.blockStart(`if (strncmp(${a}, ${b}, ${n}) != 0) {`);
1157+
callback();
1158+
build.blockEnd(`}`);
1159+
}
1160+
11461161
ifIntegerLess(a: any, b: any, callback: () => void) {
11471162
const build = this.build;
11481163

packages/project-editor/lvgl/widgets/Textarea.tsx

+14-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,13 @@ export class LVGLTextareaWidget extends LVGLWidget {
9797

9898
lvgl: (widget: LVGLTextareaWidget, project: Project) => {
9999
return {
100-
parts: ["MAIN", "SELECTED", "CURSOR"],
100+
parts: [
101+
"MAIN",
102+
"SELECTED",
103+
"CURSOR",
104+
"SCROLLBAR",
105+
"TEXTAREA_PLACEHOLDER"
106+
],
101107
defaultFlags:
102108
project.settings.general.lvglVersion == "9.0"
103109
? "CLICKABLE|CLICK_FOCUSABLE|GESTURE_BUBBLE|PRESS_LOCK|SCROLLABLE|SCROLL_CHAIN_HOR|SCROLL_CHAIN_VER|SCROLL_ELASTIC|SCROLL_MOMENTUM|SCROLL_ON_FOCUS|SNAPPABLE"
@@ -168,7 +174,13 @@ export class LVGLTextareaWidget extends LVGLWidget {
168174
"lv_textarea_get_text"
169175
);
170176

171-
code.ifStringNotEqual(new_val, cur_val, () => {
177+
const max_length = code.callObjectFunctionWithAssignment(
178+
"uint32_t",
179+
"max_length",
180+
"lv_textarea_get_max_length"
181+
);
182+
183+
code.ifStringNotEqualN(new_val, cur_val, max_length, () => {
172184
code.tickChangeStart();
173185
code.callObjectFunction(
174186
"lv_textarea_set_text",

wasm/lvgl-runtime/common/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -561,4 +561,4 @@ void dump_custom_styles() {
561561
printf("LV_STYLE_GRID_CELL_Y_ALIGN %d\n", LV_STYLE_GRID_CELL_Y_ALIGN);
562562
}
563563

564-
#endif
564+
#endif

wasm/lvgl-runtime/v8.3/exported-functions-misc.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
_malloc
22
_free
33
_strcmp
4+
_strncmp
45
_setObjectIndex
56
__evalTextProperty
67
__evalIntegerProperty

wasm/lvgl-runtime/v8.3/exported-functions.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
_malloc
22
_free
33
_strcmp
4+
_strncmp
45
_setObjectIndex
56
__evalTextProperty
67
__evalIntegerProperty

wasm/lvgl-runtime/v9.0/exported-functions-misc.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
_malloc
22
_free
33
_strcmp
4+
_strncmp
45
_setObjectIndex
56
__evalTextProperty
67
__evalIntegerProperty

wasm/lvgl-runtime/v9.0/exported-functions.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
_malloc
22
_free
33
_strcmp
4+
_strncmp
45
_setObjectIndex
56
__evalTextProperty
67
__evalIntegerProperty

0 commit comments

Comments
 (0)