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
|
object ProjectVariablesForm: TProjectVariablesForm
Left = 505
Height = 345
Top = 306
Width = 539
Caption = 'New project from template'
ClientHeight = 345
ClientWidth = 539
OnCreate = FormCreate
OnShow = ProjectVariablesFormShow
Position = poScreenCenter
LCLVersion = '1.9.0.0'
object ProjNameLabel: TLabel
AnchorSideTop.Control = EProjectName
AnchorSideTop.Side = asrCenter
Left = 8
Height = 13
Top = 21
Width = 124
Alignment = taRightJustify
Caption = '&Name for new project:'
Layout = tlCenter
ParentColor = False
end
object DEDestDirLabel: TLabel
AnchorSideTop.Control = DEDestDir
AnchorSideTop.Side = asrCenter
Left = 8
Height = 13
Top = 53
Width = 107
Alignment = taRightJustify
Caption = 'Create in &directory:'
Layout = tlCenter
ParentColor = False
end
object PDescription: TPanel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = DEDestDir
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 58
Top = 77
Width = 527
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 6
BevelInner = bvRaised
BevelOuter = bvLowered
Caption = 'This project contains some additional variables. Please provide values for these variables'
FullRepaint = False
TabOrder = 0
end
object SGVariables: TStringGrid
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = PDescription
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = ButtonPanel1
Left = 6
Height = 156
Top = 141
Width = 527
Anchors = [akTop, akLeft, akRight, akBottom]
AutoFillColumns = True
BorderSpacing.Around = 6
ColCount = 3
DefaultColWidth = 120
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing, goEditing, goAlwaysShowEditor, goDblClickAutoSize, goSmoothScroll]
TabOrder = 3
ColWidths = (
120
202
203
)
end
object EProjectName: TEdit
AnchorSideLeft.Control = ProjNameLabel
AnchorSideLeft.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 138
Height = 23
Top = 16
Width = 395
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 6
BorderSpacing.Right = 6
TabOrder = 1
end
object DEDestDir: TDirectoryEdit
AnchorSideLeft.Control = EProjectName
AnchorSideRight.Side = asrBottom
Left = 138
Height = 23
Top = 48
Width = 393
ShowHidden = False
ButtonWidth = 23
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
MaxLength = 0
TabOrder = 2
end
object ButtonPanel1: TButtonPanel
Left = 6
Height = 36
Top = 303
Width = 527
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
OKButton.OnClick = BOKClick
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 4
ShowButtons = [pbOK, pbCancel]
end
end
|