-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Unit1.dfm
6296 lines (6281 loc) · 186 KB
/
Unit1.dfm
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
object Form1: TForm1
Width = 1280
Height = 400
Color = clBlack
CSSLibrary = cssBootstrap
ElementFont = efCSS
Shadow = False
OnClick = MiletusFormClick
OnCreate = MiletusFormCreate
OnKeyDown = MiletusFormKeyDown
OnMouseMove = MiletusFormMouseMove
ClientHeight = 400
ClientWidth = 1280
BorderStyle = bsNoneBorder
Position = poScreenCenter
ScreenSnap = True
object divBackground: TWebHTMLDiv
Left = 0
Top = 0
Width = 1280
Height = 400
ElementID = 'divBackground'
ChildOrder = 16
ElementFont = efCSS
Role = ''
OnClick = divBackgroundClick
end
object pages: TWebPageControl
Left = -4
Top = 0
Width = 1280
Height = 400
HelpType = htKeyword
ElementClassName = 'Page'
ElementID = 'pages'
ElementFont = efCSS
TabIndex = 0
ShowTabs = False
TabOrder = 0
Visible = False
object pageConfiguration: TWebTabSheet
Tag = 4
Left = 0
Top = 20
Width = 1280
Height = 380
ElementClassName = 'Page'
ElementID = 'pageConfiguration'
Caption = 'Cf'
ChildOrder = 3
ElementFont = efCSS
ShowCaption = False
TabVisible = False
object titleCatheedral: TWebLabel
Left = 40
Top = 10
Width = 390
Height = 50
AutoSize = False
Caption = 'Catheedral'
ElementLabelClassName = 'Title'
ElementID = 'titleCatheedral'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -43
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
end
object dataConfigVERSION: TWebLabel
Left = 209
Top = 20
Width = 66
Height = 40
AutoSize = False
Caption = 'Unknown'
ElementClassName = 'd-none'
ElementLabelClassName = 'Label Data'
ElementID = 'dataConfigVERSION'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
end
object divConfigURL: TWebHTMLDiv
Left = 40
Top = 85
Width = 700
Height = 40
ElementClassName = 'overflow-visible'
ElementID = 'divConfigURL'
ChildOrder = 1
ElementFont = efCSS
Role = ''
object lablelConfigURL: TWebLabel
Left = 0
Top = 0
Width = 150
Height = 40
Align = alLeft
Alignment = taRightJustify
AutoSize = False
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigURL'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
HTML =
'<div class="d-flex justify-content-end align-items-center"><icon' +
'ify-icon icon="mdi:home-assistant" class="pe-2" style="color:#33' +
'99CC;font-size:28px;"></iconify-icon><div>HA URL</div></div>'
ParentFont = False
WidthPercent = 100.000000000000000000
end
object editConfigURL: TWebEdit
Left = 150
Top = 0
Width = 550
Height = 40
Align = alClient
ChildOrder = 1
ElementClassName = 'ConfigEdit'
ElementID = 'editConfigURL'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
SpellCheck = False
TabOrder = 100
TextHint = 'Enter Home Assistant URL'
WidthPercent = 100.000000000000000000
OnChange = editConfigURLChange
end
end
object divConfigTOKEN: TWebHTMLDiv
Left = 40
Top = 125
Width = 700
Height = 40
ElementClassName = 'overflow-visible'
ElementID = 'divConfigTOKEN'
ChildOrder = 1
ElementFont = efCSS
Role = ''
object labelConfigTOKEN: TWebLabel
Left = 0
Top = 0
Width = 150
Height = 40
Align = alLeft
Alignment = taRightJustify
AutoSize = False
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigTOKEN'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
HTML =
'<div class="d-flex justify-content-end align-items-center"><icon' +
'ify-icon icon="mdi:home-assistant" class="pe-2" style="color:#33' +
'99CC;font-size:28px;"></iconify-icon><div>HA Token</div></div>'
ParentFont = False
WidthPercent = 100.000000000000000000
end
object editConfigTOKEN: TWebEdit
Left = 150
Top = 0
Width = 550
Height = 40
Align = alClient
ChildOrder = 1
ElementClassName = 'ConfigEdit'
ElementID = 'editConfigTOKEN'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
SpellCheck = False
TabOrder = 101
TextHint = 'Enter Home Assistant Long-Lived Token'
WidthPercent = 100.000000000000000000
OnChange = editConfigTOKENChange
end
end
object divConfigBACKGROUND: TWebHTMLDiv
Left = 40
Top = 165
Width = 700
Height = 40
ElementClassName = 'Holder'
ElementID = 'divConfigBACKGROUND'
ChildOrder = 1
ElementFont = efCSS
Role = ''
object labelConfigBACKGROUND: TWebLabel
Left = 0
Top = 0
Width = 150
Height = 40
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Background'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigBACKGROUND'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
end
object editConfigBACKGROUND: TWebEdit
Left = 150
Top = 0
Width = 520
Height = 40
Align = alClient
ChildOrder = 1
ElementClassName = 'ConfigEdit'
ElementID = 'editConfigBACKGROUND'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
SpellCheck = False
TabOrder = 102
TextHint = 'Enter Background CSS Style'
WidthPercent = 100.000000000000000000
OnChange = editConfigBACKGROUNDChange
end
object btnListBackgrounds: TWebButton
Left = 670
Top = 0
Width = 30
Height = 40
Align = alRight
Caption = '<i class="fa-solid fa-caret-down"></i>'
ChildOrder = 2
ElementClassName = 'ConfigListButton btn btn-light opacity-75'
ElementID = 'btnListBackgrounds'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
TabOrder = 103
WidthPercent = 100.000000000000000000
OnClick = btnListBackgroundsClick
end
end
object divConfigLONGDATE: TWebHTMLDiv
Left = 40
Top = 205
Width = 700
Height = 40
ElementClassName = 'overflow-visible'
ElementID = 'divConfigLONGDATE'
ChildOrder = 1
ElementFont = efCSS
Role = ''
object labelConfigLONGTIME: TWebLabel
Left = 440
Top = 0
Width = 80
Height = 40
Align = alRight
Alignment = taCenter
AutoSize = False
Caption = 'Time'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigLONGTIME'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitLeft = 537
end
object labelConfigLONGDATE: TWebLabel
Left = 0
Top = 0
Width = 150
Height = 40
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Date (Long)'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigLONGDATE'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitTop = -6
end
object editConfigLONGDATE: TWebEdit
Left = 150
Top = 0
Width = 260
Height = 40
Align = alClient
ChildOrder = 1
ElementClassName = 'ConfigEdit'
ElementID = 'editConfigLONGDATE'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
MaxLength = 50
SpellCheck = False
TabOrder = 104
TextHint = 'Enter Long Date Format'
WidthPercent = 100.000000000000000000
OnChange = editConfigChange
end
object editConfigLONGTIME: TWebEdit
Left = 520
Top = 0
Width = 150
Height = 40
Align = alRight
ChildOrder = 1
ElementClassName = 'ConfigEdit'
ElementID = 'editConfigLONGTIME'
ElementFont = efCSS
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
MaxLength = 50
SpellCheck = False
TabOrder = 106
TextHint = 'Long'
WidthPercent = 100.000000000000000000
OnChange = editConfigChange
end
object btnListTimesLong: TWebButton
Left = 670
Top = 0
Width = 30
Height = 40
Align = alRight
Caption = '<i class="fa-solid fa-caret-down"></i>'
ChildOrder = 2
ElementClassName = 'ConfigListButton btn btn-light opacity-75'
ElementID = 'btnListTimesLong'
ElementFont = efCSS
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
TabOrder = 107
WidthPercent = 100.000000000000000000
OnClick = btnListTimesLongClick
end
object btnListDatesLong: TWebButton
Left = 410
Top = 0
Width = 30
Height = 40
Align = alRight
Caption = '<i class="fa-solid fa-caret-down"></i>'
ChildOrder = 2
ElementClassName = 'ConfigListButton btn btn-light opacity-75'
ElementID = 'btnListDatesLong'
ElementFont = efCSS
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
TabOrder = 105
WidthPercent = 100.000000000000000000
OnClick = btnListDatesLongClick
end
end
object divConfigSHORTDATE: TWebHTMLDiv
Left = 40
Top = 245
Width = 700
Height = 40
ElementClassName = 'overflow-visible'
ElementID = 'divConfigSHORTDATE'
ChildOrder = 1
ElementFont = efCSS
Role = ''
object labelConfigSHORTTIME: TWebLabel
Left = 440
Top = 0
Width = 80
Height = 40
Align = alRight
Alignment = taCenter
AutoSize = False
Caption = 'Time'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigSHORTTIME'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitLeft = 537
end
object labelConfigSHJORTDATE: TWebLabel
Left = 0
Top = 0
Width = 150
Height = 40
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Date (Short)'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigLONGDATE'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
end
object editConfigSHORTDATE: TWebEdit
Left = 150
Top = 0
Width = 260
Height = 40
Align = alClient
ChildOrder = 1
ElementClassName = 'ConfigEdit'
ElementID = 'editConfigSHORTDATE'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
MaxLength = 50
SpellCheck = False
TabOrder = 108
TextHint = 'Enter Short Date Format'
WidthPercent = 100.000000000000000000
OnChange = editConfigChange
end
object editConfigSHORTTIME: TWebEdit
Left = 520
Top = 0
Width = 150
Height = 40
Align = alRight
ChildOrder = 1
ElementClassName = 'ConfigEdit'
ElementID = 'editConfigSHORTTIME'
ElementFont = efCSS
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
MaxLength = 50
SpellCheck = False
TabOrder = 110
TextHint = 'Short'
WidthPercent = 100.000000000000000000
OnChange = editConfigChange
end
object btnListTimesShort: TWebButton
Left = 670
Top = 0
Width = 30
Height = 40
Align = alRight
Caption = '<i class="fa-solid fa-caret-down"></i>'
ChildOrder = 2
ElementClassName = 'ConfigListButton btn btn-light opacity-75'
ElementID = 'btnListTimesShort'
ElementFont = efCSS
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
TabOrder = 111
WidthPercent = 100.000000000000000000
OnClick = btnListTimesShortClick
end
object btnListDatesShort: TWebButton
Left = 410
Top = 0
Width = 30
Height = 40
Align = alRight
Caption = '<i class="fa-solid fa-caret-down"></i>'
ChildOrder = 2
ElementClassName = 'ConfigListButton btn btn-light opacity-75'
ElementID = 'btnListDatesShort'
ElementFont = efCSS
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
TabOrder = 109
WidthPercent = 100.000000000000000000
OnClick = btnListDatesShortClick
end
end
object divConfigRELEASE: TWebHTMLDiv
Left = 770
Top = 85
Width = 470
Height = 40
ElementClassName = 'overflow-visible'
ElementID = 'divConfigRELEASE'
ChildOrder = 1
ElementFont = efCSS
Role = ''
object labelConfigRELEASE: TWebLabel
Left = 0
Top = 0
Width = 150
Height = 40
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Released'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigRELEASE'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitLeft = 4
ExplicitTop = -3
end
object dataConfigRELEASE: TWebLabel
Left = 160
Top = 0
Width = 310
Height = 40
Align = alRight
AutoSize = False
Caption = 'Unknown'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label Data'
ElementID = 'dataConfigRELEASE'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitLeft = 439
end
end
object divConfigSYSTEMDATE: TWebHTMLDiv
Left = 770
Top = 125
Width = 470
Height = 40
ElementClassName = 'overflow-visible'
ElementID = 'divConfigSYSTEMDATE'
ChildOrder = 1
ElementFont = efCSS
Role = ''
object labelConfigSYSTEMDATE: TWebLabel
Left = 0
Top = 0
Width = 150
Height = 40
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'System Date'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigSYSTEMDATE'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitLeft = -6
ExplicitTop = 6
end
object dataConfigSYSTEMDATE: TWebLabel
Left = 160
Top = 0
Width = 310
Height = 40
Align = alRight
AutoSize = False
Caption = 'Unknown'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label Data'
ElementID = 'dataConfigSYSTEMDATE'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitLeft = 439
end
end
object divConfigSYSTEMTIME: TWebHTMLDiv
Left = 770
Top = 165
Width = 470
Height = 40
ElementClassName = 'overflow-visible'
ElementID = 'divConfigSYSTEMTIME'
ChildOrder = 1
ElementFont = efCSS
Role = ''
object labelConfigSYSTEMTIME: TWebLabel
Left = 0
Top = 0
Width = 150
Height = 40
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'System Time'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigSYSTEMTIME'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
end
object dataConfigSYSTEMTIME: TWebLabel
Left = 160
Top = 0
Width = 310
Height = 40
Align = alRight
AutoSize = False
Caption = 'Unknown'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label Data'
ElementID = 'dataConfigSYSTEMTIME'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitLeft = 439
end
end
object divConfigSTATUS: TWebHTMLDiv
Left = 270
Top = 10
Width = 970
Height = 50
ElementClassName = 'overflow-visible'
ElementID = 'divConfigSTATUS'
ChildOrder = 1
ElementFont = efCSS
Role = ''
object labelConfigSTATUS: TWebLabel
Left = 0
Top = 0
Width = 650
Height = 50
Cursor = crHandPoint
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Status'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Title Status d-block w-100 text-end'
ElementID = 'lableConfigSTATUS'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
OnClick = labelConfigSTATUSClick
end
object dataConfigSTATUS: TWebLabel
Left = 660
Top = 0
Width = 310
Height = 50
Cursor = crHandPoint
Align = alRight
AutoSize = False
Caption = 'Offline'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Title StatusBad'
ElementID = 'dataConfigSTATUS'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
OnClick = dataConfigSTATUSClick
end
end
object divConfigSTARTDATE: TWebHTMLDiv
Left = 770
Top = 205
Width = 470
Height = 40
ElementClassName = 'overflow-visible'
ElementID = 'divConfigSTARTDATE'
ChildOrder = 1
ElementFont = efCSS
Role = ''
object labelConfigSTARTDATE: TWebLabel
Left = 0
Top = 0
Width = 150
Height = 40
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Start Date'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigSTARTDATE'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitLeft = 4
ExplicitTop = -3
end
object dataConfigSTARTDATE: TWebLabel
Left = 160
Top = 0
Width = 310
Height = 40
Align = alRight
AutoSize = False
Caption = 'Unknown'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label Data'
ElementID = 'dataConfigSTARTDATE'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitLeft = 163
ExplicitTop = -6
end
end
object divConfigSTARTTIME: TWebHTMLDiv
Left = 770
Top = 245
Width = 470
Height = 40
ElementClassName = 'overflow-visible'
ElementID = 'divConfigSTARTTIME'
ChildOrder = 1
ElementFont = efCSS
Role = ''
object labelConfigSTARTTIME: TWebLabel
Left = 0
Top = 0
Width = 150
Height = 40
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Start Time'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label'
ElementID = 'labelConfigSTARTTIME'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitLeft = -6
ExplicitTop = 6
end
object dataConfigSTARTTIME: TWebLabel
Left = 160
Top = 0
Width = 310
Height = 40
Align = alRight
AutoSize = False
Caption = 'Unknown'
ElementClassName = 'overflow-visible'
ElementLabelClassName = 'Label Data'
ElementID = 'dataConfigSTARTTIME'
ElementFont = efCSS
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Tahoma'
Font.Style = []
HeightStyle = ssAuto
HeightPercent = 100.000000000000000000
ParentFont = False
WidthPercent = 100.000000000000000000
ExplicitLeft = 439
end
end
object btnHALinks: TWebButton
Left = 53
Top = 320
Width = 200
Height = 60
Caption =
'<div class="d-flex align-items-center justify-content-stretch fl' +
'ex-row"><i class="fa-solid fa-right-left fa-fw" style="color:bla' +
'ck; font-size:24px;"></i><div class="pe-2" style="color:#3399CC;' +
' font-size:32px; height:40px;"><iconify-icon icon="mdi:home-assi' +
'stant"></iconify-icon></div><div class="lh-1" style="color:black' +
';text-align:left;">Update Links to<br />Home Assistant</div></di' +
'v>'
ChildOrder = 14
ElementClassName = 'btn btn-light opacity-25 ConfigButton'
ElementID = 'btnHALinks'
ElementFont = efCSS
Enabled = False
HeightPercent = 100.000000000000000000
TabOrder = 112
WidthPercent = 100.000000000000000000
OnClick = btnHALinksClick
end
object btnHASaveConfiguration: TWebButton
Left = 270
Top = 320
Width = 220
Height = 60
Caption =
'<div class="d-flex align-items-center justify-content-stretch fl' +
'ex-row"><i class="fa-solid fa-right-long fa-fw" style="color:bla' +
'ck; font-size:24px;"></i><iconify-icon icon="mdi:home-assistant"' +
' class="pe-2" style="color:#3399CC; font-size:32px;"></iconify-i' +
'con><div class="lh-1" style="color:black;text-align:left;">Save ' +
'Configuration<br />to Home Assistant</div></div>'
ChildOrder = 14
ElementClassName = 'btn btn-light opacity-25 ConfigButton'
ElementID = 'btnHASaveConfiguration'
ElementFont = efCSS
Enabled = False
HeightPercent = 100.000000000000000000
TabOrder = 113
WidthPercent = 100.000000000000000000
OnClick = btnHASaveConfigurationClick
end
object btnHALoadConfiguration: TWebButton
Left = 507
Top = 320
Width = 235
Height = 60
Caption =
'<div class="d-flex align-items-center justify-content-stretch fl' +
'ex-row"><iconify-icon icon="mdi:home-assistant" style="color:#33' +
'99CC; font-size:32px;"></iconify-icon><i class="fa-solid fa-righ' +
't-long fa-fw" style="color:black; font-size:24px;"></i><div clas' +
's="lh-1 ps-2" style="color:black;text-align:left;">Load Configur' +
'ation<br />from Home Assistant</div></div>'
ChildOrder = 14
ElementClassName = 'btn btn-light opacity-25 ConfigButton'
ElementID = 'btnHALoadConfiguration'
ElementFont = efCSS
Enabled = False
HeightPercent = 100.000000000000000000
TabOrder = 114
WidthPercent = 100.000000000000000000
OnClick = btnHALoadConfigurationClick
end
object listBackgrounds: TWebListBox
Left = 214
Top = 184
Width = 411
Height = 15
ElementClassName = 'ConfigList'
ElementID = 'listBackgrounds'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
ItemHeight = 13
WidthPercent = 100.000000000000000000
OnChange = listBackgroundsChange
Items.Strings = (
'images/background_orion_nebula.jpg'
'images/background_cosmic_cliffs.jpg'
'images/background_protostar.jpg'
'images/walking.gif'
'linear-gradient(30deg, rgba(255,0,0,1) 0%, rgba(0,0,0,1) 20%, rg' +
'ba(255,0,0,1) 40%,rgba(0,0,0,1) 60%, rgba(255,0,0,1) 80%, rgba(0' +
',0,0,1) 100%)'
'background: linear-gradient(27deg, #151515 5px, transparent 5px)' +
' 0 5px, linear-gradient(207deg, #151515 5px, transparent 5px) 10' +
'px 0px, linear-gradient(27deg, #222 5px, transparent 5px) 0px 10' +
'px, linear-gradient(207deg, #222 5px, transparent 5px) 10px 5px,' +
' linear-gradient(90deg, #1b1b1b 10px, transparent 10px), linear-' +
'gradient(#1d1d1d 25%, #1a1a1a 25%, #1a1a1a 50%, transparent 50%,' +
' transparent 75%, #242424 75%, #242424); background-color: #1313' +
'13; background-size: 20px 20px;'
'background-color: #000000;background-image: url("data:image/svg+' +
'xml,%3Csvg width='#39'84'#39' height='#39'48'#39' viewBox='#39'0 0 84 48'#39' xmlns='#39'htt' +
'p://www.w3.org/2000/svg'#39'%3E%3Cpath d='#39'M0 0h12v6H0V0zm28 8h12v6H2' +
'8V8zm14-8h12v6H42V0zm14 0h12v6H56V0zm0 8h12v6H56V8zM42 8h12v6H42' +
'V8zm0 16h12v6H42v-6zm14-8h12v6H56v-6zm14 0h12v6H70v-6zm0-16h12v6' +
'H70V0zM28 32h12v6H28v-6zM14 16h12v6H14v-6zM0 24h12v6H0v-6zm0 8h1' +
'2v6H0v-6zm14 0h12v6H14v-6zm14 8h12v6H28v-6zm-14 0h12v6H14v-6zm28' +
' 0h12v6H42v-6zm14-8h12v6H56v-6zm0-8h12v6H56v-6zm14 8h12v6H70v-6z' +
'm0 8h12v6H70v-6zM14 24h12v6H14v-6zm14-8h12v6H28v-6zM14 8h12v6H14' +
'V8zM0 8h12v6H0V8z'#39' fill='#39'%23ff0000'#39' fill-opacity='#39'0.4'#39' fill-rule' +
'='#39'evenodd'#39'/%3E%3C/svg%3E");'
'aqua'
'black'
'blue'
'fuchsia'
'gray'
'green'
'lime'
'maroon'
'navy'
'olive'