-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathrmmain.lfm
More file actions
2399 lines (2399 loc) · 68.2 KB
/
Copy pathrmmain.lfm
File metadata and controls
2399 lines (2399 loc) · 68.2 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 RMMainForm: TRMMainForm
Left = 335
Height = 859
Top = 197
Width = 1600
Align = alClient
Caption = 'Raster Master'
ClientHeight = 859
ClientWidth = 1600
DefaultMonitor = dmDesktop
KeyPreview = True
Menu = MainMenu1
Position = poDefault
LCLVersion = '4.8.0.0'
Scaled = False
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
object RightPanel: TPanel
AnchorSideLeft.Control = RightHSplitter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = StatusBar
Left = 1409
Height = 836
Top = 0
Width = 191
Anchors = [akTop, akLeft, akRight, akBottom]
ClientHeight = 836
ClientWidth = 191
TabOrder = 5
object RMPanel: TPanel
AnchorSideLeft.Control = RightPanel
AnchorSideRight.Control = RightPanel
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = RightPanel
AnchorSideBottom.Side = asrBottom
Cursor = crNo
Left = 8
Height = 121
Hint = 'Click To Hide Logo'
Top = 700
Width = 158
Anchors = [akLeft, akBottom]
BorderSpacing.Left = 7
BorderSpacing.Right = 15
BorderSpacing.Bottom = 14
ClientHeight = 121
ClientWidth = 158
ParentShowHint = False
ShowHint = True
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
ParentShowHint = False
ShowHint = True
StretchOutEnabled = False
StretchInEnabled = False
Transparent = True
OnClick = RMLogoClick
end
end
object ColorPalette1: TColorPalette
Left = 8
Height = 234
Top = 120
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
object Panel1: TPanel
Left = 8
Height = 110
Top = 1
Width = 136
ClientHeight = 110
ClientWidth = 136
TabOrder = 1
object ColorBox1: TShape
Left = 8
Height = 64
Top = 8
Width = 60
Brush.Color = clSkyBlue
ParentShowHint = False
Pen.Color = clRed
Pen.Width = 3
ShowHint = True
OnMouseDown = ColorBox1MouseDown
OnMouseEnter = ColorBox1MouseEnter
end
object ColorBox2: TShape
Left = 72
Height = 64
Top = 7
Width = 56
Brush.Color = clSkyBlue
ParentShowHint = False
ShowHint = True
OnMouseDown = ColorBox2MouseDown
OnMouseEnter = ColorBox2MouseEnter
end
object EditColorBox1: TButton
Left = 8
Height = 25
Hint = 'Edit Color 1'
Top = 80
Width = 60
Caption = 'Edit'
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = EditColorBox1Click
end
object EditColorBox2: TButton
Left = 72
Height = 25
Hint = 'Edit Color 2'
Top = 80
Width = 60
Caption = 'Edit'
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = EditColorBox2Click
end
end
end
object MiddleBottomPanel: TPanel
AnchorSideLeft.Control = LeftHSplitter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = MiddleTopPanel
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = RightHSplitter
AnchorSideBottom.Control = StatusBar
Left = 292
Height = 700
Top = 136
Width = 1106
Anchors = [akTop, akLeft, akRight, akBottom]
BevelOuter = bvNone
ClientHeight = 700
ClientWidth = 1106
TabOrder = 1
object ZoomScrollBox: TScrollBox
AnchorSideLeft.Control = MiddleBottomPanel
AnchorSideTop.Control = MiddleBottomPanel
AnchorSideBottom.Control = MiddleBottomPanel
Left = 0
Height = 700
Top = 0
Width = 1106
HorzScrollBar.Increment = 93
HorzScrollBar.Page = 862
HorzScrollBar.Tracking = True
VertScrollBar.Increment = 69
VertScrollBar.Page = 1
VertScrollBar.Tracking = True
Align = alClient
Anchors = [akRight, akBottom]
BorderStyle = bsNone
ClientHeight = 700
ClientWidth = 1106
TabOrder = 0
OnMouseWheel = ZoomScrollBoxMouseWheel
object ZoomPaintBox: TPaintBox
AnchorSideLeft.Control = ZoomScrollBox
AnchorSideTop.Control = ZoomScrollBox
AnchorSideBottom.Control = ZoomScrollBox
Cursor = crCross
Left = 0
Height = 0
Top = 0
Width = 862
OnClick = ZoomPaintBoxClick
OnMouseDown = ZPaintBoxMouseDown
OnMouseEnter = ZoomPaintBoxMouseEnter
OnMouseLeave = ZoomPaintBoxMouseLeave
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 = StatusBar
Left = 0
Height = 836
Top = 0
Width = 292
Anchors = [akTop, akLeft, akRight, akBottom]
BevelOuter = bvNone
ClientHeight = 836
ClientWidth = 292
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
Hint = 'Drag Bar To Resize View'
Top = 273
Width = 292
Align = alNone
Anchors = [akLeft, akRight]
Color = 11625216
ParentColor = False
ParentShowHint = False
ResizeAnchor = akBottom
ShowHint = True
end
object ListView1: TListView
AnchorSideLeft.Control = LeftPanel
AnchorSideTop.Control = LeftVSplitter
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = LeftPanel
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = SpriteHitBoxPanel
Left = 0
Height = 390
Top = 286
Width = 281
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 SpriteHitBoxPanel: TPanel
AnchorSideLeft.Control = LeftPanel
AnchorSideRight.Control = LeftPanel
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = LeftPanel
AnchorSideBottom.Side = asrBottom
Left = 0
Height = 160
Top = 676
Width = 281
Anchors = [akLeft, akRight, akBottom]
BorderSpacing.Right = 11
BevelOuter = bvNone
ClientHeight = 160
ClientWidth = 281
TabOrder = 3
object SpriteHitBoxHeader: TPanel
Left = 0
Height = 20
Top = 0
Width = 281
Align = alTop
Alignment = taLeftJustify
BevelOuter = bvNone
Caption = ' Hit Boxes'
Color = 11625216
ParentBackground = False
ParentColor = False
TabOrder = 0
end
object SpriteHitBoxButtons: TPanel
Left = 0
Height = 28
Top = 132
Width = 281
Align = alBottom
BevelOuter = bvNone
ClientHeight = 28
ClientWidth = 281
TabOrder = 1
object BtnSprHBAdd: TButton
Left = 2
Height = 24
Hint = 'Add a hit box from the selected area'
Top = 2
Width = 30
Caption = '+'
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = BtnSprHBAddClick
end
object BtnSprHBDel: TButton
Left = 34
Height = 24
Hint = 'Delete the selected hit box'
Top = 2
Width = 30
Caption = '-'
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = BtnSprHBDelClick
end
object BtnSprHBClear: TButton
Left = 66
Height = 24
Hint = 'Delete every hit box on this sprite'
Top = 2
Width = 76
Caption = 'Delete All'
ParentShowHint = False
ShowHint = True
TabOrder = 2
OnClick = BtnSprHBClearClick
end
object BtnSprHBShow: TButton
Left = 144
Height = 24
Hint = 'Show or hide the hit box overlay'
Top = 2
Width = 60
Caption = 'Show'
ParentShowHint = False
ShowHint = True
TabOrder = 3
OnClick = BtnSprHBShowClick
end
end
object SpriteHitBoxList: TListView
Left = 0
Height = 112
Top = 20
Width = 281
Align = alClient
Columns = <
item
Caption = '#'
Width = 26
end
item
Caption = 'X'
Width = 38
end
item
Caption = 'Y'
Width = 38
end
item
Caption = 'X2'
Width = 38
end
item
Caption = 'Y2'
Width = 38
end
item
Caption = 'Size'
Width = 70
end>
ReadOnly = True
RowSelect = True
TabOrder = 2
ToolTips = False
ViewStyle = vsReport
OnClick = SpriteHitBoxListClick
end
end
object ActualPane: TPanel
AnchorSideLeft.Control = LeftPanel
AnchorSideTop.Control = LeftPanel
AnchorSideRight.Control = LeftPanel
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = LeftVSplitter
Left = 0
Height = 273
Top = 0
Width = 277
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Right = 15
BevelOuter = bvNone
ClientHeight = 273
ClientWidth = 277
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 = StatusBar
AnchorSideBottom.Side = asrBottom
Left = 281
Height = 859
Hint = 'Drag Bar To Resize View'
Top = 0
Width = 11
Align = alNone
Anchors = [akTop, akBottom]
Color = 11625216
ParentColor = False
ParentShowHint = False
ShowHint = True
end
object RightHSplitter: TSplitter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideBottom.Control = StatusBar
AnchorSideBottom.Side = asrBottom
Left = 1398
Height = 859
Hint = 'Drag Bar To Resize View'
Top = 0
Width = 11
Align = alNone
Anchors = [akTop, akBottom]
Color = 11625216
ParentColor = False
ParentShowHint = False
ShowHint = True
end
object MiddleTopPanel: TPanel
AnchorSideLeft.Control = LeftHSplitter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideRight.Control = RightHSplitter
Left = 292
Height = 136
Top = 0
Width = 1106
Anchors = [akTop, akLeft, akRight]
ClientHeight = 136
ClientWidth = 1106
TabOrder = 2
object DitherPatternPanel: TPanel
AnchorSideLeft.Control = MiddleTopPanel
AnchorSideTop.Control = MiddleTopPanel
AnchorSideRight.Control = ToolPanel
Left = 49
Height = 126
Top = 8
Width = 431
Anchors = [akTop, akRight]
BorderSpacing.Left = 4
BorderSpacing.Top = 7
BorderSpacing.Right = 4
ClientHeight = 126
ClientWidth = 431
TabOrder = 2
object DitherPatternPaintBox: TPaintBox
AnchorSideLeft.Control = DitherPatternPanel
Left = 11
Height = 108
Top = 12
Width = 413
BorderSpacing.Left = 10
OnMouseDown = DitherPatternPaintBoxMouseDown
OnPaint = DitherPatternPaintBoxPaint
end
end
object ToolPanel: TPanel
AnchorSideTop.Control = MiddleTopPanel
AnchorSideRight.Control = MiddleTopPanel
AnchorSideRight.Side = asrBottom
Left = 484
Height = 127
Top = 8
Width = 571
Anchors = [akTop, akRight]
BorderSpacing.Top = 7
BorderSpacing.Right = 50
ClientHeight = 127
ClientWidth = 571
TabOrder = 0
object ToolCircleIcon: TImage
Left = 96
Height = 32
Hint = 'Empty Circle'
Top = 8
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolCircleMenuClick
end
object ToolFCircleIcon: TImage
Left = 96
Height = 32
Hint = 'Filled Circle'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolFCircleMenuClick
end
object ToolPencilIcon: TImage
Left = 16
Height = 32
Hint = 'Pencil'
Top = 8
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolPencilMenuClick
end
object ToolLineIcon: TImage
Left = 16
Height = 32
Hint = 'Line'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolLineMenuClick
end
object ToolRectangleIcon: TImage
Left = 56
Height = 32
Hint = 'Empty Rectangle'
Top = 8
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolRectangleMenuClick
end
object ToolFRectangleIcon: TImage
Left = 56
Height = 32
Hint = 'Filled Rectangle'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolFRectangleMenuClick
end
object ToolSprayPaintIcon: TImage
Left = 176
Height = 32
Hint = 'Spray Paint'
Top = 8
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolMenuSprayPaintClick
end
object ToolPaintIcon: TImage
Left = 176
Height = 32
Hint = 'Paint'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolMenuPaintClick
end
object ToolGridIcon: TImage
Left = 216
Height = 32
Hint = 'Toggle Grid'
Top = 7
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolGridMenuClick
end
object ToolSelectAreaIcon: TImage
Left = 216
Height = 32
Hint = 'Select Area'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolMenuSelectAreaMenuClick
end
object ToolScrollLeftIcon: TImage
Left = 341
Height = 32
Hint = 'Scroll Left'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolScrollLeftMenuClick
end
object ToolScrollRightIcon: TImage
Left = 381
Height = 32
Hint = 'Scroll Right'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolScrollRightMenuClick
end
object ToolScrollUpIcon: TImage
Left = 421
Height = 32
Hint = 'Scroll Up'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolScrollUpMenuClick
end
object ToolScrollDownIcon: TImage
Left = 461
Height = 32
Hint = 'Scroll Down'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolScrollDownMenuClick
end
object ToolUndoIcon: TImage
Left = 461
Height = 32
Hint = 'Undo'
Top = 7
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolUndoIconClick
end
object ToolEllipseIcon: TImage
Left = 136
Height = 32
Hint = 'Empty Ellipse'
Top = 9
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolEllipseMenuClick
end
object ToolFEllipseIcon: TImage
Left = 136
Height = 32
Hint = 'Filled Ellipse'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolFEllipseMenuClick
end
object ToolTextIcon: TImage
Left = 296
Height = 32
Hint = 'Text'
Top = 7
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolTextMenuClick
end
object ToolFontIcon: TImage
Left = 296
Height = 32
Hint = 'Font Select'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = ToolFontIconClick
end
object TextDrawEdit: TEdit
Left = 341
Height = 30
Top = 9
Width = 112
AutoSize = False
Font.Height = -16
ParentFont = False
TabOrder = 0
Text = 'HI!'
OnChange = TextDrawEditChange
end
object ToolVFLIP: TButton
Left = 504
Height = 30
Hint = 'Vertical Flip'
Top = 8
Width = 51
Caption = 'VFLIP'
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = ToolFlipVirtMenuClick
end
object ToolHFLIP: TButton
Left = 504
Height = 30
Hint = 'Horizontal Flip'
Top = 48
Width = 51
Caption = 'HFLIP'
ParentShowHint = False
ShowHint = True
TabOrder = 2
OnClick = ToolFlipHorizMenuClick
end
object ToolBrushIcon: TImage
Left = 256
Height = 32
Hint = 'Brush Stamp'
Top = 7
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = BrushStampToolClick
end
object ToolBrushFXIcon: TImage
Left = 256
Height = 32
Hint = 'Brush Effects'
Top = 48
Width = 32
ParentShowHint = False
ShowHint = True
OnClick = BrushEffectsClick
end
object DrawMethod: TRadioGroup
Left = 16
Height = 40
Hint = 'Use Color 1 and Color 2 for Dither and Gradient '
Top = 80
Width = 232
AutoFill = True
Caption = 'Draw Method'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 4
ClientHeight = 20
ClientWidth = 228
Columns = 4
ItemIndex = 0
Items.Strings = (
'Color'
'Brush'
'Dither'
'Gradient'
)
ParentShowHint = False
ShowHint = True
TabOrder = 3
OnClick = DrawMethodClick
end
object GradientMethod: TComboBox
Left = 256
Height = 23
Hint = 'Gradient Direction'
Top = 97
Width = 100
ItemHeight = 15
ItemIndex = 0
Items.Strings = (
'Horizontal'
'Vertical'
'Circular'
)
ParentShowHint = False
ShowHint = True
Style = csDropDownList
TabOrder = 4
Text = 'Horizontal'
OnChange = GradientMethodChange
end
object DrawMethodPreview: TPaintBox
Left = 368
Height = 32
Top = 88
Width = 187
OnPaint = DrawMethodPreviewPaint
end
end
object ZoomTrackBar: TTrackBar
Left = 1070
Height = 134
Hint = 'Zoom Level'
Top = 1
Width = 30
Max = 20
Min = 1
Orientation = trVertical
Position = 1
TickMarks = tmTopLeft
OnChange = ZoomTrackBarChange
Align = alRight
BorderSpacing.Right = 5
ParentShowHint = False
ShowHint = True
TabOrder = 1
end
end
object StatusBar: TStatusBar
Left = 0
Height = 23
Top = 836
Width = 1600
Panels = <
item
Width = 260
end
item
Width = 280
end
item
Width = 420
end
item
Width = 640
end>
SimplePanel = False
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 OpenProjectJSONFile: TMenuItem
Caption = 'Open Project (JSON)'
OnClick = OpenProjectJSONClick
end
object InsertProjectJSONFile: TMenuItem
Caption = 'Insert Project (JSON)'
OnClick = OpenProjectJSONClick
end
object SaveFile: TMenuItem
Caption = 'Save'
OnClick = SaveFileClick
end
object SaveProjectFile: TMenuItem
Caption = 'Save Project'
OnClick = SaveProjectFileClick
end
object SaveProjectJSONFile: TMenuItem
Caption = 'Save Project (JSON)'
OnClick = SaveProjectJSONClick
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 ExportTiledSep: TMenuItem
Caption = '-'
end
object ExportTiled: TMenuItem
Caption = 'Tiled (TMX)'
object ExportTiledCurrentSheet: TMenuItem
Caption = 'Current Map - Sprite Sheet'
OnClick = MenuExportTiledClick
end
object ExportTiledAllSheet: TMenuItem
Tag = 1
Caption = 'All Maps - Sprite Sheet (shared .tsx)'
OnClick = MenuExportTiledClick
end
object ExportTiledSep2: TMenuItem
Caption = '-'
end
object ExportTiledCurrentColl: TMenuItem
Tag = 2
Caption = 'Current Map - Image Collection'
OnClick = MenuExportTiledClick
end
object ExportTiledAllColl: TMenuItem
Tag = 3
Caption = 'All Maps - Image Collection (shared .tsx)'
OnClick = MenuExportTiledClick
end
end
object ExportTiledSep3: TMenuItem
Caption = '-'
end
object ExportJSONSprite: TMenuItem
Caption = 'JSON'
OnClick = ExportJSONSpriteClick
end
object ExportJSONRES: TMenuItem
Caption = 'JSON RES'
OnClick = ExportJSONRESClick
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