lazarus/ide/customdefines.lfm
2013-08-24 09:08:12 +00:00

109 lines
2.6 KiB
Plaintext

object CustomDefinesForm: TCustomDefinesForm
Left = 305
Height = 326
Top = 265
Width = 341
BorderIcons = [biSystemMenu]
Caption = 'Conditional Defines'
ClientHeight = 326
ClientWidth = 341
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '1.1'
object gbNewDefine: TGroupBox
Left = 6
Height = 79
Top = 6
Width = 329
Align = alTop
AutoSize = True
BorderSpacing.Around = 6
Caption = 'gbNewDefine'
ClientHeight = 60
ClientWidth = 325
TabOrder = 0
object AddBtn: TBitBtn
AnchorSideTop.Control = RemoveBtn
AnchorSideRight.Control = RemoveBtn
Left = 163
Height = 26
Top = 31
Width = 75
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 6
Caption = '&Add'
Constraints.MinHeight = 25
Constraints.MinWidth = 75
OnClick = AddBtnClick
TabOrder = 0
end
object RemoveBtn: TBitBtn
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = edDefine
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = edDefine
AnchorSideRight.Side = asrBottom
Left = 244
Height = 26
Top = 31
Width = 75
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Top = 6
BorderSpacing.Bottom = 3
Caption = '&Remove'
Constraints.MinHeight = 25
Constraints.MinWidth = 75
OnClick = RemoveBtnClick
TabOrder = 1
end
object edDefine: TEdit
AnchorSideTop.Side = asrBottom
Left = 6
Height = 25
Top = 0
Width = 313
Align = alTop
BorderSpacing.Left = 6
BorderSpacing.Right = 6
BorderSpacing.Bottom = 6
OnChange = EditChange
TabOrder = 2
end
end
object DefinesCheckList: TCheckListBox
Left = 6
Height = 182
Top = 91
Width = 329
Align = alClient
Anchors = [akTop, akBottom]
BorderSpacing.Around = 6
ItemHeight = 0
OnClick = DefinesCheckListClick
OnDblClick = DefinesCheckListDblClick
OnKeyDown = DefinesCheckListKeyDown
TabOrder = 1
end
object ButtonPanel: TButtonPanel
Left = 6
Height = 41
Top = 279
Width = 329
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
HelpButton.OnClick = HelpButtonClick
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 2
ShowButtons = [pbOK, pbCancel, pbHelp]
end
end