mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-09 23:19:39 +01:00
118 lines
3.2 KiB
Plaintext
118 lines
3.2 KiB
Plaintext
object UseUnitDialog: TUseUnitDialog
|
|
Left = 315
|
|
Height = 346
|
|
Top = 177
|
|
Width = 276
|
|
BorderIcons = [biSystemMenu, biMaximize]
|
|
Caption = 'Add unit to uses section'
|
|
ClientHeight = 346
|
|
ClientWidth = 276
|
|
Constraints.MinHeight = 150
|
|
Constraints.MinWidth = 200
|
|
OnCreate = FormCreate
|
|
OnDestroy = FormDestroy
|
|
Position = poScreenCenter
|
|
LCLVersion = '0.9.31'
|
|
object ButtonPanel1: TButtonPanel
|
|
Left = 6
|
|
Height = 26
|
|
Top = 314
|
|
Width = 264
|
|
OKButton.Name = 'OKButton'
|
|
OKButton.Caption = '&OK'
|
|
HelpButton.Name = 'HelpButton'
|
|
HelpButton.Caption = '&Help'
|
|
HelpButton.Enabled = False
|
|
CloseButton.Name = 'CloseButton'
|
|
CloseButton.Caption = '&Close'
|
|
CloseButton.Enabled = False
|
|
CancelButton.Name = 'CancelButton'
|
|
CancelButton.Caption = 'Cancel'
|
|
TabOrder = 3
|
|
ShowButtons = [pbOK, pbCancel]
|
|
ShowBevel = False
|
|
end
|
|
object SectionRadioGroup: TRadioGroup
|
|
AnchorSideLeft.Control = UnitsListBox
|
|
AnchorSideTop.Control = UnitsListBox
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideRight.Control = UnitsListBox
|
|
AnchorSideRight.Side = asrBottom
|
|
AnchorSideBottom.Control = ButtonPanel1
|
|
Left = 6
|
|
Height = 49
|
|
Top = 259
|
|
Width = 264
|
|
Anchors = [akLeft, akRight, akBottom]
|
|
AutoFill = True
|
|
BorderSpacing.Top = 3
|
|
BorderSpacing.Bottom = 3
|
|
Caption = 'Insert into Uses Section'
|
|
ChildSizing.LeftRightSpacing = 6
|
|
ChildSizing.TopBottomSpacing = 6
|
|
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
|
|
ChildSizing.EnlargeVertical = crsHomogenousChildResize
|
|
ChildSizing.ShrinkHorizontal = crsScaleChilds
|
|
ChildSizing.ShrinkVertical = crsScaleChilds
|
|
ChildSizing.Layout = cclLeftToRightThenTopToBottom
|
|
ChildSizing.ControlsPerLine = 2
|
|
ClientHeight = 31
|
|
ClientWidth = 260
|
|
Columns = 2
|
|
ItemIndex = 1
|
|
Items.Strings = (
|
|
'Interface'
|
|
'Implementation'
|
|
)
|
|
TabOrder = 2
|
|
end
|
|
object UnitsListBox: TListBox
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
AnchorSideBottom.Control = AllUnitsCheckBox
|
|
Left = 6
|
|
Height = 198
|
|
Top = 32
|
|
Width = 264
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
BorderSpacing.Around = 6
|
|
ItemHeight = 0
|
|
OnClick = UnitsListBoxClick
|
|
OnDblClick = UnitsListBoxDblClick
|
|
OnDrawItem = UnitsListBoxDrawItem
|
|
Style = lbOwnerDrawFixed
|
|
TabOrder = 1
|
|
end
|
|
object UnitnameEdit: TEdit
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideTop.Control = Owner
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
Left = 6
|
|
Height = 21
|
|
Top = 6
|
|
Width = 264
|
|
Anchors = [akTop, akLeft, akRight]
|
|
BorderSpacing.Around = 6
|
|
OnKeyDown = UnitnameEditKeyDown
|
|
OnKeyPress = UnitnameEditKeyPress
|
|
TabOrder = 0
|
|
end
|
|
object AllUnitsCheckBox: TCheckBox
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideBottom.Control = SectionRadioGroup
|
|
Left = 12
|
|
Height = 17
|
|
Top = 236
|
|
Width = 85
|
|
Anchors = [akLeft, akBottom]
|
|
BorderSpacing.Left = 6
|
|
BorderSpacing.Around = 6
|
|
Caption = 'Show all units'
|
|
OnChange = AllUnitsCheckBoxChange
|
|
TabOrder = 4
|
|
end
|
|
end
|