mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 10:57:55 +02:00
126 lines
3.3 KiB
Plaintext
126 lines
3.3 KiB
Plaintext
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 = '2.3.0.0'
|
|
object ProjNameLabel: TLabel
|
|
AnchorSideTop.Control = EProjectName
|
|
AnchorSideTop.Side = asrCenter
|
|
Left = 8
|
|
Height = 15
|
|
Top = 20
|
|
Width = 118
|
|
Alignment = taRightJustify
|
|
Caption = '&Name for new project:'
|
|
Layout = tlCenter
|
|
end
|
|
object DEDestDirLabel: TLabel
|
|
AnchorSideTop.Control = DEDestDir
|
|
AnchorSideTop.Side = asrCenter
|
|
Left = 8
|
|
Height = 15
|
|
Top = 52
|
|
Width = 100
|
|
Alignment = taRightJustify
|
|
Caption = 'Create in &directory:'
|
|
Layout = tlCenter
|
|
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 = 158
|
|
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
|
|
OnSelectEditor = SGVariablesSelectEditor
|
|
ColWidths = (
|
|
120
|
|
201
|
|
202
|
|
)
|
|
end
|
|
object EProjectName: TEdit
|
|
AnchorSideLeft.Control = ProjNameLabel
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
Left = 132
|
|
Height = 23
|
|
Top = 16
|
|
Width = 401
|
|
Anchors = [akTop, akLeft, akRight]
|
|
BorderSpacing.Left = 6
|
|
BorderSpacing.Right = 6
|
|
OnChange = EssentialDataChange
|
|
TabOrder = 1
|
|
end
|
|
object DEDestDir: TDirectoryEdit
|
|
AnchorSideLeft.Control = EProjectName
|
|
AnchorSideRight.Side = asrBottom
|
|
Left = 132
|
|
Height = 23
|
|
Top = 48
|
|
Width = 399
|
|
ShowHidden = False
|
|
ButtonWidth = 23
|
|
NumGlyphs = 1
|
|
Anchors = [akTop, akLeft, akRight]
|
|
MaxLength = 0
|
|
TabOrder = 2
|
|
OnChange = EssentialDataChange
|
|
end
|
|
object ButtonPanel1: TButtonPanel
|
|
Left = 6
|
|
Height = 34
|
|
Top = 305
|
|
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
|