-
Notifications
You must be signed in to change notification settings - Fork 0
/
DigIt_form_main.lfm
4031 lines (4031 loc) · 195 KB
/
DigIt_form_main.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 DigIt_Main: TDigIt_Main
Left = 223
Height = 650
Top = 25
Width = 1129
Caption = 'DigIt'
ClientHeight = 650
ClientWidth = 1129
LCLVersion = '3.99.0.0'
WindowState = wsMaximized
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
object imgManipulation: TBGRAImageManipulation
Left = 230
Height = 567
Top = 63
Width = 699
Align = alClient
AnchorSize = 9
AspectRatio = '3:4'
KeepAspectRatio = False
MinHeight = 53
MinWidth = 40
EmptyImage.ResolutionUnit = ruPixelsPerInch
EmptyImage.ShowBorder = True
NewCropAreaDefault.Icons = []
NewCropAreaDefault.AspectRatio = '3:4'
OnCropAreaAdded = AddedCrop
OnCropAreaDeleted = DeletedCrop
OnCropAreaChanged = ChangedCrop
OnSelectedCropAreaChanged = SelectedChangedCrop
end
object rollCrops: TBCExpandPanel
Left = 0
Height = 567
Top = 63
Width = 230
Align = alLeft
Background.Color = clBtnFace
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsColor
BevelInner = bvNone
BevelOuter = bvRaised
BevelWidth = 1
Border.Style = bboNone
Enabled = True
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
ParentBackground = False
Rounding.RoundX = 1
Rounding.RoundY = 1
TabOrder = 0
TextAlignment = taLeftJustify
CollapseKind = akLeft
ExpandedSize = 230
ButtonPosition = akLeft
ButtonSize = 20
Button.Left = 0
Button.Height = 567
Button.Top = 0
Button.Width = 20
Button.Caption = 'Crop Areas'
Button.Color = clSkyBlue
Button.ColorExpanded = 16287767
Button.GlyphLayout = glRight
AnimationSpeed = 20
Animated = False
object cbBoxList: TComboBox
Left = 33
Height = 23
Top = 170
Width = 125
ItemHeight = 15
Style = csDropDownList
TabOrder = 0
OnChange = cbBoxListChange
end
object btBox_Add: TBGRASpeedButton
Left = 159
Height = 22
Hint = 'Add a Crop Area'
Top = 170
Width = 23
Caption = '+'
Flat = True
ShowHint = True
ParentShowHint = False
OnClick = btBox_AddClick
end
object btBox_Del: TBGRASpeedButton
Left = 182
Height = 22
Hint = 'Remove this Crop Area'
Top = 170
Width = 23
Caption = '-'
Flat = True
ShowHint = True
ParentShowHint = False
OnClick = btBox_DelClick
end
object panelCropArea: TBCPanel
Left = 22
Height = 360
Top = 200
Width = 202
Background.Color = clBtnFace
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsColor
BevelInner = bvNone
BevelOuter = bvNone
BevelWidth = 1
Border.Style = bboNone
Enabled = False
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
ParentBackground = False
Rounding.RoundX = 1
Rounding.RoundY = 1
TabOrder = 1
object BCLabel1: TBCLabel
Left = 36
Height = 15
Top = 59
Width = 26
Anchors = [akTop, akRight]
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Style = bboNone
Caption = 'Left :'
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
Rounding.RoundX = 1
Rounding.RoundY = 1
end
object BCLabel2: TBCLabel
Left = 37
Height = 15
Top = 87
Width = 25
Anchors = [akTop, akRight]
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Style = bboNone
Caption = 'Top :'
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
Rounding.RoundX = 1
Rounding.RoundY = 1
end
object BCLabel3: TBCLabel
Left = 24
Height = 15
Top = 115
Width = 38
Anchors = [akTop, akRight]
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Style = bboNone
Caption = 'Width :'
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
Rounding.RoundX = 1
Rounding.RoundY = 1
end
object BCLabel4: TBCLabel
Left = 20
Height = 15
Top = 143
Width = 42
Anchors = [akTop, akRight]
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Style = bboNone
Caption = 'Height :'
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
Rounding.RoundX = 1
Rounding.RoundY = 1
end
object edCropUnit_Type: TComboBox
Left = 65
Height = 23
Top = 28
Width = 103
AutoSize = False
ItemHeight = 15
ItemIndex = 0
Items.Strings = (
'pixels'
'inchs'
'cm'
)
Style = csDropDownList
TabOrder = 0
Text = 'pixels'
OnChange = edCropUnit_TypeChange
end
object BCLabel5: TBCLabel
Left = 34
Height = 15
Top = 31
Width = 28
Anchors = [akTop, akRight]
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Style = bboNone
Caption = 'Unit :'
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
Rounding.RoundX = 1
Rounding.RoundY = 1
end
object BCLabel6: TBCLabel
Left = 24
Height = 15
Top = 4
Width = 38
Anchors = [akTop, akRight]
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Style = bboNone
Caption = 'Name :'
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
Rounding.RoundX = 1
Rounding.RoundY = 1
end
object edCropName: TEdit
Left = 65
Height = 23
Top = 0
Width = 103
AutoSize = False
AutoSelect = False
TabOrder = 1
OnEditingDone = edCropNameEditingDone
end
object rgCropAspect: TRadioGroup
Left = 48
Height = 52
Top = 160
Width = 120
AutoFill = True
Caption = 'Aspect Ratio'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 2
ClientHeight = 32
ClientWidth = 116
Columns = 2
Items.Strings = (
'Parent'
'Free'
'Personal'
)
TabOrder = 2
OnSelectionChanged = rgCropAspectSelectionChanged
end
object edCropLeft: TFloatSpinEdit
Left = 65
Height = 23
Top = 56
Width = 103
Font.Color = clWindowText
Font.Name = 'Arial'
ParentFont = False
TabOrder = 3
Value = 50
OnChange = edCropLeftChange
end
object edCropTop: TFloatSpinEdit
Left = 65
Height = 23
Top = 84
Width = 103
Font.Color = clWindowText
Font.Name = 'Arial'
ParentFont = False
TabOrder = 4
Value = 50
OnChange = edCropTopChange
end
object edCropWidth: TFloatSpinEdit
Left = 65
Height = 23
Top = 112
Width = 103
Font.Color = clWindowText
Font.Name = 'Arial'
ParentFont = False
TabOrder = 5
Value = 50
OnChange = edCropWidthChange
end
object edCropHeight: TFloatSpinEdit
Left = 65
Height = 23
Top = 140
Width = 103
Font.Color = clWindowText
Font.Name = 'Arial'
ParentFont = False
TabOrder = 6
Value = 50
OnChange = edCropHeightChange
end
object Label2: TLabel
Left = 22
Height = 15
Top = 240
Width = 40
Anchors = [akTop, akRight]
Caption = 'Rotate :'
end
object btCRotateLeft: TSpeedButton
Left = 65
Height = 22
Hint = 'Rotate Left'
Top = 240
Width = 23
Flat = True
Images = imgListImgActions
ImageIndex = 4
ShowCaption = False
ShowHint = True
ParentShowHint = False
OnClick = btCRotateLeftClick
end
object btCRotateRight: TSpeedButton
Left = 89
Height = 22
Hint = 'Rotate Right'
Top = 240
Width = 23
Flat = True
Images = imgListImgActions
ImageIndex = 5
ShowCaption = False
ShowHint = True
ParentShowHint = False
OnClick = btCRotateRightClick
end
object Label3: TLabel
Left = 37
Height = 15
Top = 264
Width = 25
Anchors = [akTop, akRight]
Caption = 'Flip :'
end
object btCFlipVUp: TSpeedButton
Left = 65
Height = 22
Hint = 'Flip Vertical Up'
Top = 264
Width = 23
Flat = True
Images = imgListImgActions
ImageIndex = 7
ShowCaption = False
ShowHint = True
ParentShowHint = False
OnClick = btCFlipVUpClick
end
object btCFlipVDown: TSpeedButton
Left = 89
Height = 22
Hint = 'Flip Vertical Down'
Top = 264
Width = 23
Flat = True
Images = imgListImgActions
ImageIndex = 8
ShowCaption = False
ShowHint = True
ParentShowHint = False
OnClick = btCFlipVDownClick
end
object btCFlipHLeft: TSpeedButton
Left = 112
Height = 22
Hint = 'Flip Horizzontal Left'
Top = 264
Width = 23
Flat = True
Images = imgListImgActions
ImageIndex = 9
ShowCaption = False
ShowHint = True
ParentShowHint = False
OnClick = btCFlipHLeftClick
end
object btCFlipHRight: TSpeedButton
Left = 136
Height = 22
Hint = 'Flip Horizzontal Right'
Top = 264
Width = 23
Flat = True
Images = imgListImgActions
ImageIndex = 10
ShowCaption = False
ShowHint = True
ParentShowHint = False
OnClick = btCFlipHRightClick
end
object Label1: TLabel
Left = 16
Height = 15
Top = 288
Width = 46
Anchors = [akTop, akRight]
Caption = 'Z Order :'
end
object btZFront: TSpeedButton
Left = 65
Height = 22
Hint = 'To Front'
Top = 288
Width = 23
Flat = True
Images = imgListImgActions
ImageIndex = 11
ShowCaption = False
ShowHint = True
ParentShowHint = False
OnClick = btZFrontClick
end
object btZBack: TSpeedButton
Left = 89
Height = 22
Hint = 'To Back'
Top = 288
Width = 23
Flat = True
Images = imgListImgActions
ImageIndex = 12
ShowCaption = False
ShowHint = True
ParentShowHint = False
OnClick = btZBackClick
end
object btZUp: TSpeedButton
Left = 112
Height = 22
Hint = 'Up'
Top = 288
Width = 23
Flat = True
Images = imgListImgActions
ImageIndex = 7
ShowCaption = False
ShowHint = True
ParentShowHint = False
OnClick = btZUpClick
end
object btZDown: TSpeedButton
Left = 136
Height = 22
Hint = 'Down'
Top = 288
Width = 23
Flat = True
Images = imgListImgActions
ImageIndex = 8
ShowCaption = False
ShowHint = True
ParentShowHint = False
OnClick = btZDownClick
end
object cbCropCounterList: TComboBox
Left = 13
Height = 23
Top = 333
Width = 125
ItemHeight = 15
Style = csDropDownList
TabOrder = 7
OnChange = cbCropCounterListChange
end
object btCropCounter_Add: TBGRASpeedButton
Left = 137
Height = 22
Hint = 'Add a Counter'
Top = 333
Width = 20
Caption = '+'
Flat = True
ShowHint = True
ParentShowHint = False
OnClick = btCropCounter_AddClick
end
object btCropCounter_Del: TBGRASpeedButton
Left = 161
Height = 22
Hint = 'Remove this Counter'
Top = 333
Width = 20
Caption = '-'
Flat = True
ShowHint = True
ParentShowHint = False
OnClick = btCropCounter_DelClick
end
object Label5: TLabel
Left = 13
Height = 15
Top = 316
Width = 49
Caption = 'Counter :'
end
object edCropAspectPersonal: TEditButton
Left = 65
Height = 23
Top = 211
Width = 109
AutoSelect = False
AutoSize = False
ButtonWidth = 23
Flat = True
Glyph.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000000000000000000000000000000000000FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00004D0046004E0024FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00024802A3297D4DFF11501CFA004C0036FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00024D02A02D8354FF3EDE91FF47D598FF14501CFA004D
0035FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00024E029D2D824EFF35C87FFF0EBA47FF18C257FF44C78EFF1254
1AF9004D0035FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00024E029A318B4EFF4AC283FF2AAC50FF45C682FF32BA64FF2DB25DFF4BBD
89FF115617F9004E0034FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF000250
028D308D4AFF5BC18AFF50B164FF5CC98FFF3F9C5BFF57C18AFF55C077FF59BC
76FF6DC99DFF145D18F7004E0034FFFFFF00FFFFFF00FFFFFF00FFFFFF000C68
0EDB68C89AFF64B473FF6AC893FF419F59FF03520395156617E660C48EFF68C0
7FFF66BB7BFF6CC396FF0D5C10F6004B0033FFFFFF00FFFFFF00FFFFFF00004C
006B23842CFE77D0A6FF42A058FF04530490FFFFFF0000550018156917E769C5
91FF7BC689FF7AC288FF6BBD90FF075F09F5004D0032FFFFFF00FFFFFF00FFFF
FF00004E006C106B12F504530491FFFFFF00FFFFFF00FFFFFF00004C001B126B
15E970C693FF90D299FF8FD099FF6FC190FF126413D6FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00004F
001D0E6B11EB7BCB9AFFA1EAB6FF61B879FF005B00BCFFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00004D00210B680EED63B576FF015B01D8004E000DFFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00004F001D004C00720049000EFFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00
}
MaxLength = 0
NumGlyphs = 1
PasswordChar = #0
TabOrder = 8
OnButtonClick = btCropApplyAspectRatioClick
end
object btPaperSizes: TSpeedButton
Left = 170
Height = 22
Top = 128
Width = 23
Images = imgListMenu
ImageIndex = 10
OnClick = btPaperSizesClick
end
object btCropDuplicateOp: TSpeedButton
Left = 170
Height = 22
Hint = 'Duplicate when Rotate/Flip'
Top = 252
Width = 23
AllowAllUp = True
Flat = True
GroupIndex = 1
Images = imgListMenu
ImageIndex = 9
ShowCaption = False
ShowHint = True
ParentShowHint = False
end
end
object btCropDuplicate: TSpeedButton
Left = 205
Height = 22
Hint = 'Duplicate this Area'
Top = 170
Width = 23
Flat = True
Images = imgListMenu
ImageIndex = 9
ShowCaption = False
ShowHint = True
ParentShowHint = False
OnClick = btCropDuplicateClick
end
object Label7: TLabel
Left = 28
Height = 15
Top = 150
Width = 195
Caption = 'Crop Areas ˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗'
Font.Style = [fsBold]
ParentFont = False
end
object Label8: TLabel
Left = 28
Height = 15
Top = 0
Width = 198
Caption = 'Page ˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗'
Font.Style = [fsBold]
ParentFont = False
end
object edPage_UnitType: TComboBox
Left = 87
Height = 23
Top = 16
Width = 103
AutoSize = False
ItemHeight = 15
ItemIndex = 0
Items.Strings = (
'not defined'
'pixels'
'inchs'
'cm'
)
Style = csDropDownList
TabOrder = 2
Text = 'not defined'
OnChange = edPage_UnitTypeChange
end
object panelPageSize: TBCPanel
Left = 22
Height = 58
Top = 39
Width = 202
Background.Color = clBtnFace
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsColor
BevelInner = bvNone
BevelOuter = bvNone
BevelWidth = 1
Border.Style = bboNone
Enabled = False
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
ParentBackground = False
Rounding.RoundX = 1
Rounding.RoundY = 1
TabOrder = 3
object BCLabel10: TBCLabel
Left = 24
Height = 15
Top = 7
Width = 38
Anchors = [akTop, akRight]
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Style = bboNone
Caption = 'Width :'
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
Rounding.RoundX = 1
Rounding.RoundY = 1
end
object edPageWidth: TFloatSpinEdit
Left = 65
Height = 23
Top = 4
Width = 103
Font.Color = clWindowText
Font.Name = 'Arial'
ParentFont = False
TabOrder = 0
Value = 21
OnChange = edPageWidthChange
end
object btPageSizes: TSpeedButton
Left = 170
Height = 22
Top = 20
Width = 23
Images = imgListMenu
ImageIndex = 10
OnClick = btPageSizesClick
end
object edPageHeight: TFloatSpinEdit
Left = 65
Height = 23
Top = 32
Width = 103
Font.Color = clWindowText
Font.Name = 'Arial'
ParentFont = False
TabOrder = 1
Value = 29.7
OnChange = edPageHeightChange
end
object BCLabel11: TBCLabel
Left = 20
Height = 15
Top = 35
Width = 42
Anchors = [akTop, akRight]
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Style = bboNone
Caption = 'Height :'
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
Rounding.RoundX = 1
Rounding.RoundY = 1
end
end
object btPageSizesToCrops: TSpeedButton
Left = 192
Height = 22
Top = 16
Width = 23
Images = imgListMenu
ImageIndex = 11
OnClick = btPageSizesToCropsClick
end
object panelPageRotate: TBCPanel
Left = 22
Height = 48
Top = 97
Width = 202
Background.Color = clBtnFace
Background.Gradient1.StartColor = clWhite
Background.Gradient1.EndColor = clBlack
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 0
Background.Gradient1.Point1YPercent = 0
Background.Gradient1.Point2XPercent = 0
Background.Gradient1.Point2YPercent = 100
Background.Gradient2.StartColor = clWhite
Background.Gradient2.EndColor = clBlack
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point1XPercent = 0
Background.Gradient2.Point1YPercent = 0
Background.Gradient2.Point2XPercent = 0
Background.Gradient2.Point2YPercent = 100
Background.Gradient1EndPercent = 35
Background.Style = bbsColor
BevelInner = bvNone
BevelOuter = bvNone
BevelWidth = 1
Border.Style = bboNone
FontEx.Color = clDefault
FontEx.FontQuality = fqSystemClearType
FontEx.Shadow = False
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
ParentBackground = False
Rounding.RoundX = 1
Rounding.RoundY = 1
TabOrder = 4
object Label9: TLabel
Left = 22
Height = 15
Top = 0
Width = 40
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'Rotate :'
end
object btPRotateLeft: TSpeedButton
Left = 65
Height = 22
Hint = 'Rotate Left'
Top = 0
Width = 23
AllowAllUp = True
Flat = True