1object IDEFPCInfoDialog: TIDEFPCInfoDialog
2  Left = 505
3  Height = 450
4  Top = 227
5  Width = 700
6  BorderIcons = [biSystemMenu, biMaximize]
7  Caption = 'IDEFPCInfoDialog'
8  ClientHeight = 450
9  ClientWidth = 700
10  OnClose = FormClose
11  OnCreate = FormCreate
12  Position = poScreenCenter
13  LCLVersion = '1.5'
14  object PageControl1: TPageControl
15    Left = 6
16    Height = 403
17    Top = 6
18    Width = 688
19    ActivePage = ValuesTabSheet
20    Align = alClient
21    BorderSpacing.Around = 6
22    TabIndex = 0
23    TabOrder = 0
24    object ValuesTabSheet: TTabSheet
25      Caption = 'FPC values used by the IDE'
26      ClientHeight = 372
27      ClientWidth = 684
28      object ValuesMemo: TMemo
29        Left = 0
30        Height = 372
31        Top = 0
32        Width = 684
33        Align = alClient
34        Lines.Strings = (
35          'ValuesMemo'
36          ''
37        )
38        ReadOnly = True
39        ScrollBars = ssAutoBoth
40        TabOrder = 0
41      end
42    end
43    object OutputTabSheet: TTabSheet
44      Caption = 'FPC output'
45      ClientHeight = 372
46      ClientWidth = 684
47      object CmdLineOutputMemo: TMemo
48        Left = 0
49        Height = 372
50        Top = 0
51        Width = 688
52        Align = alClient
53        Lines.Strings = (
54          'CmdLineOutputMemo'
55        )
56        ReadOnly = True
57        ScrollBars = ssAutoBoth
58        TabOrder = 0
59      end
60    end
61  end
62  object ButtonPanel1: TButtonPanel
63    Left = 6
64    Height = 29
65    Top = 415
66    Width = 688
67    OKButton.Name = 'OKButton'
68    OKButton.DefaultCaption = True
69    HelpButton.Name = 'HelpButton'
70    HelpButton.DefaultCaption = True
71    CloseButton.Name = 'CloseButton'
72    CloseButton.DefaultCaption = True
73    CancelButton.Name = 'CancelButton'
74    CancelButton.DefaultCaption = True
75    TabOrder = 1
76    ShowButtons = [pbClose]
77    ShowBevel = False
78  end
79end
80