@@ -31,6 +31,7 @@ import type { LVGLGroup } from "./groups";
31
31
import { showBuildImageInfoDialog } from "./build-image-info-dialog" ;
32
32
import tinycolor from "tinycolor2" ;
33
33
import { GENERATED_NAME_PREFIX } from "./identifiers" ;
34
+ import type { Flow } from "project-editor/flow/flow" ;
34
35
35
36
interface Identifiers {
36
37
identifiers : string [ ] ;
@@ -46,7 +47,10 @@ export class LVGLBuild extends Build {
46
47
fontNames = new Map < string , string > ( ) ;
47
48
bitmapNames = new Map < string , string > ( ) ;
48
49
49
- updateColorCallbacks : ( ( ) => void ) [ ] = [ ] ;
50
+ updateColorCallbacks : {
51
+ object : IEezObject ;
52
+ callback : ( ) => void ;
53
+ } [ ] = [ ] ;
50
54
51
55
isFirstPass : boolean ;
52
56
@@ -707,6 +711,7 @@ export class LVGLBuild extends Build {
707
711
}
708
712
709
713
buildColor < T > (
714
+ object : IEezObject ,
710
715
color : string ,
711
716
getParams : ( ) => T ,
712
717
callback : ( color : string , params : T ) => void ,
@@ -716,17 +721,21 @@ export class LVGLBuild extends Build {
716
721
callback ( colorAccessor , getParams ( ) ) ;
717
722
718
723
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
+ }
725
733
} ) ;
726
734
}
727
735
}
728
736
729
737
buildColor2 < T > (
738
+ object : IEezObject ,
730
739
color1 : string ,
731
740
color2 : string ,
732
741
getParams : ( ) => T ,
@@ -742,16 +751,15 @@ export class LVGLBuild extends Build {
742
751
callback ( color1Accessor , color2Accessor , getParams ( ) ) ;
743
752
744
753
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
+ }
755
763
} ) ;
756
764
}
757
765
}
@@ -1179,29 +1187,127 @@ export class LVGLBuild extends Build {
1179
1187
build . line ( "" ) ;
1180
1188
}
1181
1189
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 ) ) {
1187
1229
build . line ( "" ) ;
1188
- } ) ;
1230
+ }
1231
+ } ) ;
1189
1232
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
+ } ;`
1198
1288
) ;
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
+ ) ;
1199
1305
1200
1306
build . unindent ( ) ;
1201
1307
build . line ( "}" ) ;
1202
- }
1308
+ } ) ;
1203
1309
1204
- return this . result ;
1310
+ return ! first ;
1205
1311
}
1206
1312
1207
1313
async buildScreensDeclExt ( ) {
0 commit comments