-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathu_MainForm.dfm
1844 lines (1822 loc) · 74.4 KB
/
u_MainForm.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 MainForm: TMainForm
Left = 89
Top = 206
Caption = 'Cards scan arrange (PnP)'
ClientHeight = 722
ClientWidth = 1006
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Position = poScreenCenter
Scaled = False
OnClose = FormClose
OnCreate = FormCreate
TextHeight = 13
object Label3: TLabel
Left = 8
Top = 101
Width = 28
Height = 13
Caption = 'Count'
end
object Splitter2: TSplitter
Left = 818
Top = 0
Height = 722
Align = alRight
OnMoved = Splitter2Moved
ExplicitHeight = 723
end
object pcMain: TPageControl
Left = 0
Top = 0
Width = 818
Height = 722
ActivePage = tsSource
Align = alClient
TabOrder = 0
TabPosition = tpBottom
OnChange = pcMainChange
ExplicitWidth = 814
ExplicitHeight = 721
object tsSource: TTabSheet
Caption = 'Source'
object ScrollBox1: TScrollBox
Left = 0
Top = 25
Width = 810
Height = 671
HorzScrollBar.Style = ssFlat
HorzScrollBar.Tracking = True
VertScrollBar.Style = ssFlat
VertScrollBar.Tracking = True
Align = alClient
ParentShowHint = False
ShowHint = True
TabOrder = 0
ExplicitWidth = 806
ExplicitHeight = 670
object imgSource: TImage
Left = 0
Top = 0
Width = 756
Height = 603
Cursor = crCross
OnClick = imgSourceClick
OnDblClick = imgFrameDblClick
OnMouseDown = imgFrameMouseDown
OnMouseMove = imgSourceMouseMove
OnStartDrag = imgFrameStartDrag
end
object FrameBox: TPaintBox
Left = 0
Top = 0
Width = 806
Height = 667
Cursor = crCross
Align = alClient
OnClick = imgSourceClick
OnDblClick = imgFrameDblClick
OnMouseDown = imgFrameMouseDown
OnMouseMove = imgSourceMouseMove
OnMouseUp = FrameBoxMouseUp
OnPaint = FrameBoxPaint
OnStartDrag = imgFrameStartDrag
ExplicitHeight = 669
end
object Shape2: TShape
Left = 81
Top = 107
Width = 16
Height = 64
Hint =
'1. Select rectangle over a card '#13#10'2. Click in the rectangle outs' +
'ide the card'
Brush.Color = clLime
Brush.Style = bsBDiagonal
ParentShowHint = False
Pen.Style = psDot
ShowHint = True
Visible = False
OnMouseDown = Shape2MouseDown
end
end
object PageScroller1: TPageScroller
Left = 0
Top = 0
Width = 810
Height = 25
Align = alTop
Control = Panel5
TabOrder = 1
ExplicitWidth = 806
object Panel5: TPanel
Left = 0
Top = 0
Width = 798
Height = 28
Align = alTop
AutoSize = True
BevelEdges = [beBottom]
TabOrder = 0
ExplicitWidth = 794
object TrackBar3: TTrackBar
Left = 309
Top = 1
Width = 93
Height = 26
Hint = 'Autodetect contrast setting'
Align = alLeft
Max = 6
Min = 1
ParentShowHint = False
PageSize = 4
Position = 1
ShowHint = True
TabOrder = 0
ThumbLength = 16
end
object cbFrameOrGround: TComboBox
Left = 402
Top = 1
Width = 71
Height = 21
Align = alLeft
Style = csDropDownList
ItemIndex = 0
TabOrder = 4
Text = 'Ground'
Items.Strings = (
'Ground'
'Frame')
end
object Panel2: TPanel
Left = 473
Top = 1
Width = 47
Height = 26
Align = alLeft
Alignment = taRightJustify
BevelOuter = bvNone
BorderWidth = 5
Caption = 'Blink'
TabOrder = 3
end
object ColorBox1: TColorBox
Left = 520
Top = 1
Width = 80
Height = 22
Align = alLeft
Selected = clLime
Style = [cbStandardColors, cbPrettyNames]
TabOrder = 1
end
object ColorBox2: TColorBox
Left = 600
Top = 1
Width = 80
Height = 22
Align = alLeft
Selected = clGreen
Style = [cbStandardColors, cbPrettyNames]
TabOrder = 2
end
object Panel4: TPanel
Left = 680
Top = 1
Width = 47
Height = 26
Align = alLeft
Alignment = taRightJustify
BevelOuter = bvNone
BorderWidth = 5
Caption = 'Anchor'
TabOrder = 5
end
object cbAnchor: TComboBox
Left = 727
Top = 1
Width = 71
Height = 21
Hint = 'Rotation anchor'
Align = alLeft
Style = csDropDownList
ItemIndex = 0
TabOrder = 6
Text = 'Top-Left'
Items.Strings = (
'Top-Left'
'Center')
end
object ToolBar2: TToolBar
Left = 1
Top = 1
Width = 308
Height = 26
Align = alLeft
AutoSize = True
ButtonHeight = 26
Caption = 'ToolBar1'
Images = ImageList1
ParentShowHint = False
ShowHint = True
TabOrder = 7
object ToolButton9: TToolButton
Left = 0
Top = 0
Action = Action1
end
object ToolButton10: TToolButton
Left = 23
Top = 0
Action = Action2
end
object ToolButton11: TToolButton
Left = 46
Top = 0
Action = Action3
end
object ToolButton12: TToolButton
Left = 69
Top = 0
Action = Action4
end
object ToolButton13: TToolButton
Left = 92
Top = 0
Action = Action5
end
object ToolButton14: TToolButton
Left = 115
Top = 0
Action = Action6
end
object ToolButton19: TToolButton
Left = 138
Top = 0
Width = 8
Caption = 'ToolButton19'
ImageIndex = 9
Style = tbsSeparator
end
object ToolButton18: TToolButton
Left = 146
Top = 0
Action = Action8
end
object ToolButton17: TToolButton
Left = 169
Top = 0
Action = Action7
end
object ToolButton15: TToolButton
Left = 192
Top = 0
Width = 8
Caption = 'ToolButton7'
ImageIndex = 6
Style = tbsSeparator
end
object ToolButton16: TToolButton
Left = 200
Top = 0
Hint = 'Reset grid'
Caption = 'ToolButton8'
ImageIndex = 6
OnClick = ToolButton16Click
end
object ToolButton21: TToolButton
Left = 223
Top = 0
Width = 8
Caption = 'ToolButton21'
ImageIndex = 10
Style = tbsSeparator
end
object tbHideLines: TToolButton
Left = 231
Top = 0
Hint = 'Hide lines'
Caption = 'tbHideLines'
ImageIndex = 13
Style = tbsCheck
OnClick = tbHideLinesClick
end
object tbOnecard: TToolButton
Left = 254
Top = 0
Hint =
'One card region:'#13#10'1. Choose card in grid'#13#10'2. Select rectangle ov' +
'er a card '#13#10'3. Click in the rectangle outside the card (bkg.colo' +
'r)'
Caption = 'tbOnecard'
ImageIndex = 10
Style = tbsCheck
OnClick = tbOnecardClick
end
object ToolButton20: TToolButton
Left = 277
Top = 0
Hint = 'Autodetect all'
Caption = 'ToolButton20'
ImageIndex = 9
OnClick = ToolButton20Click
end
object ToolButton23: TToolButton
Left = 300
Top = 0
Width = 8
Caption = 'ToolButton23'
ImageIndex = 11
Style = tbsSeparator
end
end
end
end
end
object tsResult: TTabSheet
Caption = 'Result'
ImageIndex = 1
object ScrollBox2: TScrollBox
Left = 0
Top = 0
Width = 810
Height = 696
HorzScrollBar.Tracking = True
VertScrollBar.Tracking = True
Align = alClient
TabOrder = 0
object imgResult: TImage
Left = 3
Top = 4
Width = 756
Height = 603
Cursor = crCross
end
end
end
object tsBuffer: TTabSheet
Caption = 'tsBuffer'
ImageIndex = 2
TabVisible = False
object ScrollBox3: TScrollBox
Left = 0
Top = 0
Width = 810
Height = 696
Align = alClient
TabOrder = 0
object imgBuffer: TImage
Left = 0
Top = 0
Width = 756
Height = 603
Cursor = crCross
OnMouseMove = imgSourceMouseMove
end
end
end
object tsSelected: TTabSheet
Caption = 'Selected'
ImageIndex = 3
object ScrollBox4: TScrollBox
Left = 0
Top = 0
Width = 810
Height = 696
HorzScrollBar.Tracking = True
VertScrollBar.Tracking = True
Align = alClient
TabOrder = 0
object img1: TImage
Left = 0
Top = 0
Width = 425
Height = 337
Cursor = crCross
AutoSize = True
OnMouseDown = img1MouseDown
OnMouseMove = img1MouseMove
OnMouseUp = img1MouseUp
end
object Shape1: TShape
Left = 81
Top = 106
Width = 16
Height = 64
Brush.Color = clLime
Brush.Style = bsBDiagonal
Pen.Style = psDot
Visible = False
end
end
end
object TabSheet1: TTabSheet
Caption = 'About'
ImageIndex = 4
object Memo1: TMemo
Left = 0
Top = 0
Width = 810
Height = 696
Align = alClient
Lines.Strings = (
'# CardArrange '
'Program for processing scanned card games - slpit and align.'
''
'https://github.com/Dimon-II/CardArrange'
'Open-source software, free software'
''
'1. The program allows you to select several rectangular areas lo' +
'cated at different angles in the picture.'
'2. Automatic recognition works for an angle of no more than 30 d' +
'egrees (the default is 20), cards should be at clear but not too' +
' long intervals and have clearly visible '
'borders of the card itself or a frame picture on the card.'
'3. Open the image file (preferably 300 DPI, it'#8217's inconvenient to' +
' work with a larger one).'
'4. Set the size of the cards (Size), the number of cards on the ' +
'sheet (Count) and the approximate indent left / top (Delta)'
'5. By double-clicking on the upper left corner of the card in th' +
'e picture, you can set the frame and check the entered size.'
'6. Button ?{: fills the table with approximate coordinates of th' +
'e cards according to their size and number. '
'7. If the picture is already loaded - auto-recognition is perfor' +
'med. If the center of the recognized area is in the area of '#8203#8203'th' +
'e '#8220'approximate'#8221' card, then new coordinates and an '
'angle are set for it, otherwise a row is added to the table. '
'8. If all cards have the same color frame, you can use the new [' +
'Frame] auto-recognition mode. To do this, select a border color:'
' - (Frame color) button and click on the picture in the area wi' +
'th the desired color'
' - switch (Ground / Frame) mode'
' - and try with different contrast options.'
'(This mode solves the problem with shadows of cards on a light b' +
'ackground).'
'9. When you select a card in the table, it is displayed on the s' +
'creen with a flickering frame. Coordinates and angles can be cor' +
'rected using the buttons with arrows and '
'card rotation, double-click on the upper left corner, or enter c' +
'oordinates manually.'
'19. This table is written to the INI file with the name of the i' +
'mage file and is automatically loaded when the image is reloaded' +
'.'
'11. Cards are exported in the same block as in the original imag' +
'e (for example 3x3), with the Split option you can save cards on' +
'e at a time in a '
'separate file.'
'12. Frame - draws a single-color frame on over of the card, Roun' +
'd rect - rounds the corners of the frame, the color is selected ' +
'on the original image. If the visible elements '
'of '
'the cardp are far from its edge, you can temporarily assign a fr' +
'ame for manual positioning and zero before exporting.'
'13. Cutting line adds cut marks when exporting'
'14. Parameters Border, Interval specify the placement of cards d' +
'uring export, Mirror fills the interval between cards.'
'15. The Selected tab allows you to see already rotated card and ' +
'focusing on some vertical element to specify the degree of rotat' +
'ion by combining the image in the enlarged '
'block when the mouse button is pressed.'
'16. The new "scissors" button allows to split a large image into' +
' separate sheets of a given size (you can use the paper settings' +
' of your printer) with "bleed" for cropping.'
'17. Preview Cornesr - precise manual fix tool: a separate pictu' +
're on the right below shows the CORNER parts of the card, withou' +
't scaling, combined side by side. The step '
'is clearly visible if the edge of the cards is contrasting.'
''
'Author - Dmitry Yatsenko ([email protected])'
'Development environment: Delphi (5-7-2007-10.4)'
''
'PS: I highly recommend processing scanned cards with Sattva Desc' +
'reen plug-in. '
'http://www.descreen.net/eng/soft/descreen/descreen.htm'
'Varning: the free version has a 2000x2000 pixel image size limit' +
'.')
ReadOnly = True
TabOrder = 0
end
end
end
object pnRight: TPanel
Left = 821
Top = 0
Width = 185
Height = 722
Align = alRight
BevelOuter = bvNone
Constraints.MinWidth = 185
TabOrder = 1
ExplicitLeft = 817
ExplicitHeight = 721
object pnParams: TPanel
Left = 0
Top = 0
Width = 185
Height = 702
Align = alClient
BorderWidth = 5
TabOrder = 0
ExplicitHeight = 701
object gbFile: TGroupBox
Left = 6
Top = 6
Width = 173
Height = 82
Align = alTop
Caption = 'File'
TabOrder = 0
object lblDir: TLabel
Left = 8
Top = 46
Width = 23
Height = 13
Caption = 'lblDir'
end
object lblFile: TLabel
Left = 8
Top = 62
Width = 26
Height = 13
Caption = 'lblFile'
end
object ToolBar3: TToolBar
Left = 2
Top = 15
Width = 169
Height = 29
ButtonHeight = 28
ButtonWidth = 31
Caption = 'ToolBar3'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -18
Font.Name = 'Wingdings'
Font.Style = []
ParentFont = False
ParentShowHint = False
ShowCaptions = True
ShowHint = True
TabOrder = 0
object tbtLoad: TToolButton
Left = 0
Top = 0
Hint = 'Load'
Caption = '1'
ImageIndex = 0
OnClick = sbSourceClick
end
object tbtSave: TToolButton
Left = 31
Top = 0
Hint = 'Save'
Caption = '<'
ImageIndex = 3
OnClick = Button1Click
end
object tbtSaveIni: TToolButton
Left = 62
Top = 0
Hint = 'Save INI'
Caption = '='
ImageIndex = 1
OnClick = Button2Click
end
object ToolButton27: TToolButton
Left = 93
Top = 0
Width = 8
Caption = 'ToolButton27'
ImageIndex = 3
Style = tbsSeparator
end
object tbtRotate: TToolButton
Left = 101
Top = 0
Hint = 'Rotate 90'
Caption = #1050
ImageIndex = 2
OnClick = tbtRotateClick
end
object tbtSplit: TToolButton
Left = 132
Top = 0
Hint = 'Split to paper-size'
Caption = '#'
ImageIndex = 3
OnClick = tbtSplitClick
end
end
end
object gbDimension: TGroupBox
Left = 6
Top = 88
Width = 173
Height = 128
Align = alTop
TabOrder = 1
DesignSize = (
173
128)
object Bevel1: TBevel
Left = 104
Top = 6
Width = 2
Height = 120
Anchors = [akLeft, akTop, akBottom]
end
object lblX: TLabel
Left = 88
Top = 8
Width = 9
Height = 13
Caption = 'X'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object lblY: TLabel
Left = 112
Top = 8
Width = 9
Height = 13
Caption = 'Y'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object lblSize: TLabel
Left = 8
Top = 29
Width = 20
Height = 13
Caption = 'Size'
end
object lblDelta: TLabel
Left = 8
Top = 53
Width = 25
Height = 13
Caption = 'Delta'
end
object lblCount: TLabel
Left = 8
Top = 101
Width = 28
Height = 13
Caption = 'Count'
end
object Label1: TLabel
Left = 8
Top = 77
Width = 29
Height = 13
Caption = 'Frame'
end
object seSizeY: TSpinEdit
Left = 108
Top = 24
Width = 57
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 0
Value = 1070
OnChange = seSizeYChange
end
object seSizeX: TSpinEdit
Left = 44
Top = 24
Width = 57
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 1
Value = 730
OnChange = seSizeXChange
end
object seDeltaX: TSpinEdit
Left = 44
Top = 48
Width = 57
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 2
Value = 10
end
object seDeltaY: TSpinEdit
Left = 108
Top = 48
Width = 57
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 3
Value = 10
end
object seCountX: TSpinEdit
Left = 44
Top = 96
Width = 57
Height = 22
MaxValue = 32
MinValue = 1
TabOrder = 6
Value = 3
end
object seCountY: TSpinEdit
Left = 108
Top = 96
Width = 57
Height = 22
MaxValue = 32
MinValue = 1
TabOrder = 7
Value = 1
end
object seFrameX: TSpinEdit
Left = 44
Top = 72
Width = 57
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 4
Value = 0
OnChange = seFrameXChange
end
object seFrameY: TSpinEdit
Left = 108
Top = 72
Width = 57
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 5
Value = 0
OnChange = seFrameYChange
end
object chbDimension: TCheckBox
Left = 4
Top = 0
Width = 74
Height = 17
Caption = 'Dimension'
Checked = True
State = cbChecked
TabOrder = 8
OnClick = chbDimensionClick
end
end
object gbResult: TGroupBox
Left = 6
Top = 216
Width = 173
Height = 176
Align = alTop
TabOrder = 2
object lblBorder: TLabel
Left = 8
Top = 35
Width = 31
Height = 13
Caption = 'Border'
Transparent = True
end
object shFrameColor: TShape
Left = 105
Top = 11
Width = 63
Height = 92
Align = alCustom
Pen.Width = 8
Shape = stRoundRect
end
object lblInterval: TLabel
Left = 8
Top = 59
Width = 35
Height = 13
Caption = 'Interval'
end
object Label2: TLabel
Left = 69
Top = 153
Width = 41
Height = 13
Caption = 'DPI calc'
end
object lblDPI: TLabel
Left = 148
Top = 110
Width = 18
Height = 13
Alignment = taRightJustify
Caption = 'DPI'
end
object img2: TImage
Left = 114
Top = 21
Width = 45
Height = 72
end
object seBorder: TSpinEdit
Left = 44
Top = 32
Width = 57
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 0
Value = 0
OnChange = seBorderChange
end
object sbFrameColor: TPanel
Left = 8
Top = 80
Width = 93
Height = 23
Caption = 'Frame color'
TabOrder = 2
OnClick = sbFrameColorClick
end
object chbRoundRect: TCheckBox
Left = 8
Top = 106
Width = 81
Height = 17
Caption = 'Round Rect'
TabOrder = 4
OnClick = chbRoundRectClick
end
object chbCuttingLine: TCheckBox
Left = 8
Top = 122
Width = 97
Height = 17
Caption = 'Cutting line'
TabOrder = 5
OnClick = chbCuttingLineClick
end
object seInterval: TSpinEdit
Left = 44
Top = 56
Width = 57
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 1
Value = 0
OnChange = seFrameChange
end
object chkHex: TCheckBox
Left = 8
Top = 154
Width = 40
Height = 14
Caption = 'Arc'
TabOrder = 7
end
object chbSplit: TCheckBox
Left = 8
Top = 17
Width = 57
Height = 14
Caption = 'Split x1'
Checked = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
State = cbChecked
TabOrder = 3
end
object chbMirror: TCheckBox
Left = 8
Top = 138
Width = 65
Height = 15
Caption = 'Mirror'
TabOrder = 6
OnClick = chbMirrorClick
end
object seDPI: TSpinEdit
Left = 112
Top = 148
Width = 57
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 8
Value = 300
OnChange = seDPIChange
end
object chbResult: TCheckBox
Left = 4
Top = 0
Width = 50
Height = 17
Caption = 'Result'
Checked = True
State = cbChecked
TabOrder = 9
OnClick = chbResultClick
end
end
object GroupBox1: TGroupBox
Left = 6
Top = 392
Width = 173
Height = 290
Align = alClient
Caption = 'Cards'
TabOrder = 3
ExplicitHeight = 289
object imgPreview: TImage
Left = 2
Top = 188
Width = 169
Height = 100
Align = alBottom
Visible = False
ExplicitTop = 181
end
object Splitter1: TSplitter
Left = 2
Top = 184
Width = 169
Height = 4
Cursor = crVSplit
Align = alBottom
Beveled = True
Visible = False
OnMoved = Splitter1Moved
ExplicitTop = 177
end
object ToolBar1: TToolBar
Left = 2
Top = 15
Width = 169
Height = 28
AutoSize = True
ButtonHeight = 26
Caption = 'ToolBar1'
EdgeBorders = [ebBottom]