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
|
object ImExportCompOptsDlg: TImExportCompOptsDlg
Left = 416
Height = 171
Top = 208
Width = 451
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'ImExportCompOptsDlg'
ClientHeight = 171
ClientWidth = 451
Constraints.MinHeight = 113
Constraints.MinWidth = 300
OnClose = ImExportCompOptsDlgCLOSE
OnCreate = ImExportCompOptsDlgCREATE
Position = poScreenCenter
LCLVersion = '1.9.0.0'
object ButtonPanel1: TButtonPanel
Left = 6
Height = 34
Top = 131
Width = 439
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 3
ShowButtons = [pbOK, pbCancel, pbHelp]
end
object FileLabel: TLabel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
Left = 6
Height = 15
Top = 6
Width = 18
BorderSpacing.Left = 6
BorderSpacing.Top = 6
Caption = 'File'
ParentColor = False
end
object ExportRadioGroup: TRadioGroup
AnchorSideTop.Side = asrBottom
Left = 6
Height = 66
Top = 54
Width = 210
AutoFill = True
BorderSpacing.Top = 6
Caption = 'Compiler options of'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 46
ClientWidth = 206
ItemIndex = 0
Items.Strings = (
'Current build mode'
'All build modes'
)
TabOrder = 2
end
object FileNameEdit: TComboBox
AnchorSideLeft.Control = FileLabel
AnchorSideTop.Control = FileLabel
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = ButtonBrowse
Left = 6
Height = 23
Top = 25
Width = 410
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 4
BorderSpacing.Right = 4
ItemHeight = 15
OnChange = FileNameEditChange
ParentShowHint = False
TabOrder = 0
end
object ButtonBrowse: TButton
AnchorSideLeft.Control = FileNameEdit
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = FileNameEdit
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 420
Height = 25
Top = 25
Width = 25
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = '...'
OnClick = ButtonBrowseClick
TabOrder = 1
end
object OpenDlg: TOpenDialog
Options = [ofFileMustExist, ofEnableSizing, ofViewDetail]
left = 304
top = 88
end
object SaveDlg: TSaveDialog
left = 349
top = 88
end
end
|