File: messagecomposer.lfm

package info (click to toggle)
lazarus 2.0.10%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 219,188 kB
  • sloc: pascal: 1,867,962; xml: 265,716; cpp: 56,595; sh: 3,005; java: 609; makefile: 568; perl: 297; sql: 222; ansic: 137
file content (924 lines) | stat: -rw-r--r-- 24,515 bytes parent folder | download | duplicates (3)
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
object FormMessagesComposer: TFormMessagesComposer
  AnchorSideLeft.Side = asrBottom
  Left = 658
  Height = 539
  Top = 123
  Width = 580
  ActiveControl = KindMessageComboBox
  BorderIcons = [biSystemMenu]
  Caption = 'Messages Composer'
  ClientHeight = 539
  ClientWidth = 580
  OnCreate = MessagesInitExecute
  OnShow = FormShow
  Position = poScreenCenter
  LCLVersion = '2.1.0.0'
  object CaptionLabel: TLabel
    AnchorSideLeft.Control = KindMessageComboBox
    AnchorSideTop.Control = KindMessageComboBox
    AnchorSideTop.Side = asrBottom
    Left = 8
    Height = 15
    Top = 64
    Width = 70
    BorderSpacing.Top = 16
    Caption = 'CaptionLabel'
    ParentColor = False
  end
  object MsgLabel: TLabel
    AnchorSideLeft.Control = CaptionEdit
    AnchorSideTop.Control = CaptionEdit
    AnchorSideTop.Side = asrBottom
    Left = 8
    Height = 15
    Top = 117
    Width = 51
    BorderSpacing.Top = 12
    Caption = 'MsgLabel'
    ParentColor = False
  end
  object DlgTypeLabel: TLabel
    AnchorSideLeft.Control = DlgTypeComboBox
    AnchorSideTop.Control = CaptionLabel
    Left = 152
    Height = 15
    Top = 64
    Width = 42
    Caption = 'DlgType'
    ParentColor = False
  end
  object HelpContextLabel: TLabel
    AnchorSideLeft.Control = MsgMemo
    AnchorSideTop.Side = asrBottom
    AnchorSideBottom.Control = HelpContextSpinEdit
    Left = 8
    Height = 15
    Top = 281
    Width = 70
    Anchors = [akLeft, akBottom]
    Caption = 'Help Context'
    ParentColor = False
  end
  object HelpKeyWordLabel: TLabel
    AnchorSideLeft.Control = YLabel
    AnchorSideTop.Control = HelpContextLabel
    AnchorSideTop.Side = asrCenter
    AnchorSideRight.Side = asrBottom
    Left = 101
    Height = 15
    Top = 281
    Width = 76
    Caption = 'Help KeyWord'
    ParentColor = False
  end
  object XLabel: TLabel
    AnchorSideLeft.Control = MsgMemo
    AnchorSideTop.Control = XSpinEdit
    AnchorSideTop.Side = asrCenter
    Left = 8
    Height = 15
    Top = 241
    Width = 7
    Caption = 'X'
    ParentColor = False
  end
  object YLabel: TLabel
    AnchorSideLeft.Control = XSpinEdit
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = YSpinEdit
    AnchorSideTop.Side = asrCenter
    Left = 101
    Height = 15
    Top = 241
    Width = 7
    BorderSpacing.Left = 16
    Caption = 'Y'
    ParentColor = False
  end
  object HelpFileNameLabel: TLabel
    AnchorSideLeft.Control = MsgMemo
    AnchorSideTop.Side = asrBottom
    AnchorSideBottom.Control = HelpFileNameEdit
    Left = 8
    Height = 15
    Top = 328
    Width = 78
    Anchors = [akLeft, akBottom]
    BorderSpacing.Top = 6
    Caption = 'Help FileName'
    ParentColor = False
  end
  object PromptLabel: TLabel
    AnchorSideLeft.Control = MsgMemo
    AnchorSideTop.Control = Bevel2
    AnchorSideTop.Side = asrBottom
    AnchorSideBottom.Control = PromptEdit
    Left = 8
    Height = 15
    Top = 394
    Width = 68
    Anchors = [akLeft, akBottom]
    Caption = 'PromptLabel'
    ParentColor = False
  end
  object ValueLabel: TLabel
    AnchorSideLeft.Control = PromptEdit
    AnchorSideTop.Control = PromptEdit
    AnchorSideTop.Side = asrBottom
    AnchorSideBottom.Control = ValueEdit
    Left = 8
    Height = 15
    Top = 447
    Width = 55
    Anchors = [akLeft, akBottom]
    BorderSpacing.Top = 12
    Caption = 'Value (var)'
    ParentColor = False
  end
  object DefaultValue: TLabel
    AnchorSideLeft.Control = DefaultEdit
    AnchorSideTop.Control = ValueLabel
    Left = 152
    Height = 15
    Top = 447
    Width = 38
    Caption = 'Default'
    ParentColor = False
  end
  object PositionBevel: TBevel
    AnchorSideLeft.Control = MsgMemo
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = MsgMemo
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = XSpinEdit
    Left = 8
    Height = 9
    Top = 222
    Width = 273
    Anchors = [akLeft, akRight, akBottom]
    Shape = bsTopLine
  end
  object Bevel2: TBevel
    AnchorSideLeft.Control = MsgMemo
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = MsgMemo
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = PromptLabel
    Left = 8
    Height = 9
    Top = 385
    Width = 273
    Anchors = [akLeft, akRight, akBottom]
    BorderSpacing.Top = 16
    Shape = bsTopLine
  end
  object HelpCtxBevel: TBevel
    AnchorSideLeft.Control = MsgMemo
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = MsgMemo
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = HelpContextLabel
    Left = 8
    Height = 9
    Top = 272
    Width = 273
    Anchors = [akLeft, akRight, akBottom]
    Shape = bsTopLine
  end
  object KindMessageLabel: TLabel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = Owner
    Left = 8
    Height = 15
    Top = 6
    Width = 98
    BorderSpacing.Left = 8
    BorderSpacing.Top = 6
    BorderSpacing.Right = 6
    Caption = 'KindMessageLabel'
    ParentColor = False
  end
  object CaptionEdit: TEdit
    AnchorSideLeft.Control = CaptionLabel
    AnchorSideTop.Control = CaptionLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = HCenterBevel1
    Left = 8
    Height = 23
    Top = 82
    Width = 128
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 3
    TabOrder = 0
    Text = 'CaptionEdit'
  end
  object DlgTypeComboBox: TComboBox
    AnchorSideLeft.Control = HCenterBevel1
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = CaptionEdit
    AnchorSideRight.Control = HCenterBevel
    Left = 152
    Height = 23
    Top = 82
    Width = 129
    Anchors = [akTop, akLeft, akRight]
    DropDownCount = 24
    ItemHeight = 15
    ItemIndex = 0
    Items.Strings = (
      'mtWarning'
      'mtError'
      'mtInformation'
      'mtConfirmation'
      'mtCustom'
    )
    Style = csDropDownList
    TabOrder = 1
    Text = 'mtWarning'
  end
  object HelpContextSpinEdit: TSpinEdit
    AnchorSideLeft.Control = HelpContextLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = XSpinEdit
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = HelpFileNameLabel
    Left = 8
    Height = 23
    Top = 299
    Width = 77
    Anchors = [akLeft, akRight, akBottom]
    BorderSpacing.Top = 3
    MaxValue = 9999
    TabOrder = 2
  end
  object HelpKeyWordEdit: TEdit
    AnchorSideLeft.Control = HelpKeyWordLabel
    AnchorSideTop.Control = HelpContextSpinEdit
    AnchorSideRight.Control = MsgMemo
    AnchorSideRight.Side = asrBottom
    Left = 101
    Height = 23
    Top = 299
    Width = 180
    Anchors = [akTop, akLeft, akRight]
    TabOrder = 3
    Text = 'HelpKeyWordEdit'
  end
  object XSpinEdit: TSpinEdit
    AnchorSideLeft.Control = XLabel
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = PositionBevel
    AnchorSideTop.Side = asrBottom
    AnchorSideBottom.Control = HelpCtxBevel
    Left = 19
    Height = 23
    Top = 237
    Width = 66
    Anchors = [akLeft, akBottom]
    BorderSpacing.Left = 4
    BorderSpacing.Top = 6
    BorderSpacing.Bottom = 12
    TabOrder = 4
  end
  object YSpinEdit: TSpinEdit
    AnchorSideLeft.Control = YLabel
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = XSpinEdit
    AnchorSideTop.Side = asrCenter
    Left = 112
    Height = 23
    Top = 237
    Width = 66
    BorderSpacing.Left = 4
    TabOrder = 5
  end
  object HelpFileNameEdit: TFileNameEdit
    AnchorSideLeft.Control = MsgMemo
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = MsgMemo
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = Bevel2
    Left = 8
    Height = 23
    Top = 346
    Width = 273
    DialogOptions = []
    FilterIndex = 0
    HideDirectories = False
    ButtonWidth = 23
    NumGlyphs = 1
    Anchors = [akLeft, akRight, akBottom]
    BorderSpacing.Top = 3
    MaxLength = 0
    TabOrder = 6
  end
  object PromptEdit: TEdit
    AnchorSideLeft.Control = PromptLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = MaskInputCheckBox
    AnchorSideBottom.Control = ValueLabel
    Left = 8
    Height = 23
    Top = 412
    Width = 181
    Anchors = [akLeft, akRight, akBottom]
    BorderSpacing.Top = 3
    TabOrder = 7
    Text = 'PromptEdit'
  end
  object MaskInputCheckBox: TCheckBox
    AnchorSideTop.Control = PromptEdit
    AnchorSideTop.Side = asrCenter
    AnchorSideRight.Control = MsgMemo
    AnchorSideRight.Side = asrBottom
    Left = 205
    Height = 19
    Top = 414
    Width = 76
    Anchors = [akTop, akRight]
    BorderSpacing.Left = 16
    Caption = 'MaskInput'
    TabOrder = 8
  end
  object ValueEdit: TEdit
    AnchorSideLeft.Control = ValueLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = HCenterBevel1
    AnchorSideBottom.Control = ButtonPanel
    Left = 8
    Height = 23
    Top = 465
    Width = 128
    Anchors = [akLeft, akRight, akBottom]
    BorderSpacing.Top = 3
    TabOrder = 9
    Text = 'ValueEdit'
  end
  object DefaultEdit: TEdit
    AnchorSideLeft.Control = HCenterBevel1
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = ValueEdit
    AnchorSideRight.Control = MsgMemo
    AnchorSideRight.Side = asrBottom
    Left = 152
    Height = 23
    Top = 465
    Width = 129
    Anchors = [akTop, akLeft, akRight]
    TabOrder = 10
    Text = 'DefaultEdit'
  end
  object SourceWrapperGroupBox: TGroupBox
    AnchorSideLeft.Control = ButtonsNotebook
    AnchorSideTop.Control = ButtonsNotebook
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = ButtonsNotebook
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = DefaultEdit
    AnchorSideBottom.Side = asrBottom
    Left = 300
    Height = 243
    Top = 245
    Width = 272
    Anchors = [akTop, akLeft, akRight, akBottom]
    BorderSpacing.Top = 16
    Caption = 'SourceWrapperGroupBox'
    ClientHeight = 223
    ClientWidth = 268
    TabOrder = 12
    object IfThenRadioButton: TRadioButton
      AnchorSideLeft.Control = SourceWrapperGroupBox
      Left = 8
      Height = 19
      Top = 8
      Width = 69
      BorderSpacing.Left = 8
      Caption = 'if...then...'
      Checked = True
      OnClick = SetIfOrCaseExecute
      TabOrder = 0
      TabStop = True
    end
    object IfThenElseRadioButton: TRadioButton
      AnchorSideLeft.Control = IfThenRadioButton
      AnchorSideTop.Control = IfThenRadioButton
      AnchorSideTop.Side = asrBottom
      Left = 8
      Height = 19
      Top = 29
      Width = 101
      BorderSpacing.Top = 2
      Caption = 'if...then...else ...'
      OnClick = SetIfOrCaseExecute
      TabOrder = 1
    end
    object CaseOfEndRadioButton: TRadioButton
      AnchorSideLeft.Control = IfThenElseRadioButton
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = IfThenRadioButton
      Left = 125
      Height = 19
      Top = 10
      Width = 107
      BorderSpacing.Left = 16
      BorderSpacing.Top = 2
      Caption = 'case ... of ... end;'
      OnClick = SetIfOrCaseExecute
      TabOrder = 2
    end
    object CaseOfEndElseRadioButton: TRadioButton
      AnchorSideLeft.Control = CaseOfEndRadioButton
      AnchorSideTop.Control = CaseOfEndRadioButton
      AnchorSideTop.Side = asrBottom
      Left = 125
      Height = 19
      Top = 31
      Width = 116
      BorderSpacing.Top = 2
      Caption = 'case ... of ... else ...'
      OnClick = SetIfOrCaseExecute
      TabOrder = 3
    end
    object BeginEndCheckBox: TCheckBox
      AnchorSideLeft.Control = IfThenRadioButton
      AnchorSideTop.Control = IfThenElseRadioButton
      AnchorSideTop.Side = asrBottom
      Left = 8
      Height = 19
      Top = 54
      Width = 85
      BorderSpacing.Top = 6
      Caption = 'begin ... end'
      TabOrder = 4
    end
    object SourceNotebook: TNotebook
      AnchorSideLeft.Control = SourceWrapperGroupBox
      AnchorSideTop.Control = BeginEndCheckBox
      AnchorSideTop.Side = asrBottom
      AnchorSideRight.Control = SourceWrapperGroupBox
      AnchorSideRight.Side = asrBottom
      Left = 8
      Height = 142
      Top = 81
      Width = 252
      PageIndex = 0
      Align = alBottom
      Anchors = [akTop, akLeft, akRight, akBottom]
      BorderSpacing.Left = 8
      BorderSpacing.Top = 8
      BorderSpacing.Right = 8
      TabOrder = 5
      TabStop = True
      object PageIf: TPage
        object Label1: TLabel
          AnchorSideLeft.Control = PageIf
          AnchorSideTop.Control = PageIf
          Left = 0
          Height = 15
          Top = 0
          Width = 58
          Caption = '"if" RESULT'
          ParentColor = False
        end
        object IfResultComboBox: TComboBox
          AnchorSideLeft.Control = PageIf
          AnchorSideTop.Control = Label1
          AnchorSideTop.Side = asrBottom
          AnchorSideRight.Control = PageIf
          AnchorSideRight.Side = asrBottom
          Left = 0
          Height = 23
          Top = 18
          Width = 252
          Anchors = [akTop, akLeft, akRight]
          BorderSpacing.Top = 3
          DropDownCount = 24
          ItemHeight = 15
          ItemIndex = 0
          Items.Strings = (
            'mbOK'
            'mbCancel'
          )
          Style = csDropDownList
          TabOrder = 0
          Text = 'mbOK'
        end
      end
      object PageCase: TPage
        object CaseResultCheckGroup: TCheckGroup
          AnchorSideLeft.Control = PageCase
          AnchorSideTop.Control = PageCase
          AnchorSideRight.Control = PageCase
          AnchorSideRight.Side = asrBottom
          Left = 0
          Height = 51
          Top = 0
          Width = 271
          Anchors = [akTop, akLeft, akRight]
          AutoFill = True
          AutoSize = True
          Caption = '"case" RESULT'
          ChildSizing.LeftRightSpacing = 16
          ChildSizing.TopBottomSpacing = 6
          ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
          ChildSizing.EnlargeVertical = crsHomogenousChildResize
          ChildSizing.ShrinkHorizontal = crsScaleChilds
          ChildSizing.ShrinkVertical = crsScaleChilds
          ChildSizing.Layout = cclLeftToRightThenTopToBottom
          ChildSizing.ControlsPerLine = 3
          ClientHeight = 51
          ClientWidth = 271
          Columns = 3
          Items.Strings = (
            'mbOK'
            'mbCancel'
          )
          TabOrder = 0
          Data = {
            020000000302
          }
        end
      end
      object PageString: TPage
        object StringResultLabel: TLabel
          AnchorSideLeft.Control = PageString
          AnchorSideTop.Control = PageString
          Left = 0
          Height = 15
          Top = 8
          Width = 72
          BorderSpacing.Top = 8
          Caption = 'String RESULT'
          ParentColor = False
        end
        object StringResultEdit: TEdit
          AnchorSideLeft.Control = PageString
          AnchorSideTop.Control = StringResultLabel
          AnchorSideTop.Side = asrBottom
          AnchorSideRight.Control = PageString
          AnchorSideRight.Side = asrBottom
          Left = 0
          Height = 23
          Top = 26
          Width = 252
          Anchors = [akTop, akLeft, akRight]
          BorderSpacing.Top = 3
          TabOrder = 0
          Text = 'StringResultEdit'
        end
      end
    end
  end
  object KindMessageComboBox: TComboBox
    AnchorSideLeft.Control = KindMessageLabel
    AnchorSideTop.Control = KindMessageLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 8
    Height = 23
    Top = 25
    Width = 564
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 4
    BorderSpacing.Right = 8
    DropDownCount = 24
    ItemHeight = 15
    Items.Strings = (
      '{Filled @runtime}'
    )
    OnChange = MessageSetupExecute
    Style = csDropDownList
    TabOrder = 14
  end
  object MsgMemo: TMemo
    AnchorSideLeft.Control = MsgLabel
    AnchorSideTop.Control = MsgLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = HCenterBevel
    AnchorSideBottom.Control = PositionBevel
    Left = 8
    Height = 75
    Top = 135
    Width = 273
    Anchors = [akTop, akLeft, akRight, akBottom]
    BorderSpacing.Top = 3
    BorderSpacing.Bottom = 12
    Lines.Strings = (
      'MsgLabel'
    )
    OnChange = GetParamsFmtExecute
    OnEditingDone = GetParamsFmtExecute
    ScrollBars = ssAutoVertical
    TabOrder = 11
    WordWrap = False
  end
  object ButtonsNotebook: TNotebook
    AnchorSideLeft.Control = HCenterBevel
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = CaptionLabel
    AnchorSideRight.Control = KindMessageComboBox
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Side = asrBottom
    Left = 300
    Height = 165
    Top = 64
    Width = 272
    PageIndex = 0
    Anchors = [akTop, akLeft, akRight]
    TabOrder = 13
    TabStop = True
    object Page1: TPage
      object ButtonsCheckGroup: TCheckGroup
        AnchorSideLeft.Side = asrBottom
        Left = 0
        Height = 165
        Top = 0
        Width = 272
        Align = alClient
        AutoFill = True
        Caption = 'BUTTONS (TMsgDlgButtons)'
        ChildSizing.LeftRightSpacing = 16
        ChildSizing.TopBottomSpacing = 6
        ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
        ChildSizing.EnlargeVertical = crsHomogenousChildResize
        ChildSizing.ShrinkHorizontal = crsScaleChilds
        ChildSizing.ShrinkVertical = crsScaleChilds
        ChildSizing.Layout = cclLeftToRightThenTopToBottom
        ChildSizing.ControlsPerLine = 2
        ClientHeight = 145
        ClientWidth = 268
        Columns = 2
        Items.Strings = (
          'mbYes'
          'mbNo'
          'mbOK'
          'mbCancel'
          'mbAbort'
          'mbRetry'
          'mbIgnore'
          'mbAll'
          'mbNoToAll'
          'mbYesToAll'
          'mbHelp'
          'mbClose'
        )
        OnItemClick = ButtonsCheckGroupItemClick
        TabOrder = 0
        Data = {
          0C000000020203030202020202020202
        }
      end
    end
    object Page2: TPage
      object ButtonsPanel: TPanel
        Left = 0
        Height = 173
        Top = 0
        Width = 296
        Align = alClient
        ClientHeight = 173
        ClientWidth = 296
        TabOrder = 0
        object ButtonsStringGrid: TStringGrid
          Left = 1
          Height = 134
          Top = 1
          Width = 294
          Align = alClient
          AutoFillColumns = True
          ColCount = 2
          FixedCols = 0
          Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goSmoothScroll]
          RowCount = 4
          TabOrder = 0
          OnPickListSelect = UpdateQuestioDlgResultExecute
          OnSelectEditor = ButtonsStringGridSelectEditor
          ColWidths = (
            147
            147
          )
          Cells = (
            8
            0
            0
            'BUTTONS (array of const)'
            0
            1
            'Yes'
            0
            2
            'No'
            0
            3
            'Cancel'
            1
            0
            'Modal Result'
            1
            1
            'mrYes'
            1
            2
            'mrNo'
            1
            3
            'mrCancel'
          )
        end
        object Panel2: TPanel
          Left = 1
          Height = 37
          Top = 135
          Width = 294
          Align = alBottom
          BevelInner = bvLowered
          BevelOuter = bvSpace
          ClientHeight = 37
          ClientWidth = 294
          TabOrder = 1
          object BitBtn1: TBitBtn
            AnchorSideLeft.Control = Panel2
            AnchorSideRight.Control = HCenterBevel2
            Left = 2
            Height = 33
            Top = 2
            Width = 143
            Action = AddConst
            Align = alLeft
            Anchors = [akTop, akLeft, akRight, akBottom]
            AutoSize = True
            TabOrder = 0
          end
          object BitBtn2: TBitBtn
            AnchorSideLeft.Control = HCenterBevel2
            AnchorSideLeft.Side = asrBottom
            AnchorSideRight.Control = Panel2
            Left = 149
            Height = 33
            Top = 2
            Width = 143
            Action = DelConst
            Align = alRight
            Anchors = [akTop, akLeft, akRight, akBottom]
            AutoSize = True
            TabOrder = 1
          end
          object HCenterBevel2: TBevel
            AnchorSideLeft.Control = Panel2
            AnchorSideLeft.Side = asrCenter
            Left = 145
            Height = 34
            Top = 1
            Width = 4
            Shape = bsSpacer
          end
        end
      end
    end
  end
  object ButtonPanel: TPanel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = ValueEdit
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = Owner
    AnchorSideBottom.Side = asrBottom
    Left = 0
    Height = 43
    Top = 496
    Width = 580
    Anchors = [akLeft, akRight, akBottom]
    AutoSize = True
    BorderSpacing.Top = 8
    BevelOuter = bvNone
    ClientHeight = 43
    ClientWidth = 580
    TabOrder = 15
    object TestButton: TButton
      AnchorSideLeft.Control = ButtonPanel
      AnchorSideTop.Control = CancelButton
      AnchorSideBottom.Control = CancelButton
      AnchorSideBottom.Side = asrBottom
      Left = 8
      Height = 26
      Top = 9
      Width = 55
      Action = Test
      Anchors = [akTop, akLeft, akBottom]
      AutoSize = True
      BorderSpacing.Left = 8
      BorderSpacing.InnerBorder = 4
      TabOrder = 0
    end
    object OkButton: TBitBtn
      AnchorSideTop.Control = CancelButton
      AnchorSideRight.Control = CancelButton
      Left = 420
      Height = 26
      Top = 9
      Width = 62
      Anchors = [akTop, akRight]
      AutoSize = True
      BorderSpacing.Right = 8
      Caption = '&OK'
      Kind = bkOK
      ModalResult = 1
      TabOrder = 1
    end
    object CancelButton: TBitBtn
      AnchorSideLeft.Control = OkButton
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = PositionBevel1
      AnchorSideTop.Side = asrBottom
      AnchorSideRight.Control = ButtonPanel
      AnchorSideRight.Side = asrBottom
      Left = 490
      Height = 26
      Top = 9
      Width = 82
      Anchors = [akTop, akRight]
      AutoSize = True
      BorderSpacing.Right = 8
      BorderSpacing.Bottom = 8
      Cancel = True
      Caption = 'Cancel'
      Kind = bkCancel
      ModalResult = 2
      TabOrder = 2
    end
    object PositionBevel1: TBevel
      AnchorSideLeft.Control = ButtonPanel
      AnchorSideTop.Control = ButtonPanel
      AnchorSideRight.Control = ButtonPanel
      AnchorSideRight.Side = asrBottom
      Left = 4
      Height = 9
      Top = 0
      Width = 572
      Anchors = [akTop, akLeft, akRight]
      BorderSpacing.Left = 4
      BorderSpacing.Right = 4
      Shape = bsTopLine
    end
  end
  object HCenterBevel: TBevel
    AnchorSideLeft.Control = Owner
    AnchorSideLeft.Side = asrCenter
    Left = 281
    Height = 50
    Top = 7
    Width = 19
    Shape = bsSpacer
  end
  object HCenterBevel1: TBevel
    AnchorSideLeft.Control = MsgMemo
    AnchorSideLeft.Side = asrCenter
    Left = 136
    Height = 41
    Top = 478
    Width = 16
    Shape = bsSpacer
  end
  object ActionList1: TActionList
    left = 504
    top = 376
    object AddConst: TAction
      Caption = 'AddConst'
      OnExecute = AddConstExecute
    end
    object DelConst: TAction
      Caption = 'DelConst'
      OnExecute = DelConstExecute
    end
    object MessageSetup: TAction
      Caption = 'MessageSetup'
      OnExecute = MessageSetupExecute
    end
    object MessagesInit: TAction
      Caption = 'MessagesInit'
      OnExecute = MessagesInitExecute
    end
    object Test: TAction
      Caption = 'Test'
      OnExecute = TestExecute
    end
    object GetMessageForSource: TAction
      Caption = 'GetMessageForSource'
      OnExecute = GetMessageForSourceExecute
    end
    object GetParamsFmt: TAction
      Caption = 'GetParamsFmt'
      OnExecute = GetParamsFmtExecute
    end
    object SetIfOrCase: TAction
      Caption = 'SetIfOrCase'
      OnExecute = SetIfOrCaseExecute
    end
    object UpdateQuestioDlgResult: TAction
      Caption = 'UpdateQuestioDlgResult'
      OnExecute = UpdateQuestioDlgResultExecute
    end
  end
end