1object CustomApplicationOptionsForm: TCustomApplicationOptionsForm
2  Left = 386
3  Height = 290
4  Top = 242
5  Width = 460
6  BorderIcons = [biSystemMenu]
7  BorderStyle = bsDialog
8  Caption = 'New console application'
9  ClientHeight = 290
10  ClientWidth = 460
11  OnCreate = FormCreate
12  Position = poScreenCenter
13  LCLVersion = '0.9.29'
14  object LEClassName: TLabel
15    AnchorSideTop.Control = EClassName
16    AnchorSideTop.Side = asrCenter
17    AnchorSideRight.Control = EClassName
18    Left = 127
19    Height = 14
20    Top = 9
21    Width = 108
22    Alignment = taRightJustify
23    Anchors = [akTop, akRight]
24    BorderSpacing.Right = 6
25    Caption = '&Application class name'
26    FocusControl = EClassName
27    Layout = tlCenter
28    ParentColor = False
29  end
30  object LETitle: TLabel
31    AnchorSideTop.Control = ETitle
32    AnchorSideTop.Side = asrCenter
33    AnchorSideRight.Control = ETitle
34    Left = 213
35    Height = 14
36    Top = 42
37    Width = 21
38    Alignment = taRightJustify
39    Anchors = [akTop, akRight]
40    BorderSpacing.Right = 6
41    Caption = '&Title'
42    FocusControl = ETitle
43    Layout = tlCenter
44    ParentColor = False
45  end
46  object EClassName: TEdit
47    AnchorSideTop.Control = Owner
48    AnchorSideRight.Control = Owner
49    AnchorSideRight.Side = asrBottom
50    Left = 241
51    Height = 21
52    Top = 6
53    Width = 213
54    Anchors = [akTop, akLeft, akRight]
55    BorderSpacing.Around = 6
56    OnKeyPress = EClassNameKeyPress
57    TabOrder = 0
58    Text = 'TMyApplication'
59  end
60  object CGOptions: TCheckGroup
61    AnchorSideLeft.Control = Owner
62    AnchorSideTop.Control = ETitle
63    AnchorSideTop.Side = asrBottom
64    AnchorSideRight.Control = Owner
65    AnchorSideRight.Side = asrBottom
66    AnchorSideBottom.Control = ButtonPanel
67    Left = 6
68    Height = 186
69    Top = 66
70    Width = 448
71    Anchors = [akTop, akLeft, akRight, akBottom]
72    AutoFill = True
73    AutoSize = True
74    BorderSpacing.Around = 6
75    Caption = 'Code generation options'
76    ChildSizing.LeftRightSpacing = 6
77    ChildSizing.TopBottomSpacing = 6
78    ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
79    ChildSizing.EnlargeVertical = crsHomogenousChildResize
80    ChildSizing.ShrinkHorizontal = crsScaleChilds
81    ChildSizing.ShrinkVertical = crsScaleChilds
82    ChildSizing.Layout = cclLeftToRightThenTopToBottom
83    ChildSizing.ControlsPerLine = 1
84    TabOrder = 2
85  end
86  object ETitle: TEdit
87    AnchorSideTop.Control = EClassName
88    AnchorSideTop.Side = asrBottom
89    AnchorSideRight.Control = Owner
90    AnchorSideRight.Side = asrBottom
91    Left = 240
92    Height = 21
93    Top = 39
94    Width = 214
95    Anchors = [akTop, akLeft, akRight]
96    BorderSpacing.Top = 6
97    BorderSpacing.Around = 6
98    TabOrder = 1
99    Text = 'My Application'
100  end
101  object ButtonPanel: TButtonPanel
102    Left = 6
103    Height = 26
104    Top = 258
105    Width = 448
106    OKButton.Name = 'OKButton'
107    HelpButton.Name = 'HelpButton'
108    HelpButton.Enabled = False
109    CloseButton.Name = 'CloseButton'
110    CloseButton.Enabled = False
111    CancelButton.Name = 'CancelButton'
112    TabOrder = 3
113    ShowButtons = [pbOK, pbCancel]
114    ShowBevel = False
115  end
116end
117