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
|
object ProjectVariablesForm: TProjectVariablesForm
Left = 505
Height = 326
Top = 306
Width = 573
Caption = 'New project from template'
ClientHeight = 326
ClientWidth = 573
OnCreate = FormCreate
OnShow = ProjectVariablesFormShow
Position = poScreenCenter
LCLVersion = '0.9.29'
object Label1: TLabel
Left = 8
Height = 14
Top = 16
Width = 109
Alignment = taRightJustify
Caption = '&Name for new project:'
Layout = tlCenter
ParentColor = False
end
object Label2: TLabel
Left = 8
Height = 14
Top = 48
Width = 95
Alignment = taRightJustify
Caption = 'Create in &directory:'
Layout = tlCenter
ParentColor = False
end
object PDescription: TPanel
Left = 8
Height = 58
Top = 80
Width = 559
Anchors = [akTop, akLeft, akRight]
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
Left = 10
Height = 138
Top = 144
Width = 557
Anchors = [akTop, akLeft, akRight, akBottom]
AutoFillColumns = True
ColCount = 3
DefaultColWidth = 120
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing, goEditing, goAlwaysShowEditor, goDblClickAutoSize, goSmoothScroll]
TabOrder = 5
ColWidths = (
120
216
217
)
end
object BOK: TButton
Left = 485
Height = 25
Top = 290
Width = 75
Anchors = [akRight, akBottom]
BorderSpacing.InnerBorder = 4
Caption = '&OK'
Default = True
ModalResult = 1
OnClick = BOKClick
TabOrder = 1
end
object BCancel: TButton
Left = 397
Height = 25
Top = 290
Width = 75
Anchors = [akRight, akBottom]
BorderSpacing.InnerBorder = 4
Cancel = True
Caption = '&Cancel'
ModalResult = 2
TabOrder = 2
end
object EProjectName: TEdit
AnchorSideLeft.Control = Label1
AnchorSideLeft.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 123
Height = 21
Top = 16
Width = 444
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 6
BorderSpacing.Right = 6
TabOrder = 3
end
object DEProject: TDirectoryEdit
AnchorSideLeft.Control = EProjectName
AnchorSideRight.Side = asrBottom
Left = 123
Height = 21
Top = 48
Width = 420
ShowHidden = False
ButtonWidth = 23
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
MaxLength = 0
TabOrder = 4
end
end
|