-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUnit1.dfm
More file actions
1239 lines (1239 loc) · 39.4 KB
/
Unit1.dfm
File metadata and controls
1239 lines (1239 loc) · 39.4 KB
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 = 1161
Height = 666
Caption = 'LabelsExample'
CSSLibrary = cssBootstrap
ElementFont = efCSS
OnCreate = WebFormCreate
object divLabelsList: TWebHTMLDiv
AlignWithMargins = True
Left = 5
Top = 5
Width = 300
Height = 656
Margins.Left = 5
Margins.Top = 5
Margins.Right = 4
Margins.Bottom = 5
ElementClassName = 'rounded border overflow-hidden border-secondary bg-dark'
ElementID = 'divLabelsList'
Align = alLeft
ElementFont = efCSS
HTML.Strings = (
'<div style="font-size:16px;">'
' <span style="color: white"><No Label Selected></span>'
'</div>')
Role = ''
object TMSFNCBitmapContainer1: TTMSFNCBitmapContainer
Left = 72
Top = 440
Width = 26
Height = 26
Visible = True
Items = <>
end
end
object divMain: TWebHTMLDiv
AlignWithMargins = True
Left = 318
Top = 5
Width = 838
Height = 656
Margins.Top = 5
Margins.Right = 5
Margins.Bottom = 5
ElementID = 'divMain'
Align = alClient
ChildOrder = 1
ElementFont = efCSS
Role = ''
object divTop: TWebHTMLDiv
Left = 0
Top = 0
Width = 838
Height = 40
ElementID = 'divTop'
Align = alTop
ChildOrder = 1
Role = ''
object divButtonHolder: TWebPanel
Left = 0
Top = 0
Width = 529
Height = 40
ElementClassName = 'border border-0 bg-none'
ElementID = 'divButtonHolder'
Align = alLeft
BorderColor = clNone
Color = clWindow
ElementBodyClassName = 'btn btn-group'
ElementFont = efCSS
object btnPagePrint: TWebButton
Left = 0
Top = 0
Width = 96
Height = 40
Align = alLeft
Caption = '<i class="fa-solid fa-print pe-1"></i> Print Labels'
ElementClassName = 'btn btn-primary px-3'
ElementID = 'btnPagePrint'
ElementFont = efCSS
ElementPosition = epIgnore
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnPagePrintClick
end
object btnPageEdit: TWebButton
Left = 96
Top = 0
Width = 96
Height = 40
Align = alLeft
Caption = '<i class="fa-solid fa-pencil pe-1"></i> Edit Labels'
ChildOrder = 1
ElementClassName = 'btn btn-secondary px-3'
ElementID = 'btnPageEdit'
ElementFont = efCSS
ElementPosition = epIgnore
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnPageEditClick
end
object btnPageData: TWebButton
Left = 192
Top = 0
Width = 96
Height = 40
Align = alLeft
Caption = '<i class="fa-solid fa-table pe-1"></i> Label Data'
ChildOrder = 2
ElementClassName = 'btn btn-secondary px-3'
ElementID = 'btnPageEdit'
ElementFont = efCSS
ElementPosition = epIgnore
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnPageDataClick
end
end
end
object pageControl: TWebPageControl
AlignWithMargins = True
Left = 1
Top = 45
Width = 837
Height = 610
Margins.Left = 1
Margins.Top = 5
Margins.Right = 0
Margins.Bottom = 1
ElementID = 'pageControl'
Align = alClient
ChildOrder = 1
ElementFont = efCSS
TabIndex = 0
ShowTabs = False
TabOrder = 1
object pagePrint: TWebTabSheet
Left = 0
Top = 20
Width = 837
Height = 590
ElementClassName = 'rounded border border-secondary bg-dark overflow-visible'
ElementID = 'pagePrint'
Align = alClient
Caption = 'Print'
ElementFont = efCSS
ShowCaption = False
TabVisible = False
object divPrintButtonsHolder: TWebHTMLDiv
AlignWithMargins = True
Left = 5
Top = 5
Width = 827
Height = 42
Margins.Left = 5
Margins.Top = 5
Margins.Right = 5
Margins.Bottom = 5
ElementClassName = 'rounded border border-secondary'
ElementID = 'divPrintButtonsHolder'
Align = alTop
ElementFont = efCSS
Role = ''
object labelPrintLabel: TWebLabel
AlignWithMargins = True
Left = 3
Top = 3
Width = 220
Height = 36
Align = alLeft
AutoSize = False
ElementClassName = 'text-white bg-secondary rounded-1'
ElementID = 'labelPrintLabel'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
HTML = '<div style="font-size: 13px;" class="px-2">Selected Label</div>'
Layout = tlCenter
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
ExplicitHeight = 13
end
object labelPrint: TWebLabel
AlignWithMargins = True
Left = 229
Top = 3
Width = 329
Height = 36
Align = alClient
ChildOrder = 1
ElementLabelClassName = 'pt-1 px-2'
ElementID = 'labelPrint'
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
ExplicitWidth = 3
ExplicitHeight = 13
end
object btnPrintDelete: TWebButton
AlignWithMargins = True
Left = 773
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Margins.Right = 4
Align = alRight
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-trash-can pe-1"></i> Delete Label</span>'
ChildOrder = 6
ElementClassName = 'btn btn-sm btn-danger'
ElementID = 'btnPrintDelete'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnPrintDeleteClick
end
object btnPrintRename: TWebButton
AlignWithMargins = True
Left = 561
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Align = alRight
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-pencil pe-1"></i> Rename Label</span>'
ChildOrder = 2
ElementClassName = 'btn btn-sm btn-success'
ElementID = 'btnPrintRename'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnPrintRenameClick
end
object btnPrintClone: TWebButton
AlignWithMargins = True
Left = 614
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Align = alRight
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-clone pe-1"></i> Clone</span>'
ChildOrder = 3
ElementClassName = 'btn btn-sm btn-success'
ElementID = 'btnPrintClone'
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnPrintCloneClick
end
object btnPrintExport: TWebButton
AlignWithMargins = True
Left = 667
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Align = alRight
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-download pe-1"></i> Export</span>'
ChildOrder = 4
ElementClassName = 'btn btn-sm btn-success'
ElementID = 'btnPrintExport'
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
end
object btnPrintImport: TWebButton
AlignWithMargins = True
Left = 720
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Align = alRight
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-upload pe-1"></i> Import</span>'
ChildOrder = 5
ElementClassName = 'btn btn-sm btn-success'
ElementID = 'btnPrintImport'
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
end
end
object divPrintingButtonsHolder: TWebHTMLDiv
AlignWithMargins = True
Left = 5
Top = 543
Width = 827
Height = 42
Margins.Left = 5
Margins.Top = 5
Margins.Right = 5
Margins.Bottom = 5
ElementClassName =
'overflow-hidden rounded border border-secondary d-flex justify-c' +
'ontent-center align-items-center'
ElementID = 'divPrintingButtonsHolder'
Align = alBottom
ChildOrder = 4
Role = ''
object TMSFNCWXPDFToolbar1: TTMSFNCWXPDFToolbar
Left = 0
Top = 0
Width = 356
Height = 42
Align = alLeft
BevelEdges = []
BevelInner = bvNone
BevelOuter = bvNone
ParentDoubleBuffered = False
Color = clNone
DoubleBuffered = True
TabOrder = 2
Appearance.ItemWidth = 35.000000000000000000
Appearance.Stroke.Color = clBlack
Appearance.StrokeHover.Color = 10061943
Appearance.FillHover.Color = 13419707
Appearance.StrokeDown.Color = 9470064
Appearance.FillDown.Color = 13156536
Appearance.StrokeSelected.Color = 5197615
Appearance.FillSelected.Color = 13156536
Appearance.StrokeDisabled.Color = 11119017
Appearance.FillDisabled.Color = clSilver
Appearance.Font.Charset = DEFAULT_CHARSET
Appearance.Font.Color = clWindowText
Appearance.Font.Height = -11
Appearance.Font.Name = 'Tahoma'
Appearance.Font.Style = []
Items = <
item
Visible = False
end
item
Enabled = False
PDFRole = trFirstPage
end
item
Enabled = False
PDFRole = trPreviousPage
end
item
Enabled = False
PDFRole = trNextPage
end
item
Enabled = False
PDFRole = trLastPage
end
item
PDFRole = trZoomOut
end
item
PDFRole = trZoomIn
end
item
PDFRole = trRotateLeft
end
item
PDFRole = trRotateRight
end>
Viewer = TMSFNCWXPDFViewer1
end
object btnPrintPDF: TWebButton
AlignWithMargins = True
Left = 392
Top = 3
Width = 96
Height = 34
Margins.Left = 0
Margins.Right = 2
Caption =
'<span class="px-2 mx-2" style="font-size:13px;"><i class="fa-sol' +
'id fa-print pe-1"></i>Print PDF</span>'
ChildOrder = 2
ElementClassName = 'btn btn-sm btn-primary me-1'
ElementID = 'btnPrintPDF'
ElementFont = efCSS
ElementPosition = epIgnore
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnPrintPDFClick
end
object btnDownloadPDF: TWebButton
AlignWithMargins = True
Left = 593
Top = 3
Width = 96
Height = 34
Margins.Left = 2
Caption =
'<span class="px-2 mx-2" style="font-size:13px;"><i class="fa-sol' +
'id fa-download pe-1"></i>Download PDF</span>'
ChildOrder = 2
ElementClassName = 'btn btn-sm btn-success'
ElementID = 'btnDownloadPDF'
ElementFont = efCSS
ElementPosition = epIgnore
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnDownloadPDFClick
end
object btnUploadPDF: TWebButton
AlignWithMargins = True
Left = 492
Top = 3
Width = 96
Height = 34
Margins.Left = 2
Caption =
'<span class="px-2 mx-2" style="font-size:13px;"><i class="fa-sol' +
'id fa-upload pe-1"></i>Upload PDF</span>'
ChildOrder = 2
ElementClassName = 'btn btn-sm btn-success me-1'
ElementID = 'btnUploadPDF'
ElementFont = efCSS
ElementPosition = epIgnore
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnUploadPDFClick
end
end
object divPrintHolder: TWebHTMLDiv
Left = 0
Top = 52
Width = 837
Height = 486
ElementID = 'divPrintHolder'
Align = alClient
ChildOrder = 5
Role = ''
object divPrintOptionsHolder: TWebHTMLDiv
AlignWithMargins = True
Left = 5
Top = 0
Width = 827
Height = 200
Margins.Left = 5
Margins.Top = 0
Margins.Right = 5
Margins.Bottom = 4
ElementClassName = 'rounded border border-secondary'
ElementID = 'divPrintOptionsHolder'
Align = alTop
ChildOrder = 1
ElementFont = efCSS
Role = ''
object btnGenerateLabelPDF: TWebButton
Left = 3
Top = 3
Width = 96
Height = 35
Caption = 'Generate Labels'
ElementClassName = 'btn btn-primary btn-sm'
ElementID = 'btnGenerateLabelPDF'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnGenerateLabelPDFClick
end
object divTest: TWebHTMLDiv
Left = 280
Top = 10
Width = 432
Height = 145
ElementID = 'divTest'
ChildOrder = 1
ElementFont = efCSS
Role = ''
end
end
object splitterPrint: TWebSplitter
AlignWithMargins = True
Left = 75
Top = 204
Width = 687
Height = 6
Cursor = crVSplit
Margins.Left = 75
Margins.Top = 0
Margins.Right = 75
Margins.Bottom = 0
ElementClassName = 'rounded'
ElementID = 'splitterPrint'
Align = alTop
ChildOrder = 2
Color = clGray
GripColor = clGray
end
object divPrintPreviewHolder: TWebHTMLDiv
AlignWithMargins = True
Left = 5
Top = 214
Width = 827
Height = 272
Margins.Left = 5
Margins.Top = 4
Margins.Right = 5
Margins.Bottom = 0
ElementClassName = 'overflow-hidden rounded border border-secondary'
ElementID = 'divPrintPreviewHolder'
Align = alClient
ChildOrder = 3
ElementFont = efCSS
Role = ''
object TMSFNCWXPDFViewer1: TTMSFNCWXPDFViewer
Left = 200
Top = 0
Width = 627
Height = 272
Align = alClient
ParentDoubleBuffered = False
DoubleBuffered = True
TabOrder = 0
CalculateThumbnails = True
Zoom = 1.000000000000000000
ThumbnailSize = 150
end
object TMSFNCWXPDFThumbnailList1: TTMSFNCWXPDFThumbnailList
Left = 0
Top = 0
Width = 200
Height = 272
Align = alLeft
ParentDoubleBuffered = False
DoubleBuffered = True
TabOrder = 1
Appearance.Stroke.Color = 11119017
Appearance.StrokeHover.Color = 10061943
Appearance.FillHover.Color = 13419707
Appearance.StrokeDown.Color = 9470064
Appearance.FillDown.Color = 13156536
Appearance.StrokeSelected.Color = 5197615
Appearance.FillSelected.Color = 13156536
Appearance.StrokeDisabled.Color = 11119017
Appearance.FillDisabled.Color = clSilver
Appearance.Font.Charset = DEFAULT_CHARSET
Appearance.Font.Color = clWindowText
Appearance.Font.Height = -11
Appearance.Font.Name = 'Tahoma'
Appearance.Font.Style = []
Appearance.TextFormat = 'Page %d'
Viewer = TMSFNCWXPDFViewer1
end
end
end
end
object pageEdit: TWebTabSheet
AlignWithMargins = True
Left = 0
Top = 20
Width = 837
Height = 590
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 1
ElementClassName = 'rounded border border-secondary bg-dark'
ElementID = 'pageEdit'
Caption = 'Edit'
ChildOrder = 1
ElementFont = efCSS
object divEditButtonsHolder: TWebHTMLDiv
AlignWithMargins = True
Left = 5
Top = 5
Width = 827
Height = 42
Margins.Left = 5
Margins.Top = 5
Margins.Right = 5
Margins.Bottom = 5
ElementClassName = 'rounded border border-secondary'
ElementID = 'divEditButtonsHolder'
Align = alTop
ChildOrder = 3
Role = ''
object labelEdit: TWebLabel
AlignWithMargins = True
Left = 229
Top = 3
Width = 329
Height = 36
Align = alClient
ChildOrder = 1
ElementLabelClassName = 'pt-1 px-2'
ElementID = 'labelEdit'
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
ExplicitWidth = 3
ExplicitHeight = 13
end
object labelEditLabel: TWebLabel
AlignWithMargins = True
Left = 3
Top = 3
Width = 220
Height = 36
Align = alLeft
AutoSize = False
ElementClassName = 'text-white bg-secondary rounded-1'
ElementID = 'labelEditLabel'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
HTML = '<div style="font-size: 13px;" class="px-2">Selected Label</div>'
Layout = tlCenter
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
ExplicitLeft = 11
ExplicitTop = 6
end
object btnEditRename: TWebButton
AlignWithMargins = True
Left = 561
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Align = alRight
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-pencil pe-1"></i> Rename Label</span>'
ChildOrder = 2
ElementClassName = 'btn btn-sm btn-success'
ElementID = 'btnEditRename'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnPrintRenameClick
end
object btnEditClone: TWebButton
AlignWithMargins = True
Left = 614
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Align = alRight
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-clone pe-1"></i> Clone</span>'
ChildOrder = 3
ElementClassName = 'btn btn-sm btn-success'
ElementID = 'btnEditClone'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnPrintCloneClick
end
object btnEditExport: TWebButton
AlignWithMargins = True
Left = 667
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Align = alRight
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-download pe-1"></i> Export</span>'
ChildOrder = 4
ElementClassName = 'btn btn-sm btn-success'
ElementID = 'btnEditExport'
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
end
object btnEditDelete: TWebButton
AlignWithMargins = True
Left = 773
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Margins.Right = 4
Align = alRight
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-trash-can pe-1"></i> Delete Label</span>'
ChildOrder = 6
ElementClassName = 'btn btn-sm btn-danger'
ElementID = 'btnEditDelete'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
end
object btnEditImport: TWebButton
AlignWithMargins = True
Left = 720
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Align = alRight
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-upload pe-1"></i> Import</span>'
ChildOrder = 5
ElementClassName = 'btn btn-sm btn-success'
ElementID = 'btnEditImport'
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
end
end
object divEditor: TWebHTMLDiv
Left = 0
Top = 99
Width = 837
Height = 491
ElementID = 'divEditor'
Align = alClient
ChildOrder = 5
ElementFont = efCSS
Role = ''
object divEditPropertiesHolder: TWebHTMLDiv
AlignWithMargins = True
Left = 0
Top = 0
Width = 837
Height = 224
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 0
ElementID = 'divEditPropertiesHolder'
Align = alTop
Anchors = [akLeft, akTop, akRight, akBottom]
ChildOrder = 1
ElementFont = efCSS
Role = ''
object divEditProperties: TWebHTMLDiv
AlignWithMargins = True
Left = 5
Top = 0
Width = 514
Height = 220
Margins.Left = 5
Margins.Top = 0
Margins.Right = 4
Margins.Bottom = 4
ElementClassName = 'rounded border border-secondary overflow-hidden'
ElementID = 'divEditProperties'
Align = alLeft
Anchors = [akLeft, akTop, akRight, akBottom]
ElementFont = efCSS
Role = ''
end
object divEditPropertiesDetail: TWebHTMLDiv
AlignWithMargins = True
Left = 532
Top = 0
Width = 300
Height = 220
Margins.Left = 4
Margins.Top = 0
Margins.Right = 5
Margins.Bottom = 4
ElementClassName = 'rounded border border-secondary'
ElementID = 'divEditPropertiesDetail'
Align = alClient
ChildOrder = 2
ElementFont = efCSS
Role = ''
end
object splitterProperties: TWebSplitter
AlignWithMargins = True
Left = 523
Top = 25
Width = 5
Height = 174
Cursor = crHSplit
Margins.Left = 0
Margins.Top = 25
Margins.Right = 0
Margins.Bottom = 25
ElementClassName = 'rounded'
ElementID = 'splitterProperties'
Align = alLeft
ChildOrder = 1
Color = clGray
GripColor = clGray
end
end
object splitterEditor: TWebSplitter
AlignWithMargins = True
Left = 75
Top = 224
Width = 687
Height = 6
Cursor = crVSplit
Margins.Left = 75
Margins.Top = 0
Margins.Right = 75
Margins.Bottom = 0
ElementClassName = 'rounded'
ElementID = 'splitterEditor'
Align = alTop
ChildOrder = 2
Color = clGray
GripColor = clGray
OnMove = splitterEditorMove
end
object divEditPreviewHolder: TWebHTMLDiv
AlignWithMargins = True
Left = 5
Top = 234
Width = 827
Height = 252
Margins.Left = 5
Margins.Top = 4
Margins.Right = 5
Margins.Bottom = 5
ElementClassName = 'overflow-hidden rounded border border-secondary'
ElementID = 'divEditPreviewHolder'
Align = alClient
ChildOrder = 3
ElementFont = efCSS
Role = ''
end
end
object divEditPropertyButtons: TWebHTMLDiv
AlignWithMargins = True
Left = 5
Top = 52
Width = 827
Height = 42
Margins.Left = 5
Margins.Top = 0
Margins.Right = 5
Margins.Bottom = 5
ElementClassName = 'rounded border border-secondary'
ElementID = 'divEditPropertyButtons'
Align = alTop
ChildOrder = 2
ElementFont = efCSS
Role = ''
object ddPropertiesListHolder: TWebDropDownControl
AlignWithMargins = True
Left = 3
Top = 3
Width = 300
Height = 36
ElementClassName = 'ps-2 rounded-1 border border-0 bg-white overflow-hidden'
ElementID = 'ddPropertiesListHolder'
Align = alLeft
AutoDropDown = True
Color = clWhite
Control = panelPropertiesList
DropDownColor = 1193046
DropDownHeight = 500
DropDownShadow = False
DropDownWidth = 300
ElementInputClassName = 'ddPropertiesListInput'
ElementFont = efCSS
ParentColor = False
TabOrder = 0
Text = ''
OnDropDown = ddPropertiesListHolderDropDown
end
object btnEditPropertiesAdd: TWebButton
AlignWithMargins = True
Left = 306
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Align = alLeft
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-plus pe-1"></i> Add Property</span>'
ChildOrder = 2
ElementClassName = 'btn btn-sm btn-success'
ElementID = 'btnEditPropertiesAdd'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnEditPropertiesAddClick
end
object panelPropertiesList: TWebPanel
Left = 624
Top = 10
Width = 150
Height = 31
ElementClassName = 'border border-secondary bg-none w-100 h-100 m-0 p-0 rounded-1'
ElementID = 'panelPropertiesList'
BorderColor = clNone
BorderStyle = bsNone
Caption = 'panelPropertiesList'
ChildOrder = 3
Color = clWindow
ElementBodyClassName = 'bg-none'
ElementFont = efCSS
Visible = False
end
object btnEditPropertiesDelete: TWebButton
AlignWithMargins = True
Left = 774
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Align = alRight
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-trash-can pe-1"></i> Delete Property</span>'
ChildOrder = 2
ElementClassName = 'btn btn-sm btn-danger'
ElementID = 'btnEditPropertiesDelete'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnEditPropertiesDeleteClick
end
object btnEditPreview: TWebButton
AlignWithMargins = True
Left = 359
Top = 3
Width = 50
Height = 36
Margins.Left = 0
Align = alLeft
Caption =
'<span class="px-2" style="font-size:13px;"><i class="fa-solid fa' +
'-eye pe-1"></i> Preview Label</span>'
ChildOrder = 2
ElementClassName = 'btn btn-sm btn-primary'
ElementID = 'btnEditPreview'
ElementFont = efCSS
HeightPercent = 100.000000000000000000
WidthStyle = ssAuto
WidthPercent = 100.000000000000000000
OnClick = btnEditPreviewClick
end
end
end
object pageData: TWebTabSheet
Left = 0
Top = 20
Width = 837
Height = 590
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 1
ElementClassName = 'rounded border border-secondary bg-dark'
ElementID = 'pageData'
Caption = 'Data'
ChildOrder = 2
ElementFont = efCSS
object divDatasetButtonsHolder: TWebHTMLDiv
AlignWithMargins = True
Left = 5
Top = 5
Width = 827
Height = 42
Margins.Left = 5
Margins.Top = 5
Margins.Right = 5
Margins.Bottom = 5
ElementClassName = 'rounded border border-secondary'
ElementID = 'divDatasetButtonsHolder'
Align = alTop
ElementFont = efCSS
Role = ''
object labelDatasetLabel: TWebLabel
AlignWithMargins = True
Left = 3
Top = 3
Width = 220
Height = 36
Align = alLeft
AutoSize = False
ElementClassName = 'text-white bg-secondary rounded-1'
ElementID = 'labelDatasetLabel'
ElementFont = efCSS
HeightPercent = 100.000000000000000000