mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-27 09:53:51 +02:00
163 lines
3.3 KiB
Plaintext
163 lines
3.3 KiB
Plaintext
object CondForm: TCondForm
|
|
Left = 328
|
|
Height = 238
|
|
Top = 287
|
|
Width = 330
|
|
HorzScrollBar.Page = 329
|
|
HorzScrollBar.Range = 186
|
|
VertScrollBar.Page = 237
|
|
VertScrollBar.Range = 157
|
|
ActiveControl = ListBox
|
|
Caption = 'Conditional Defines'
|
|
OnClose = CondFormCLOSE
|
|
OnCreate = CondFormCREATE
|
|
OnDestroy = FormDestroy
|
|
OnShow = FormShow
|
|
Position = poDesktopCenter
|
|
object FirstLabel: TLabel
|
|
Left = 6
|
|
Height = 17
|
|
Top = 2
|
|
Width = 75
|
|
Caption = '&First test'
|
|
Color = clNone
|
|
FocusControl = FirstTest
|
|
ParentColor = False
|
|
end
|
|
object SecondLabel: TLabel
|
|
AnchorSideTop.Control = FirstTest
|
|
AnchorSideTop.Side = asrBottom
|
|
Left = 6
|
|
Height = 17
|
|
Top = 46
|
|
Width = 99
|
|
BorderSpacing.Top = 6
|
|
Caption = '&Second test'
|
|
Color = clNone
|
|
FocusControl = SecondTest
|
|
ParentColor = False
|
|
end
|
|
object FirstTest: TComboBox
|
|
AnchorSideTop.Control = FirstLabel
|
|
AnchorSideTop.Side = asrBottom
|
|
Left = 5
|
|
Height = 21
|
|
Top = 19
|
|
Width = 217
|
|
Anchors = [akTop, akLeft, akRight]
|
|
AutoCompleteText = [cbactEndOfLineComplete, cbactSearchAscending]
|
|
ItemHeight = 18
|
|
ItemIndex = 0
|
|
Items.Strings = (
|
|
'MSWINDOWS'
|
|
'UNIX'
|
|
'LINUX'
|
|
'WIN32'
|
|
'CLX_'
|
|
'LCL_'
|
|
'VCL_'
|
|
'FPC'
|
|
'KYLIX'
|
|
'VER1_0'
|
|
)
|
|
MaxLength = 0
|
|
ParentCtl3D = False
|
|
TabOrder = 0
|
|
Text = 'MSWINDOWS'
|
|
end
|
|
object ListBox: TListBox
|
|
AnchorSideTop.Control = SecondTest
|
|
AnchorSideTop.Side = asrBottom
|
|
Left = 5
|
|
Height = 141
|
|
Top = 90
|
|
Width = 217
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
BorderSpacing.Top = 6
|
|
ItemHeight = 18
|
|
OnKeyDown = ListBoxKeyDown
|
|
TabOrder = 2
|
|
TopIndex = -1
|
|
end
|
|
object SecondTest: TComboBox
|
|
AnchorSideTop.Control = SecondLabel
|
|
AnchorSideTop.Side = asrBottom
|
|
Left = 5
|
|
Height = 21
|
|
Top = 63
|
|
Width = 217
|
|
Anchors = [akTop, akLeft, akRight]
|
|
AutoCompleteText = [cbactEndOfLineComplete, cbactSearchAscending]
|
|
ItemHeight = 18
|
|
ItemIndex = 0
|
|
Items.Strings = (
|
|
'NONE'
|
|
'ELSE'
|
|
)
|
|
MaxLength = 0
|
|
ParentCtl3D = False
|
|
TabOrder = 1
|
|
Text = 'NONE'
|
|
end
|
|
object AddBtn: TBitBtn
|
|
Left = 229
|
|
Height = 25
|
|
Top = 6
|
|
Width = 97
|
|
Anchors = [akTop, akRight]
|
|
Caption = '&Add'
|
|
NumGlyphs = 0
|
|
OnClick = AddBtnClick
|
|
TabOrder = 3
|
|
end
|
|
object RemoveBtn: TBitBtn
|
|
Left = 229
|
|
Height = 25
|
|
Top = 64
|
|
Width = 97
|
|
Anchors = [akTop, akRight]
|
|
Caption = '&Remove'
|
|
NumGlyphs = 0
|
|
OnClick = RemoveBtnClick
|
|
TabOrder = 5
|
|
end
|
|
object OkBtn: TBitBtn
|
|
Left = 229
|
|
Height = 25
|
|
Top = 95
|
|
Width = 97
|
|
Anchors = [akTop, akRight]
|
|
Caption = '&OK'
|
|
Default = True
|
|
Kind = bkOK
|
|
ModalResult = 1
|
|
NumGlyphs = 0
|
|
TabOrder = 6
|
|
end
|
|
object BitBtn1: TBitBtn
|
|
Left = 229
|
|
Height = 25
|
|
Top = 125
|
|
Width = 97
|
|
Anchors = [akTop, akRight]
|
|
Cancel = True
|
|
Caption = 'Cancel'
|
|
Kind = bkCancel
|
|
ModalResult = 2
|
|
NumGlyphs = 0
|
|
TabOrder = 7
|
|
end
|
|
object AddInverse: TButton
|
|
Left = 229
|
|
Height = 25
|
|
Top = 34
|
|
Width = 97
|
|
HelpType = htKeyword
|
|
Anchors = [akTop, akRight]
|
|
BorderSpacing.InnerBorder = 4
|
|
Caption = 'Add Inverse'
|
|
OnClick = AddInverseCLICK
|
|
TabOrder = 4
|
|
end
|
|
end
|