Skip to content

Commit f5dcd0f

Browse files
committed
fix change color theme for user widgets
1 parent aaacc5a commit f5dcd0f

File tree

4 files changed

+146
-33
lines changed

4 files changed

+146
-33
lines changed

packages/project-editor/lvgl/build.ts

+139-33
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import type { LVGLGroup } from "./groups";
3131
import { showBuildImageInfoDialog } from "./build-image-info-dialog";
3232
import tinycolor from "tinycolor2";
3333
import { GENERATED_NAME_PREFIX } from "./identifiers";
34+
import type { Flow } from "project-editor/flow/flow";
3435

3536
interface Identifiers {
3637
identifiers: string[];
@@ -46,7 +47,10 @@ export class LVGLBuild extends Build {
4647
fontNames = new Map<string, string>();
4748
bitmapNames = new Map<string, string>();
4849

49-
updateColorCallbacks: (() => void)[] = [];
50+
updateColorCallbacks: {
51+
object: IEezObject;
52+
callback: () => void;
53+
}[] = [];
5054

5155
isFirstPass: boolean;
5256

@@ -707,6 +711,7 @@ export class LVGLBuild extends Build {
707711
}
708712

709713
buildColor<T>(
714+
object: IEezObject,
710715
color: string,
711716
getParams: () => T,
712717
callback: (color: string, params: T) => void,
@@ -716,17 +721,21 @@ export class LVGLBuild extends Build {
716721
callback(colorAccessor, getParams());
717722

718723
if (!this.isFirstPass && fromTheme) {
719-
this.updateColorCallbacks.push(() => {
720-
const { colorAccessor } = this.getColorAccessor(
721-
color,
722-
"theme_index"
723-
);
724-
updateCallback(colorAccessor, getParams());
724+
this.updateColorCallbacks.push({
725+
object,
726+
callback: () => {
727+
const { colorAccessor } = this.getColorAccessor(
728+
color,
729+
"theme_index"
730+
);
731+
updateCallback(colorAccessor, getParams());
732+
}
725733
});
726734
}
727735
}
728736

729737
buildColor2<T>(
738+
object: IEezObject,
730739
color1: string,
731740
color2: string,
732741
getParams: () => T,
@@ -742,16 +751,15 @@ export class LVGLBuild extends Build {
742751
callback(color1Accessor, color2Accessor, getParams());
743752

744753
if (!this.isFirstPass && (color1FromTheme || color2FromTheme)) {
745-
this.updateColorCallbacks.push(() => {
746-
const { colorAccessor: color1Accessor } = this.getColorAccessor(
747-
color1,
748-
"theme_index"
749-
);
750-
const { colorAccessor: color2Accessor } = this.getColorAccessor(
751-
color2,
752-
"theme_index"
753-
);
754-
updateCallback(color1Accessor, color2Accessor, getParams());
754+
this.updateColorCallbacks.push({
755+
object,
756+
callback: () => {
757+
const { colorAccessor: color1Accessor } =
758+
this.getColorAccessor(color1, "theme_index");
759+
const { colorAccessor: color2Accessor } =
760+
this.getColorAccessor(color2, "theme_index");
761+
updateCallback(color1Accessor, color2Accessor, getParams());
762+
}
755763
});
756764
}
757765
}
@@ -1179,29 +1187,127 @@ export class LVGLBuild extends Build {
11791187
build.line("");
11801188
}
11811189

1182-
if (this.updateColorCallbacks.length > 0) {
1183-
build.line(`void change_color_theme(uint32_t theme_index) {`);
1184-
build.indent();
1185-
this.updateColorCallbacks.forEach((callback, i) => {
1186-
callback();
1190+
this.buildChangeColorTheme();
1191+
1192+
return this.result;
1193+
}
1194+
1195+
buildChangeColorTheme() {
1196+
if (this.updateColorCallbacks.length == 0) {
1197+
return;
1198+
}
1199+
1200+
const build = this;
1201+
1202+
build.line(`void change_color_theme(uint32_t theme_index) {`);
1203+
build.indent();
1204+
1205+
this.updateColorCallbacks.forEach(updateColorCallback => {
1206+
const flow = getAncestorOfType<Flow>(
1207+
updateColorCallback.object,
1208+
ProjectEditor.FlowClass.classInfo
1209+
);
1210+
1211+
if (
1212+
flow instanceof ProjectEditor.PageClass &&
1213+
flow.isUsedAsUserWidget
1214+
) {
1215+
return;
1216+
}
1217+
1218+
updateColorCallback.callback();
1219+
1220+
build.line("");
1221+
});
1222+
1223+
this.pages.forEach(page => {
1224+
if (page.isUsedAsUserWidget) {
1225+
return;
1226+
}
1227+
1228+
if (this.buildChangeColorThemeForUserWidget(page, true)) {
11871229
build.line("");
1188-
});
1230+
}
1231+
});
11891232

1190-
build.pages
1191-
.filter(page => !page.isUsedAsUserWidget)
1192-
.forEach(page =>
1193-
build.line(
1194-
`lv_obj_invalidate(objects.${this.getScreenIdentifier(
1195-
page
1196-
)});`
1197-
)
1233+
build.pages
1234+
.filter(page => !page.isUsedAsUserWidget)
1235+
.forEach(page =>
1236+
build.line(
1237+
`lv_obj_invalidate(objects.${this.getScreenIdentifier(
1238+
page
1239+
)});`
1240+
)
1241+
);
1242+
1243+
build.unindent();
1244+
build.line("}");
1245+
}
1246+
1247+
buildChangeColorThemeForUserWidget(page: Page, flag: boolean) {
1248+
const build = this;
1249+
1250+
let first = true;
1251+
1252+
page._lvglWidgets.forEach(lvglWidget => {
1253+
if (
1254+
!(lvglWidget instanceof ProjectEditor.LVGLUserWidgetWidgetClass)
1255+
) {
1256+
return;
1257+
}
1258+
1259+
const updateColorCallbacks = this.updateColorCallbacks.filter(
1260+
(updateColorCallback, i) => {
1261+
const flow = getAncestorOfType<Flow>(
1262+
updateColorCallback.object,
1263+
ProjectEditor.FlowClass.classInfo
1264+
);
1265+
1266+
return flow == lvglWidget.userWidgetPage;
1267+
}
1268+
);
1269+
1270+
if (!updateColorCallbacks) {
1271+
return;
1272+
}
1273+
1274+
if (first) {
1275+
first = false;
1276+
} else {
1277+
build.line("");
1278+
}
1279+
1280+
build.line("{");
1281+
build.indent();
1282+
1283+
if (flag) {
1284+
build.line(
1285+
`int startWidgetIndex = ${
1286+
this.getWidgetObjectIndex(lvglWidget) + 1
1287+
};`
11981288
);
1289+
} else {
1290+
build.line(
1291+
`startWidgetIndex += ${
1292+
this.getWidgetObjectIndex(lvglWidget) + 1
1293+
};`
1294+
);
1295+
}
1296+
1297+
updateColorCallbacks.forEach(updateColorCallback =>
1298+
updateColorCallback.callback()
1299+
);
1300+
1301+
this.buildChangeColorThemeForUserWidget(
1302+
lvglWidget.userWidgetPage!,
1303+
false
1304+
);
11991305

12001306
build.unindent();
12011307
build.line("}");
1202-
}
1308+
});
12031309

1204-
return this.result;
1310+
return !first;
12051311
}
12061312

12071313
async buildScreensDeclExt() {

packages/project-editor/lvgl/style-definition.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -631,6 +631,7 @@ export class LVGLStylesDefinition extends EezObject {
631631

632632
if (propertyInfo.type == PropertyType.ThemedColor) {
633633
build.buildColor(
634+
this,
634635
this.definition[part][state][propertyName],
635636
() => {
636637
return build.getLvglObjectAccessor(
@@ -769,6 +770,7 @@ export class LVGLStylesDefinition extends EezObject {
769770

770771
if (propertyInfo.type == PropertyType.ThemedColor) {
771772
build.buildColor(
773+
this,
772774
this.definition[part][state][propertyName],
773775
() => {},
774776
color => {

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

+1
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ export class LVGLLedWidget extends LVGLWidget {
196196
override lvglBuildSpecific(build: LVGLBuild) {
197197
if (this.colorType == "literal") {
198198
build.buildColor(
199+
this,
199200
this.color,
200201
() => {
201202
return build.getLvglObjectAccessor(this);

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

+4
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,7 @@ export class LVGLMeterIndicatorNeedleLine extends LVGLMeterIndicator {
581581

582582
override lvglBuild(build: LVGLBuild) {
583583
build.buildColor(
584+
this,
584585
this.color,
585586
() =>
586587
build.genFileStaticVar(
@@ -851,6 +852,7 @@ export class LVGLMeterIndicatorScaleLines extends LVGLMeterIndicator {
851852

852853
override lvglBuild(build: LVGLBuild) {
853854
build.buildColor2(
855+
this,
854856
this.colorStart,
855857
this.colorEnd,
856858
() =>
@@ -1099,6 +1101,7 @@ export class LVGLMeterIndicatorArc extends LVGLMeterIndicator {
10991101

11001102
override lvglBuild(build: LVGLBuild) {
11011103
build.buildColor(
1104+
this,
11021105
this.color,
11031106
() =>
11041107
build.genFileStaticVar(
@@ -1608,6 +1611,7 @@ export class LVGLMeterWidget extends LVGLWidget {
16081611
build.line(`lv_meter_scale_t *scale = lv_meter_add_scale(obj);`);
16091612

16101613
build.buildColor2(
1614+
this,
16111615
scale.minorTickColor,
16121616
scale.majorTickColor,
16131617
() =>

0 commit comments

Comments
 (0)