-
Notifications
You must be signed in to change notification settings - Fork 4
/
rmmain.lfm
1597 lines (1597 loc) · 46.1 KB
/
rmmain.lfm
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 RMMainForm: TRMMainForm
Left = 261
Height = 854
Top = 190
Width = 1491
Align = alClient
Caption = 'Raster Master'
ClientHeight = 854
ClientWidth = 1491
DefaultMonitor = dmDesktop
Menu = MainMenu1
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
Position = poDefault
LCLVersion = '3.4.0.0'
Scaled = False
object RightPanel: TPanel
AnchorSideLeft.Control = RightHSplitter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 1253
Height = 854
Top = 0
Width = 238
Anchors = [akTop, akLeft, akRight, akBottom]
ClientHeight = 854
ClientWidth = 238
TabOrder = 5
object RMPanel: TPanel
AnchorSideRight.Control = RightPanel
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = RightPanel
AnchorSideBottom.Side = asrBottom
Cursor = crNo
Left = 64
Height = 121
Top = 722
Width = 158
Anchors = [akRight, akBottom]
BorderSpacing.Right = 15
BorderSpacing.Bottom = 10
ClientHeight = 121
ClientWidth = 158
TabOrder = 0
OnClick = RMPanelClick
object RMLogo: TImage
AnchorSideTop.Control = RMPanel
Cursor = crHandPoint
Left = 16
Height = 64
Hint = 'Click Me! And Subscribe to my YouTube Channel!'
Top = 17
Width = 128
AutoSize = True
BorderSpacing.Top = 16
OnClick = RMLogoClick
ParentShowHint = False
ShowHint = True
StretchOutEnabled = False
StretchInEnabled = False
Transparent = True
end
end
object ColorBox: TShape
Left = 8
Height = 64
Top = 8
Width = 60
Brush.Color = clSkyBlue
ParentShowHint = False
OnMouseDown = ColorBoxMouseDown
OnMouseEnter = ColorBoxMouseEnter
ShowHint = True
end
object ColorPalette1: TColorPalette
Left = 8
Height = 234
Top = 80
Width = 60
ButtonHeight = 30
ButtonWidth = 30
ColumnCount = 8
Flipped = True
PickedIndex = 0
SelectionColor = clWhite
SelectionKind = pskThickInverted
OnColorPick = ColorPalette1ColorPick
OnGetHintText = ColorPalette1GetHintText
ParentColor = False
ParentShowHint = False
ShowHint = True
end
end
object MiddleBottomPanel: TPanel
AnchorSideLeft.Control = LeftHSplitter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = MiddleTopPanel
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = RightHSplitter
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 307
Height = 742
Top = 112
Width = 935
Anchors = [akTop, akLeft, akRight, akBottom]
BevelOuter = bvNone
ClientHeight = 742
ClientWidth = 935
TabOrder = 1
object ZoomScrollBox: TScrollBox
AnchorSideLeft.Control = MiddleBottomPanel
AnchorSideTop.Control = MiddleBottomPanel
Left = 0
Height = 742
Top = 0
Width = 935
HorzScrollBar.Increment = 93
HorzScrollBar.Page = 862
HorzScrollBar.Tracking = True
VertScrollBar.Increment = 69
VertScrollBar.Page = 670
VertScrollBar.Tracking = True
Align = alClient
Anchors = [akRight, akBottom]
BorderStyle = bsNone
ClientHeight = 742
ClientWidth = 935
TabOrder = 0
object ZoomPaintBox: TPaintBox
AnchorSideLeft.Control = ZoomScrollBox
AnchorSideTop.Control = ZoomScrollBox
Cursor = crCross
Left = 0
Height = 670
Top = 0
Width = 862
OnMouseDown = ZPaintBoxMouseDown
OnMouseMove = ZPaintBoxMouseMove
OnMouseUp = ZPaintBoxMouseUp
OnPaint = ZoomPaintBoxPaint
end
end
end
object LeftPanel: TPanel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = LeftHSplitter
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 0
Height = 854
Top = 0
Width = 307
Anchors = [akTop, akLeft, akRight, akBottom]
BevelOuter = bvNone
ClientHeight = 854
ClientWidth = 307
TabOrder = 0
object LeftVSplitter: TSplitter
AnchorSideLeft.Control = LeftPanel
AnchorSideTop.Control = ActualPane
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = LeftPanel
AnchorSideRight.Side = asrCenter
AnchorSideBottom.Control = ListView1
Cursor = crVSplit
Left = 0
Height = 13
Top = 280
Width = 305
Align = alNone
Anchors = [akLeft, akRight]
Color = 11625216
ParentColor = False
ResizeAnchor = akBottom
end
object ListView1: TListView
AnchorSideLeft.Control = LeftPanel
AnchorSideTop.Control = LeftVSplitter
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = LeftPanel
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = LeftPanel
AnchorSideBottom.Side = asrBottom
Left = 0
Height = 561
Top = 293
Width = 296
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Right = 11
Color = 15790320
Columns = <>
IconOptions.AutoArrange = True
LargeImages = ImageList1
LargeImagesWidth = 128
PopupMenu = ExportPropsMenu
ReadOnly = True
TabOrder = 1
ViewStyle = vsIcon
OnClick = ListView1Click
end
object ActualPane: TPanel
AnchorSideLeft.Control = LeftPanel
AnchorSideTop.Control = LeftPanel
AnchorSideRight.Control = LeftPanel
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = LeftVSplitter
Left = 0
Height = 280
Top = 0
Width = 292
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Right = 15
BevelOuter = bvNone
ClientHeight = 280
ClientWidth = 292
TabOrder = 0
object ActualBox: TImage
Left = 16
Height = 256
Top = 8
Width = 256
end
end
end
object LeftHSplitter: TSplitter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 296
Height = 854
Top = 0
Width = 11
Align = alNone
Anchors = [akTop, akBottom]
Color = 11625216
ParentColor = False
end
object RightHSplitter: TSplitter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 1242
Height = 854
Top = 0
Width = 11
Align = alNone
Anchors = [akTop, akBottom]
Color = 11625216
ParentColor = False
end
object MiddleTopPanel: TPanel
AnchorSideLeft.Control = LeftHSplitter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideRight.Control = RightHSplitter
Left = 307
Height = 112
Top = 0
Width = 935
Anchors = [akTop, akLeft, akRight]
ClientHeight = 112
ClientWidth = 935
TabOrder = 2
object ToolPanel: TPanel
AnchorSideTop.Control = MiddleTopPanel
AnchorSideRight.Control = MiddleTopPanel
AnchorSideRight.Side = asrBottom
Left = 450
Height = 88
Top = 8
Width = 434
Anchors = [akTop, akRight]
BorderSpacing.Top = 7
BorderSpacing.Right = 50
ClientHeight = 88
ClientWidth = 434
TabOrder = 0
object ToolCircleIcon: TImage
Left = 96
Height = 32
Hint = 'Empty Circle'
Top = 8
Width = 32
OnClick = ToolCircleMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolFCircleIcon: TImage
Left = 96
Height = 32
Hint = 'Filled Circle'
Top = 48
Width = 32
OnClick = ToolFCircleMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolPencilIcon: TImage
Left = 16
Height = 32
Hint = 'Pencil'
Top = 8
Width = 32
OnClick = ToolPencilMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolLineIcon: TImage
Left = 16
Height = 32
Hint = 'Line'
Top = 48
Width = 32
OnClick = ToolLineMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolRectangleIcon: TImage
Left = 56
Height = 32
Hint = 'Empty Rectangle'
Top = 8
Width = 32
OnClick = ToolRectangleMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolFRectangleIcon: TImage
Left = 56
Height = 32
Hint = 'Filled Rectangle'
Top = 48
Width = 32
OnClick = ToolFRectangleMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolSprayPaintIcon: TImage
Left = 176
Height = 32
Hint = 'Spray Paint'
Top = 8
Width = 32
OnClick = ToolMenuSprayPaintClick
ParentShowHint = False
ShowHint = True
end
object ToolPaintIcon: TImage
Left = 176
Height = 32
Hint = 'Paint'
Top = 48
Width = 32
OnClick = ToolMenuPaintClick
ParentShowHint = False
ShowHint = True
end
object ToolGridIcon: TImage
Left = 216
Height = 32
Hint = 'Toggle Grid'
Top = 7
Width = 32
OnClick = ToolGridMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolSelectAreaIcon: TImage
Left = 216
Height = 32
Hint = 'Select Area'
Top = 48
Width = 32
OnClick = ToolMenuSelectAreaMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolHFLIPButton: TButton
Left = 296
Height = 31
Hint = 'Horizontal Flip'
Top = 9
Width = 54
Caption = 'HFLIP'
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = ToolFlipHorizMenuClick
end
object ToolVFLIPButton: TButton
Left = 354
Height = 31
Hint = 'Vertical Flip'
Top = 8
Width = 54
Caption = 'VFLIP'
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = ToolFlipVirtMenuClick
end
object ToolScrollLeftIcon: TImage
Left = 256
Height = 32
Hint = 'Scroll Left'
Top = 48
Width = 32
OnClick = ToolScrollLeftMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolScrollRightIcon: TImage
Left = 296
Height = 32
Hint = 'Scroll Right'
Top = 48
Width = 32
OnClick = ToolScrollRightMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolScrollUpIcon: TImage
Left = 336
Height = 32
Hint = 'Scroll Up'
Top = 48
Width = 32
OnClick = ToolScrollUpMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolScrollDownIcon: TImage
Left = 376
Height = 32
Hint = 'Scroll Down'
Top = 48
Width = 32
OnClick = ToolScrollDownMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolUndoIcon: TImage
Left = 256
Height = 32
Hint = 'Undo'
Top = 8
Width = 32
OnClick = ToolUndoIconClick
ParentShowHint = False
ShowHint = True
end
object ToolEllipseIcon: TImage
Left = 136
Height = 32
Hint = 'Empty Ellipse'
Top = 9
Width = 32
OnClick = ToolEllipseMenuClick
ParentShowHint = False
ShowHint = True
end
object ToolFEllipseIcon: TImage
Left = 136
Height = 32
Hint = 'Filled Ellipse'
Top = 48
Width = 32
OnClick = ToolFEllipseMenuClick
ParentShowHint = False
ShowHint = True
end
end
object ZoomTrackBar: TTrackBar
Left = 899
Height = 110
Hint = 'Zoom Level'
Top = 1
Width = 30
Max = 20
Min = 1
OnChange = ZoomTrackBarChange
Orientation = trVertical
Position = 1
TickMarks = tmTopLeft
Align = alRight
BorderSpacing.Right = 5
ParentShowHint = False
ShowHint = True
TabOrder = 1
end
object StatusBar1: TStatusBar
AnchorSideRight.Control = ToolPanel
Left = 16
Height = 23
Top = 8
Width = 424
Align = alNone
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 10
Panels = <>
end
object StatusBar2: TStatusBar
AnchorSideRight.Control = ToolPanel
Left = 16
Height = 23
Top = 40
Width = 424
Align = alNone
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 10
Panels = <>
end
end
object MainMenu1: TMainMenu
Left = 1176
Top = 248
object FileExitMenu: TMenuItem
Caption = 'File'
object NewFile: TMenuItem
Caption = 'New'
OnClick = NewClick
end
object OpenFile: TMenuItem
Caption = 'Open'
OnClick = OpenFileClick
end
object OpenProjectFile: TMenuItem
Caption = 'Open Project'
OnClick = OpenProjectFileClick
end
object InsertProjectFile: TMenuItem
Caption = 'Insert Project'
OnClick = OpenProjectFileClick
end
object SaveFile: TMenuItem
Caption = 'Save'
OnClick = SaveFileClick
end
object SaveProjectFile: TMenuItem
Caption = 'Save Project'
OnClick = SaveProjectFileClick
end
object FileDelete: TMenuItem
Caption = 'Delete'
OnClick = FileDeleteClick
end
object DeleteAll: TMenuItem
Caption = 'Delete All'
OnClick = DeleteAllClick
end
object SaveFileAs: TMenuItem
Caption = 'Save As'
Enabled = False
Visible = False
end
object MenuItem10: TMenuItem
Caption = 'Import'
Enabled = False
Visible = False
end
object MenuItem9: TMenuItem
Caption = 'Export'
object ExportRESInclude: TMenuItem
Caption = 'RES Text Include File'
OnClick = RESExportClick
end
object ExportRESBinary: TMenuItem
Caption = 'RES Binary File'
OnClick = RESExportClick
end
object AmigaBasic: TMenuItem
Caption = 'AmigaBasic'
object ABPutData: TMenuItem
Caption = 'Put Data Statements'
OnClick = AmigaBasicClick
end
object ABPutPlusMaskData: TMenuItem
Caption = 'Put+Mask Data Statements'
OnClick = AmigaBasicClick
end
object ABBobData: TMenuItem
Caption = 'Bob Data Statements'
OnClick = AmigaBasicClick
end
object ABVSpriteData: TMenuItem
Caption = 'VSprite Data Statements'
OnClick = AmigaBasicClick
end
object ABPutFile: TMenuItem
Caption = 'Put File'
OnClick = AmigaBasicClick
end
object ABBobFile: TMenuItem
Caption = 'Bob File'
OnClick = AmigaBasicClick
end
object ABVSpriteFile: TMenuItem
Caption = 'VSprite File'
OnClick = AmigaBasicClick
end
end
object AmigaC: TMenuItem
Caption = 'Amiga C'
object CBOBBitmapArray: TMenuItem
Caption = 'Bob Bitmap Array'
OnClick = AmigaCClick
end
object CVSpriteBitmapArray: TMenuItem
Caption = 'VSprite Bitmap Array'
OnClick = AmigaCClick
end
object ACBobFile: TMenuItem
Caption = 'Bob Bitmap File'
OnClick = AmigaCClick
end
object ACVSpriteFile: TMenuItem
Caption = 'VSprite Bitmap File'
OnClick = AmigaCClick
end
end
object AmigaPascal: TMenuItem
Caption = 'Amiga Pascal'
object PascalBOBBitmapArray: TMenuItem
Caption = 'Bob Bitmap Array'
OnClick = AmigaPascalClick
end
object PascalVSpriteBitmapArray: TMenuItem
Caption = 'VSprite Bitmap Array'
OnClick = AmigaPascalClick
end
object PascalBOBBitmapFile: TMenuItem
Caption = 'Bob Bitmap File'
OnClick = AmigaPascalClick
end
object PascalVSpriteBitmapFile: TMenuItem
Caption = 'VSprite Bitmap File'
OnClick = AmigaPascalClick
end
end
object MenuItem13: TMenuItem
Caption = 'Amiga QuickBasic AQB'
object AqbPsetBitMap: TMenuItem
Caption = 'PSet BitMap Data'
OnClick = AqbPsetBitMapClick
end
end
object MenuItem1: TMenuItem
Caption = 'BAM Basic'
object BAMPutData: TMenuItem
Caption = 'Put Data Statements'
OnClick = BAMPutDataClick
end
object BAMPutPlusMaskData: TMenuItem
Caption = 'Put+Mask Data Statements'
OnClick = BAMPutDataClick
end
object BAMRGBPutData: TMenuItem
Caption = 'Put RGB Data Statements'
OnClick = BAMPutDataClick
end
end
object FreeBASIC: TMenuItem
Caption = 'FreeBASIC - QB Mode'
object FBPutData: TMenuItem
Caption = 'Put Data Statements'
OnClick = FreeBASICClick
end
object FBPutPlusMaskData: TMenuItem
Caption = 'Put+Mask Data Statements'
OnClick = FreeBASICClick
end
object FBPutFile: TMenuItem
Caption = 'Put File'
OnClick = FreeBASICClick
end
object FBMouseShapeData: TMenuItem
Caption = 'Mouse Shape Data Statements'
OnClick = MouseSaveClick
end
object FBMouseShapeFile: TMenuItem
Caption = 'Mouse Shape File'
OnClick = MouseSaveClick
end
end
object MenuItem8: TMenuItem
Caption = 'FreeBASIC'
object fbRayLibFuchsia: TMenuItem
Caption = 'RGBA - Fuchsia Array'
OnClick = RayLibExportClick
end
object fbRayLibIndex0: TMenuItem
Caption = 'RGBA - Index 0 Array'
OnClick = RayLibExportClick
end
object fbRayLibRGB: TMenuItem
Caption = 'RGB Array'
OnClick = RayLibExportClick
end
end
object FreePascal: TMenuItem
Caption = 'FreePascal'
object FPPutImageArray: TMenuItem
Caption = 'PutImage Array'
OnClick = FreePascalClick
end
object FPPutImagePlusMaskArray: TMenuItem
Caption = 'PutImage+Mask Array'
OnClick = FreePascalClick
end
object FPPutImageFile: TMenuItem
Caption = 'PutImage File'
OnClick = FreePascalClick
end
object FPMouseShapeArray: TMenuItem
Caption = 'Mouse Shape Array'
OnClick = MouseSaveClick
end
object FPMouseShapeFile: TMenuItem
Caption = 'Mouse Shape File'
OnClick = MouseSaveClick
end
object fpRayLibFuchsia: TMenuItem
Caption = 'RayLib (RGBA - Fuchsia) Array'
OnClick = RayLibExportClick
end
object fpRayLibIndex0: TMenuItem
Caption = 'RayLib (RGBA - Index 0) Array'
OnClick = RayLibExportClick
end
object fpRayLibCustom: TMenuItem
Caption = 'RayLib (RGBA - Custom) Array'
OnClick = RayLibExportClick
end
object fpRayLibRGB: TMenuItem
Caption = 'RayLib (RGB) Array'
OnClick = RayLibExportClick
end
end
object gcc: TMenuItem
Caption = 'gcc \ Emscripten'
object gccRayLibFuchsia: TMenuItem
Caption = 'RayLib (RGBA - Fuchsia) Array'
OnClick = RayLibExportClick
end
object gccRayLibIndex0: TMenuItem
Caption = 'RayLib (RGBA - Index 0) Array'
OnClick = RayLibExportClick
end
object gccRayLibCustom: TMenuItem
Caption = 'RayLib (RGBA - Custom) Array'
OnClick = RayLibExportClick
end
object gccRayLibRGB: TMenuItem
Caption = 'RayLib (RGB) Array'
OnClick = RayLibExportClick
end
end
object GWBASIC: TMenuItem
Caption = 'GWBASIC'
object GWPutData: TMenuItem
Caption = 'Put Data Statements'
OnClick = GWBASICClick
end
object GWPutPlusMaskData: TMenuItem
Caption = 'Put+Mask Data Statements'
OnClick = GWBASICClick
end
object GWPutFile: TMenuItem
Caption = 'Put File'
OnClick = GWBASICClick
end
object GWMouseShapeData: TMenuItem
Caption = 'Mouse Shape Data Statements'
OnClick = MouseSaveClick
end
object GWMouseShapeFile: TMenuItem
Caption = 'Mouse Shape File'
OnClick = MouseSaveClick
end
end
object JavaScript: TMenuItem
Caption = 'JavaScript'
object TransparentImage: TMenuItem
Caption = 'Transparent Image Array'
OnClick = javaScriptArrayClick
end
object NonTransparentImage: TMenuItem
Caption = 'Non Transparent Image Array'
OnClick = javaScriptArrayClick
end
end
object OpenWatcom: TMenuItem
Caption = 'Open Watcom C'
object OWPutImageArray: TMenuItem
Caption = '_putimage array'
OnClick = OpenWatcomCClick
end
object OWPutImagePlusMaskArray: TMenuItem
Caption = '_putimage+Mask array'
OnClick = OpenWatcomCClick
end
object OWPutImageFile: TMenuItem
Caption = '_putimage File'
OnClick = OpenWatcomCClick
end
object OWMouseShapeArray: TMenuItem
Caption = 'Mouse Shape Array'
OnClick = MouseSaveClick
end
object MenuItem14: TMenuItem
Caption = 'Mouse Shape File'
OnClick = MouseSaveClick
end
end
object QuickBasic: TMenuItem
Caption = 'QBasic\QuickBasic'
object QBPutData: TMenuItem
Caption = 'Put Data Statements'
OnClick = QBasicDataClick
end
object QBPutPlusMaskData: TMenuItem
Caption = 'Put+Mask Data Statements'
OnClick = QBasicDataClick
end
object QBPutFile: TMenuItem
Caption = 'Put File'
OnClick = QBasicDataClick
end
object QBMouseShapeData: TMenuItem
Caption = 'Mouse Shape Data Statements'
OnClick = MouseSaveClick
end
object QBMouseShapeFile: TMenuItem
Caption = 'Mouse Shape File'
OnClick = MouseSaveClick
end
end
object QB64: TMenuItem
Caption = 'QB64'
object qb64RGBAFuchsia: TMenuItem
Caption = 'RGBA - Fuchsia Data Statements'
OnClick = RayLibExportClick
end
object qb64RGBAIndex0: TMenuItem
Caption = 'RGBA - Index 0 Data Statements'
OnClick = RayLibExportClick
end
object qb64RGBACustom: TMenuItem
Caption = 'RGBA - Custom Data Statements'
OnClick = RayLibExportClick
end
object qb64RGB: TMenuItem
Caption = 'RGB Data Statements'
OnClick = RayLibExportClick
end
end
object QBJS: TMenuItem
Caption = 'QBJS'
object qbjsRGBAFuchsia: TMenuItem
Caption = 'RGBA - Fuchsia Data Statements'
OnClick = RayLibExportClick
end
object qbjsRGBAIndex0: TMenuItem
Caption = 'RGBA - Index 0 Data Statements'
OnClick = RayLibExportClick
end
object qbjsRGBACustom: TMenuItem
Caption = 'RGBA - Custom Data Statements'
OnClick = RayLibExportClick
end
object qbjsRGB: TMenuItem
Caption = 'RGB Data Statements'
OnClick = RayLibExportClick
end
end
object QuickC: TMenuItem
Caption = 'Quick C'
object QCPutImageArray: TMenuItem
Caption = '_putimage array'
OnClick = QuickCClick
end
object QCPutImagePlusMaskArray: TMenuItem
Caption = '_putimage+Mask array'
OnClick = QuickCClick
end
object QCPutImageFile: TMenuItem
Caption = '_putimage File'
OnClick = QuickCClick
end
object QCMouseShapeArray: TMenuItem
Caption = 'Mouse Shape Array'
OnClick = MouseSaveClick
end
object QCMouseShapeFile: TMenuItem
Caption = 'Mouse Shape File'
OnClick = MouseSaveClick
end
end
object QuickPascal: TMenuItem
Caption = 'Quick Pascal'
object QPPutImageArray: TMenuItem
Caption = 'PutImage Array'
OnClick = QuickPascalClick
end
object QPPutImagePlusMaskArray: TMenuItem
Caption = 'PutImage+Mask Array'
OnClick = QuickPascalClick
end
object QPPutImageFile: TMenuItem
Caption = 'PutImage File'
OnClick = QuickPascalClick
end
object QPMouseShapeArray: TMenuItem
Caption = 'Mouse Shape Array'
OnClick = MouseSaveClick
end
object QPMouseShapeFile: TMenuItem
Caption = 'Mouse Shape File'
OnClick = MouseSaveClick
end
end
object TurboBasic: TMenuItem
Caption = 'Turbo\Power Basic'
object TBPutData: TMenuItem
Caption = 'Put Data Statements'
OnClick = TurboPowerBasicClick
end
object TBPutPlusMaskData: TMenuItem
Caption = 'Put+Mask Data Statements'
OnClick = TurboPowerBasicClick
end
object TBPutFile: TMenuItem
Caption = 'Put File'
OnClick = TurboPowerBasicClick
end
object TBMouseShapeData: TMenuItem
Caption = 'Mouse Shape Data Statements'
OnClick = MouseSaveClick
end
object TBMouseShapeFile: TMenuItem
Caption = 'Mouse Shape File'
OnClick = MouseSaveClick
end
end
object TurboPascal: TMenuItem
Caption = 'Turbo Pascal'
object TPPutImageArray: TMenuItem
Caption = 'PutImage Array'
OnClick = TurboPascalClick
end
object TPPutImagePlusMaskArray: TMenuItem
Caption = 'PutImage+Mask Array'
OnClick = TurboPascalClick
end
object TPPutImageFile: TMenuItem
Caption = 'PutImage File'
OnClick = TurboPascalClick
end
object TPMouseShapeArray: TMenuItem
Caption = 'Mouse Shape Array'
OnClick = MouseSaveClick
end
object TPMouseShapeFile: TMenuItem
Caption = 'Mouse Shape File'
OnClick = MouseSaveClick
end
object TPDOSLBMArray: TMenuItem
Caption = 'DOS Xlib LBM Array'
OnClick = TurboPascalClick
end
object TPDOSLBMFile: TMenuItem
Caption = 'DOS Xlib LBM File'
OnClick = TurboPascalClick
end
object TPDOSPBMArray: TMenuItem
Caption = 'DOS Xlib PBM Array'
OnClick = TurboPascalClick
end
object TPDOSPBMFile: TMenuItem
Caption = 'DOS Xlib PBM File'
OnClick = TurboPascalClick
end
end
object TurboC: TMenuItem
Caption = 'Turbo C'
object TCPutImageArray: TMenuItem
Caption = 'putimage Array'
OnClick = TurboCClick
end
object TCPutImagePlusMaskArray: TMenuItem