pax-message 0.39.0

Shared message structs used by Pax runtimes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
pub mod http_api;
pub mod reflection;

//FUTURE: feature-flag, only for Web builds
#[allow(unused_imports)]
use wasm_bindgen::prelude::*;

pub mod refcell_debug;
pub use serde;

use serde::{Deserialize, Serialize};
use std::collections::HashMap;

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Serialize)]
/// Messages emitted by the runtime to create, update, delete, or configure native/chassis resources.
pub enum NativeMessage {
    TextCreate(AnyCreatePatch),
    TextUpdate(TextPatch),
    TextDelete(u32),
    FrameCreate(AnyCreatePatch),
    FrameUpdate(FramePatch),
    FrameDelete(u32),
    EventBlockerCreate(AnyCreatePatch),
    EventBlockerUpdate(EventBlockerPatch),
    EventBlockerDelete(u32),
    CheckboxCreate(AnyCreatePatch),
    CheckboxUpdate(CheckboxPatch),
    CheckboxDelete(u32),
    NativeImageCreate(AnyCreatePatch),
    NativeImageUpdate(NativeImagePatch),
    NativeImageDelete(u32),
    YoutubeVideoCreate(AnyCreatePatch),
    YoutubeVideoUpdate(YoutubeVideoPatch),
    YoutubeVideoDelete(u32),
    TextboxCreate(AnyCreatePatch),
    TextboxUpdate(TextboxPatch),
    TextboxDelete(u32),
    SliderCreate(AnyCreatePatch),
    SliderUpdate(SliderPatch),
    SliderDelete(u32),
    DropdownCreate(AnyCreatePatch),
    DropdownUpdate(DropdownPatch),
    DropdownDelete(u32),
    RadioListCreate(AnyCreatePatch),
    RadioListUpdate(RadioListPatch),
    RadioListDelete(u32),
    ButtonCreate(AnyCreatePatch),
    ButtonUpdate(ButtonPatch),
    ButtonDelete(u32),
    PhotoPickerCreate(AnyCreatePatch),
    PhotoPickerUpdate(PhotoPickerPatch),
    PhotoPickerDelete(u32),
    GlassSurfaceCreate(AnyCreatePatch),
    GlassSurfaceUpdate(GlassSurfacePatch),
    GlassSurfaceDelete(u32),
    ScrollerCreate(AnyCreatePatch),
    ScrollerUpdate(ScrollerPatch),
    ScrollerDelete(u32),
    ImageLoad(ImagePatch),
    ShrinkLayersTo(u32),
    NativeMaskUpdate(NativeMaskPatch),
    Navigate(NavigationPatch),
    SetCursor(SetCursorPatch),
    Screenshot(ScreenshotPatch),
}

#[derive(Deserialize)]
#[repr(C)]
/// Events and data packets sent from the chassis back into the Pax runtime.
pub enum NativeInterrupt {
    ChassisResizeRequestCollection(Vec<ChassisResizeRequestArgs>),
    TextMeasurementResponse(TextMeasurementResponseArgs),
    SelectStart(SelectStartArgs),
    Focus(FocusInterruptArgs),
    Scroll(ScrollInterruptArgs),
    TouchStart(TouchStartInterruptArgs),
    TouchMove(TouchMoveInterruptArgs),
    TouchEnd(TouchEndInterruptArgs),
    TouchCancel(TouchCancelInterruptArgs),
    KeyDown(KeyDownInterruptArgs),
    KeyUp(KeyUpInterruptArgs),
    KeyPress(KeyPressInterruptArgs),
    Click(ClickInterruptArgs),
    Tap(TapInterruptArgs),
    DoubleClick(DoubleClickInterruptArgs),
    MouseMove(MouseMoveInterruptArgs),
    Wheel(WheelInterruptArgs),
    MouseDown(MouseDownInterruptArgs),
    MouseUp(MouseUpInterruptArgs),
    ContextMenu(ContextMenuInterruptArgs),
    Image(ImageLoadInterruptArgs),
    AddedLayer(AddedLayerArgs),
    TextInput(TextInputArgs),
    FormCheckboxToggle(FormCheckboxToggleArgs),
    FormDropdownChange(FormDropdownChangeArgs),
    FormSliderChange(FormSliderChangeArgs),
    FormRadioListChange(FormRadioListChangeArgs),
    FormTextboxChange(FormTextboxChangeArgs),
    FormTextboxInput(FormTextboxInputArgs),
    FormButtonClick(FormButtonClickArgs),
    PhotoPicker(PhotoPickerInterruptArgs),
    // TODO: remove alias once all persisted/older web chassis payloads use `ScrollerPosition`.
    #[serde(alias = "Scrollbar")]
    ScrollerPosition(ScrollerPositionInterruptArgs),
    BrowserConfig(BrowserConfigInterruptArgs),
    RenderSurfaceUpdate(RenderSurfaceUpdateArgs),
    ViewportResize(ViewportResizeArgs),
    RouteChange(RouteChangeInterruptArgs),
    VisualViewportUpdate(VisualViewportUpdateArgs),
    Gyro(GyroInterruptArgs),
    Accel(AccelInterruptArgs),
    DropFile(DropFileArgs),
    Screenshot(ImageLoadInterruptArgs),
}

#[derive(Deserialize)]
#[repr(C)]
/// Chassis response containing measured native control bounds.
pub struct ChassisResizeRequestArgs {
    pub id: u32,
    pub width: f64,
    pub height: f64,
}

#[derive(Deserialize)]
#[repr(C)]
/// Chassis response to an engine-authored native text measurement request.
pub struct TextMeasurementResponseArgs {
    pub id: u32,
    pub generation: u64,
    pub width: f64,
    pub height: f64,
}

#[derive(Deserialize)]
#[repr(C)]
/// Checkbox state-change interrupt payload.
pub struct FormCheckboxToggleArgs {
    pub state: bool,
    pub id: u32,
}

#[derive(Deserialize)]
#[repr(C)]
/// Focus interrupt marker payload.
pub struct FocusInterruptArgs {}

#[derive(Deserialize)]
#[repr(C)]
/// Selection-start interrupt marker payload.
pub struct SelectStartArgs {}

#[derive(Deserialize)]
#[repr(C)]
/// Textbox committed-value change payload.
pub struct FormTextboxChangeArgs {
    pub text: String,
    pub id: u32,
}

#[derive(Deserialize)]
#[repr(C)]
/// Dropdown selection-change payload.
pub struct FormDropdownChangeArgs {
    pub id: u32,
    pub selected_id: u32,
}

#[derive(Deserialize)]
#[repr(C)]
/// Slider value-change payload.
pub struct FormSliderChangeArgs {
    pub id: u32,
    pub value: f64,
}

#[derive(Deserialize)]
#[repr(C)]
/// Radio-list selection-change payload.
pub struct FormRadioListChangeArgs {
    pub id: u32,
    pub selected_id: u32,
}

#[derive(Deserialize)]
#[repr(C)]
/// Raw text input payload delivered by a native text control.
pub struct TextInputArgs {
    pub text: String,
    pub id: u32,
}

#[derive(Deserialize)]
#[repr(C)]
/// Textbox in-progress input payload.
pub struct FormTextboxInputArgs {
    pub text: String,
    pub id: u32,
}

#[derive(Deserialize)]
#[repr(C)]
/// Native button click payload.
pub struct FormButtonClickArgs {
    pub id: u32,
}

#[derive(Deserialize, Clone)]
#[repr(C)]
/// Selected image metadata and optional copied bytes from a native photo picker.
pub struct PhotoPickerAssetArgs {
    pub temp_id: String,
    pub file_name: Option<String>,
    pub mime_type: String,
    pub byte_size: u64,
    pub width: Option<u32>,
    pub height: Option<u32>,
    pub source_kind: String,
    pub handle: Option<String>,
    #[serde(default)]
    pub data: Vec<u8>,
}

#[derive(Deserialize, Clone)]
#[repr(C)]
/// Native photo picker completion payload.
pub struct PhotoPickerInterruptArgs {
    pub id: u32,
    pub request_id: u64,
    pub status: String,
    pub message: Option<String>,
    #[serde(default)]
    pub photos: Vec<PhotoPickerAssetArgs>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Single-touch tap payload normalized to window coordinates.
pub struct TapInterruptArgs {
    pub x: f64,
    pub y: f64,
}

#[derive(Deserialize)]
#[repr(C)]
/// Location-targeted scroll delta payload.
pub struct ScrollInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub delta_x: f64,
    pub delta_y: f64,
}

#[derive(Deserialize)]
#[repr(C)]
/// Native scroller position payload, including optional presentation offsets.
pub struct ScrollerPositionInterruptArgs {
    pub id: u32,
    pub scroll_x: f64,
    pub scroll_y: f64,
    pub presentation_scroll_x: Option<f64>,
    pub presentation_scroll_y: Option<f64>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Browser capability flags discovered by the web chassis.
pub struct BrowserConfigInterruptArgs {
    pub allow_scroller_vector_layers: bool,
    pub allow_nested_scroller_vector_layers: bool,
}

#[derive(Deserialize)]
#[repr(C)]
/// Browser notification that a retained render surface must be reconfigured.
pub struct RenderSurfaceUpdateArgs {
    #[serde(default)]
    pub layer_id: Option<u32>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Layout viewport resize payload for the root app surface.
pub struct ViewportResizeArgs {
    pub width: f64,
    pub height: f64,
}

#[derive(Deserialize)]
#[repr(C)]
/// Canonical route-location payload pushed from chassis state into the runtime.
pub struct RouteChangeInterruptArgs {
    pub path_segments: Vec<String>,
    pub query: HashMap<String, Vec<String>>,
    pub fragment: Option<String>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Browser visual viewport payload for page-scroll-backed root scrollers.
pub struct VisualViewportUpdateArgs {
    pub width: f64,
    pub height: f64,
    pub offset_x: f64,
    pub offset_y: f64,
    pub page_scroll_x: f64,
    pub page_scroll_y: f64,
}

#[derive(Deserialize)]
#[repr(C)]
/// Device orientation payload, in degrees.
pub struct GyroInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub z: f64,
}

#[derive(Deserialize)]
#[repr(C)]
/// Device acceleration payload, in meters per second squared.
pub struct AccelInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub z: f64,
}

#[derive(Deserialize)]
#[repr(C)]
/// One touch point in a multi-touch interrupt.
pub struct TouchMessage {
    pub x: f64,
    pub y: f64,
    pub identifier: i64,
    pub delta_x: f64,
    pub delta_y: f64,
}

#[derive(Deserialize)]
#[repr(C)]
/// Touch-start interrupt payload.
pub struct TouchStartInterruptArgs {
    pub touches: Vec<TouchMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Touch-move interrupt payload.
pub struct TouchMoveInterruptArgs {
    pub touches: Vec<TouchMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Touch-end interrupt payload.
pub struct TouchEndInterruptArgs {
    pub touches: Vec<TouchMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Touch-cancel interrupt payload.
pub struct TouchCancelInterruptArgs {
    pub touches: Vec<TouchMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// File-drop interrupt payload.
pub struct DropFileArgs {
    pub x: f64,
    pub y: f64,
    pub name: String,
    pub mime_type: String,
    pub size: u64,
}

#[derive(Deserialize, Clone)]
#[repr(C)]
/// Normalized mouse button identifier.
pub enum MouseButtonMessage {
    Left,
    Right,
    Middle,
    Unknown,
}

#[derive(Deserialize)]
#[repr(C)]
/// Normalized keyboard modifier identifier.
pub enum ModifierKeyMessage {
    Shift,
    Control,
    Alt,
    Command,
}

#[derive(Deserialize)]
#[repr(C)]
/// Key-down interrupt payload.
pub struct KeyDownInterruptArgs {
    pub key: String,
    pub modifiers: Vec<ModifierKeyMessage>,
    pub is_repeat: bool,
}

#[derive(Deserialize)]
#[repr(C)]
/// Key-up interrupt payload.
pub struct KeyUpInterruptArgs {
    pub key: String,
    pub modifiers: Vec<ModifierKeyMessage>,
    pub is_repeat: bool,
}

#[derive(Deserialize)]
#[repr(C)]
/// Key-press interrupt payload.
pub struct KeyPressInterruptArgs {
    pub key: String,
    pub modifiers: Vec<ModifierKeyMessage>,
    pub is_repeat: bool,
}

#[derive(Deserialize)]
#[repr(C)]
/// Click interrupt payload.
pub struct ClickInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub button: MouseButtonMessage,
    pub modifiers: Vec<ModifierKeyMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Double-click interrupt payload.
pub struct DoubleClickInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub button: MouseButtonMessage,
    pub modifiers: Vec<ModifierKeyMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Mouse-move interrupt payload.
pub struct MouseMoveInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub button: MouseButtonMessage,
    pub modifiers: Vec<ModifierKeyMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Wheel interrupt payload.
pub struct WheelInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub delta_x: f64,
    pub delta_y: f64,
    pub modifiers: Vec<ModifierKeyMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Mouse-down interrupt payload.
pub struct MouseDownInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub button: MouseButtonMessage,
    pub modifiers: Vec<ModifierKeyMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Mouse-up interrupt payload.
pub struct MouseUpInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub button: MouseButtonMessage,
    pub modifiers: Vec<ModifierKeyMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Mouse-over interrupt payload.
pub struct MouseOverInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub button: MouseButtonMessage,
    pub modifiers: Vec<ModifierKeyMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Mouse-out interrupt payload.
pub struct MouseOutInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub button: MouseButtonMessage,
    pub modifiers: Vec<ModifierKeyMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Context-menu interrupt payload.
pub struct ContextMenuInterruptArgs {
    pub x: f64,
    pub y: f64,
    pub button: MouseButtonMessage,
    pub modifiers: Vec<ModifierKeyMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Image-load response, either by pointer or copied metadata.
pub enum ImageLoadInterruptArgs {
    Reference(ImagePointerArgs),
    Data(ImageDataArgs),
}
#[derive(Deserialize)]
#[repr(C)]
/// Image-load payload carrying a pointer to chassis-owned image bytes.
pub struct ImagePointerArgs {
    pub id: u32,
    pub path: String,
    pub image_data: u64,
    pub image_data_length: usize,
    pub width: usize,
    pub height: usize,
}

#[derive(Deserialize)]
#[repr(C)]
/// Image-load payload carrying image metadata without a byte pointer.
pub struct ImageDataArgs {
    pub id: u32,
    pub path: String,
    pub width: usize,
    pub height: usize,
}

#[repr(C)]
/// Raw FFI buffer containing serialized interrupts.
pub struct InterruptBuffer {
    pub data_ptr: *const u8,
    pub length: u64,
}

#[repr(C)]
/// Raw FFI buffer containing serialized native messages.
pub struct NativeMessageQueue {
    pub data_ptr: *mut [u8],
    pub length: u64,
}

#[derive(Serialize)]
/// Serializable batch of native messages emitted for one runtime tick.
pub struct MessageQueue {
    pub messages: Vec<NativeMessage>,
}

#[derive(Deserialize)]
#[repr(C)]
/// Chassis acknowledgement that render layers were added.
pub struct AddedLayerArgs {
    pub num_layers_added: u32,
    #[serde(default)]
    pub layer_id: Option<u32>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize)]
#[repr(C)]
/// Create/update patch for a native frame host.
pub struct FramePatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub clip_content: Option<bool>,
    pub corner_radius: Option<f64>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub transform: Option<Vec<f64>>,
    pub clip_path: Option<String>,
    pub opacity: Option<f64>,
    pub presented_bounds: Option<[f64; 4]>,
    pub presented_clip_bounds: Option<[f64; 4]>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone, PartialEq)]
#[repr(C)]
/// Apple-specific native liquid-glass effect payload.
pub struct AppleLiquidGlassPatch {
    pub group_id: u32,
    pub spacing: f64,
    pub interactive: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tint: Option<ColorMessage>,
    pub variant: String,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize)]
#[repr(C)]
/// Create/update patch for a materialized native liquid-glass surface.
pub struct GlassSurfacePatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    pub corner_radius: Option<f64>,
    pub liquid_glass: Option<AppleLiquidGlassPatch>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone)]
#[repr(C)]
/// One vector coverage path entry for a native occlusion mask.
pub struct MaskPathPatch {
    pub path: String,
    pub clips: Vec<String>,
    pub opacity: Option<f64>,
}

impl PartialEq for MaskPathPatch {
    fn eq(&self, other: &Self) -> bool {
        self.path == other.path
            && self.clips == other.clips
            && self.opacity.map(f64::to_bits) == other.opacity.map(f64::to_bits)
    }
}

impl Eq for MaskPathPatch {}

impl std::hash::Hash for MaskPathPatch {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.path.hash(state);
        self.clips.hash(state);
        self.opacity.map(f64::to_bits).hash(state);
    }
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone, PartialEq)]
#[repr(C)]
/// Create/update patch for a native occlusion mask surface.
pub struct NativeMaskPatch {
    pub id: u32,
    pub size_x: f64,
    pub size_y: f64,
    pub entries: Vec<MaskPathPatch>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize)]
#[repr(C)]
/// Create/update patch for a native hit-test blocker with an optional solid background.
pub struct EventBlockerPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub transform: Option<Vec<f64>>,
    pub opacity: Option<f64>,
    pub background: Option<ColorMessage>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone)]
#[repr(C)]
/// Create/update patch for a native checkbox.
pub struct CheckboxPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub background: Option<ColorMessage>,
    pub background_checked: Option<ColorMessage>,
    pub outline_color: Option<ColorMessage>,
    pub outline_width: Option<f64>,
    pub corner_radius: Option<f64>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    pub checked: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub liquid_glass: Option<Option<AppleLiquidGlassPatch>>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone)]
#[repr(C)]
/// Create/update patch for a native image element.
pub struct NativeImagePatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    pub url: Option<String>,
    pub fit: Option<String>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone)]
#[repr(C)]
/// Create/update patch for an embedded YouTube video.
pub struct YoutubeVideoPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    pub url: Option<String>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone)]
#[repr(C)]
/// Create/update patch for a native dropdown/select element.
pub struct DropdownPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub selected_id: Option<u32>,
    pub options: Option<Vec<String>>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    pub background: Option<ColorMessage>,
    pub stroke_color: Option<ColorMessage>,
    pub stroke_width: Option<f64>,
    pub corner_radius: Option<f64>,
    pub style: Option<TextStyleMessage>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub liquid_glass: Option<Option<AppleLiquidGlassPatch>>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone)]
#[repr(C)]
/// Create/update patch for a native radio list.
pub struct RadioListPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub selected_id: Option<u32>,
    pub options: Option<Vec<String>>,
    pub style: Option<TextStyleMessage>,
    pub background_checked: Option<ColorMessage>,
    pub outline_color: Option<ColorMessage>,
    pub outline_width: Option<f64>,
    pub background: Option<ColorMessage>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub liquid_glass: Option<Option<AppleLiquidGlassPatch>>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone)]
#[repr(C)]
/// Create/update patch for a native slider.
pub struct SliderPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub value: Option<f64>,
    pub step: Option<f64>,
    pub min: Option<f64>,
    pub max: Option<f64>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    pub accent: Option<ColorMessage>,
    pub background: Option<ColorMessage>,
    pub corner_radius: Option<f64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub liquid_glass: Option<Option<AppleLiquidGlassPatch>>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone)]
#[repr(C)]
/// Create/update patch for a native textbox.
pub struct TextboxPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    pub text: Option<String>,
    pub background: Option<ColorMessage>,
    pub stroke_color: Option<ColorMessage>,
    pub stroke_width: Option<f64>,
    pub corner_radius: Option<f64>,
    pub style: Option<TextStyleMessage>,
    pub focus_on_mount: Option<bool>,
    pub placeholder: Option<String>,
    pub outline_color: Option<ColorMessage>,
    pub outline_width: Option<f64>,
    pub is_text_area: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub liquid_glass: Option<Option<AppleLiquidGlassPatch>>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize)]
#[repr(C)]
/// Create/update patch for a native button.
pub struct ButtonPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub hover_color: Option<ColorMessage>,
    pub outline_stroke_color: Option<ColorMessage>,
    pub outline_stroke_width: Option<f64>,
    pub corner_radius: Option<f64>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    pub content: Option<String>,
    pub color: Option<ColorMessage>,
    pub style: Option<TextStyleMessage>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub liquid_glass: Option<Option<AppleLiquidGlassPatch>>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone)]
#[repr(C)]
/// Create/update patch for a transparent native photo picker hit target.
pub struct PhotoPickerPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    pub trigger: Option<u64>,
    pub source: Option<String>,
    pub allow_multiple: Option<bool>,
    pub accept: Option<String>,
    pub include_bytes: Option<bool>,
    pub max_bytes_per_photo: Option<u64>,
}

#[derive(Default, Serialize)]
#[repr(C)]
/// Style payload shared by checkbox-like controls.
pub struct CheckboxStyleMessage {
    //pub fill: Option<ColorMessage>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize)]
#[repr(C)]
/// Request for the chassis to navigate to a URL.
pub struct NavigationPatch {
    pub url: String,
    pub target: String,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize)]
#[repr(C)]
/// Request for the chassis to update cursor style.
pub struct SetCursorPatch {
    pub cursor: String,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone)]
#[repr(C)]
/// Create/update patch for native or browser-managed text.
pub struct TextPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub content: Option<String>,
    pub editable: Option<bool>,
    pub selectable: Option<bool>,
    pub clip: Option<bool>,
    pub markdown: Option<bool>,
    pub wrap: Option<bool>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    pub style: Option<TextStyleMessage>,
    pub style_link: Option<TextStyleMessage>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub measure_generation: Option<u64>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone, PartialEq)]
#[repr(C)]
/// Serializable text style payload shared with chassis text renderers.
pub struct TextStyleMessage {
    pub font: Option<FontPatch>,
    pub font_size: Option<f64>,
    pub fill: Option<ColorMessage>,
    pub underline: Option<bool>,
    pub align_multiline: Option<TextAlignHorizontalMessage>,
    pub align_vertical: Option<TextAlignVerticalMessage>,
    pub align_horizontal: Option<TextAlignHorizontalMessage>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize)]
#[repr(C)]
/// Image-load request sent to the chassis.
pub struct ImagePatch {
    pub id: u32,
    pub path: Option<String>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Serialize, Clone, PartialEq)]
#[repr(C)]
/// Serializable color payload for native/chassis messages.
pub enum ColorMessage {
    Rgba([f64; 4]),
    Rgb([f64; 3]),
}

impl Default for ColorMessage {
    fn default() -> Self {
        ColorMessage::Rgba([1.0, 0.5, 0.0, 1.0])
    }
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone, PartialEq)]
#[repr(C)]
/// Serializable horizontal text alignment.
pub enum TextAlignHorizontalMessage {
    #[default]
    Left,
    Center,
    Right,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize, Clone, PartialEq)]
#[repr(C)]
/// Serializable vertical text alignment.
pub enum TextAlignVerticalMessage {
    #[default]
    Top,
    Center,
    Bottom,
}

#[derive(Serialize)]
#[repr(C)]
/// Serializable style payload for link text.
pub struct LinkStyleMessage {
    pub font: Option<FontPatch>,
    pub fill: Option<ColorMessage>,
    pub underline: Option<bool>,
    pub size: Option<f64>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize)]
#[repr(C)]
/// Create/update patch for a native/browser-owned scroller.
pub struct ScrollerPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_frame: Option<Option<u32>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub z_index: Option<i32>,
    pub transform: Option<Vec<f64>>,
    pub size_x: Option<f64>,
    pub size_y: Option<f64>,
    pub opacity: Option<f64>,
    pub clip_content: Option<bool>,
    pub corner_radius: Option<f64>,
    pub size_inner_pane_x: Option<f64>,
    pub size_inner_pane_y: Option<f64>,
    pub snap_points_x: Option<Vec<f64>>,
    pub snap_points_y: Option<Vec<f64>>,
    pub scroll_x: Option<f64>,
    pub scroll_y: Option<f64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub presentation_scroll_x: Option<f64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub presentation_scroll_y: Option<f64>,
    pub scroll_enabled_x: Option<bool>,
    pub scroll_enabled_y: Option<bool>,
    pub content_layer_id: Option<u32>,
    pub presented_bounds: Option<[f64; 4]>,
    pub presented_clip_bounds: Option<[f64; 4]>,
    pub subtree_depth: u32,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Serialize)]
#[repr(C)]
/// Common creation payload shared by native element families.
pub struct AnyCreatePatch {
    pub id: u32,
    pub parent_frame: Option<u32>,
    pub render_layer_id: u32,
}

// Possible approach to heterogeneous rich text:
// #[repr(C)]
// pub struct TextCommand {
//     pub set_font: Option<String>,
//     pub set_weight: Option<String>,
//     pub set_fill_color: Option<String>,
//     pub set_stroke_color: Option<String>,
//     pub set_decoration: Option<String>,
// }

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Serialize, Clone, PartialEq)]
#[repr(C)]
/// Serializable font selection payload.
pub enum FontPatch {
    System(SystemFontMessage),
    Web(WebFontMessage),
    Local(LocalFontMessage),
}

impl Default for FontPatch {
    fn default() -> Self {
        Self::System(SystemFontMessage::default())
    }
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Serialize, Clone, PartialEq)]
#[repr(C)]
/// System font family payload.
pub struct SystemFontMessage {
    pub family: Option<String>,
    pub style: Option<FontStyleMessage>,
    pub weight: Option<FontWeightMessage>,
}

impl Default for SystemFontMessage {
    fn default() -> Self {
        Self {
            family: Some("Brush Script MT".to_string()),
            style: Some(FontStyleMessage::Normal),
            weight: Some(FontWeightMessage::Normal),
        }
    }
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Serialize, Clone, PartialEq)]
#[repr(C)]
/// Web font payload, including family and source URL.
pub struct WebFontMessage {
    pub family: Option<String>,
    pub url: Option<String>,
    pub style: Option<FontStyleMessage>,
    pub weight: Option<FontWeightMessage>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Serialize, Clone, PartialEq)]
#[repr(C)]
/// Local bundled font payload.
pub struct LocalFontMessage {
    pub family: Option<String>,
    pub path: Option<String>,
    pub style: Option<FontStyleMessage>,
    pub weight: Option<FontWeightMessage>,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Clone, Serialize, PartialEq)]
#[repr(C)]
/// Serializable font-style value.
pub enum FontStyleMessage {
    Normal,
    Italic,
    Oblique,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Clone, Serialize, PartialEq)]
#[repr(C)]
/// Serializable font-weight value.
pub enum FontWeightMessage {
    Thin,
    ExtraLight,
    Light,
    Normal,
    Medium,
    SemiBold,
    Bold,
    ExtraBold,
    Black,
}

#[cfg_attr(debug_assertions, derive(Debug))]
#[derive(Default, Serialize)]
#[repr(C)]
/// Request to capture a screenshot from the chassis.
pub struct ScreenshotPatch {
    pub id: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub scale: Option<f64>,
}

#[derive(Serialize, Deserialize)]
/// Completed screenshot bytes returned by the chassis.
pub struct ScreenshotData {
    pub id: u32,
    pub data: Vec<u8>,
    pub width: usize,
    pub height: usize,
}

#[derive(Serialize, Deserialize)]
/// Completed screenshot bytes for one physical surface within a logical canvas layer.
pub struct LayerSurfaceScreenshotData {
    pub id: u32,
    pub key: String,
    pub data: Vec<u8>,
    pub width: usize,
    pub height: usize,
    pub origin_x: f32,
    pub origin_y: f32,
    pub logical_width: f32,
    pub logical_height: f32,
}