You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7886 8e941d3f-bd1b-0410-a28a-d453659cc2b4
225 lines
4.1 KiB
Plaintext
225 lines
4.1 KiB
Plaintext
object SelectFrm: TSelectFrm
|
|
Left = 172
|
|
Height = 335
|
|
Top = 112
|
|
Width = 829
|
|
Caption = 'Select Cases'
|
|
ClientHeight = 335
|
|
ClientWidth = 829
|
|
OnShow = FormShow
|
|
LCLVersion = '0.9.30'
|
|
object Label1: TLabel
|
|
Left = 8
|
|
Height = 16
|
|
Top = 9
|
|
Width = 48
|
|
Caption = 'Variables'
|
|
ParentColor = False
|
|
end
|
|
object Label3: TLabel
|
|
Left = 368
|
|
Height = 16
|
|
Top = 6
|
|
Width = 53
|
|
Caption = 'Left Value'
|
|
ParentColor = False
|
|
end
|
|
object Label4: TLabel
|
|
Left = 488
|
|
Height = 16
|
|
Top = 6
|
|
Width = 66
|
|
Caption = 'Comparison'
|
|
ParentColor = False
|
|
end
|
|
object Label5: TLabel
|
|
Left = 599
|
|
Height = 16
|
|
Top = 9
|
|
Width = 61
|
|
Caption = 'Right Value'
|
|
ParentColor = False
|
|
end
|
|
object Label6: TLabel
|
|
Left = 712
|
|
Height = 16
|
|
Top = 8
|
|
Width = 54
|
|
Caption = 'Join Logic'
|
|
ParentColor = False
|
|
end
|
|
object VarList: TListBox
|
|
Left = 8
|
|
Height = 291
|
|
Top = 26
|
|
Width = 160
|
|
ItemHeight = 0
|
|
TabOrder = 0
|
|
end
|
|
object GroupBox1: TGroupBox
|
|
Left = 177
|
|
Height = 233
|
|
Top = 23
|
|
Width = 178
|
|
Caption = 'Select:'
|
|
ClientHeight = 215
|
|
ClientWidth = 174
|
|
TabOrder = 1
|
|
object Label2: TLabel
|
|
Left = 14
|
|
Height = 16
|
|
Top = 161
|
|
Width = 117
|
|
Caption = 'Click one from the list'
|
|
ParentColor = False
|
|
end
|
|
object AllCasesBtn: TRadioButton
|
|
Left = 8
|
|
Height = 19
|
|
Top = 10
|
|
Width = 67
|
|
Caption = 'All Cases'
|
|
OnClick = AllCasesBtnClick
|
|
TabOrder = 0
|
|
end
|
|
object IfCondBtn: TRadioButton
|
|
Left = 8
|
|
Height = 19
|
|
Top = 40
|
|
Width = 138
|
|
Caption = 'If condition is satisfied'
|
|
OnClick = IfCondBtnClick
|
|
TabOrder = 1
|
|
end
|
|
object RandomBtn: TRadioButton
|
|
Left = 8
|
|
Height = 19
|
|
Top = 73
|
|
Width = 118
|
|
Caption = 'A Random Sample'
|
|
OnClick = RandomBtnClick
|
|
TabOrder = 2
|
|
end
|
|
object RangeBtn: TRadioButton
|
|
Left = 9
|
|
Height = 19
|
|
Top = 104
|
|
Width = 111
|
|
Caption = 'A Range of Cases'
|
|
OnClick = RangeBtnClick
|
|
TabOrder = 3
|
|
end
|
|
object FilterBtn: TRadioButton
|
|
Left = 9
|
|
Height = 19
|
|
Top = 136
|
|
Width = 133
|
|
Caption = 'Use the Filter Variable'
|
|
OnClick = FilterBtnClick
|
|
TabOrder = 4
|
|
end
|
|
object FiltVarEdit: TEdit
|
|
Left = 14
|
|
Height = 23
|
|
Top = 185
|
|
Width = 123
|
|
TabOrder = 5
|
|
Text = 'FiltVarEdit'
|
|
end
|
|
end
|
|
object GroupBox2: TGroupBox
|
|
Left = 177
|
|
Height = 58
|
|
Top = 264
|
|
Width = 175
|
|
Caption = 'Unselected Cases Are:'
|
|
ClientHeight = 40
|
|
ClientWidth = 171
|
|
TabOrder = 2
|
|
object FilterOutBtn: TRadioButton
|
|
Left = 8
|
|
Height = 19
|
|
Top = 2
|
|
Width = 82
|
|
Caption = 'Filtered Out'
|
|
TabOrder = 0
|
|
end
|
|
object DeleteBtn: TRadioButton
|
|
Left = 8
|
|
Height = 19
|
|
Top = 20
|
|
Width = 130
|
|
Caption = 'Deleted from the File'
|
|
TabOrder = 1
|
|
end
|
|
end
|
|
object ExpListBox: TListBox
|
|
Left = 368
|
|
Height = 229
|
|
Top = 24
|
|
Width = 110
|
|
ItemHeight = 0
|
|
TabOrder = 3
|
|
end
|
|
object JoinList: TListBox
|
|
Left = 488
|
|
Height = 227
|
|
Top = 25
|
|
Width = 102
|
|
ItemHeight = 0
|
|
TabOrder = 4
|
|
end
|
|
object NotList: TListBox
|
|
Left = 598
|
|
Height = 226
|
|
Top = 26
|
|
Width = 106
|
|
ItemHeight = 0
|
|
TabOrder = 5
|
|
end
|
|
object OpsList: TListBox
|
|
Left = 712
|
|
Height = 229
|
|
Top = 24
|
|
Width = 98
|
|
ItemHeight = 0
|
|
TabOrder = 6
|
|
end
|
|
object ResetBtn: TButton
|
|
Left = 369
|
|
Height = 29
|
|
Top = 280
|
|
Width = 78
|
|
Caption = 'Reset'
|
|
OnClick = ResetBtnClick
|
|
TabOrder = 7
|
|
end
|
|
object CancelBtn: TButton
|
|
Left = 496
|
|
Height = 29
|
|
Top = 282
|
|
Width = 78
|
|
Caption = 'Cancel'
|
|
ModalResult = 2
|
|
TabOrder = 8
|
|
end
|
|
object ComputeBtn: TButton
|
|
Left = 616
|
|
Height = 29
|
|
Top = 280
|
|
Width = 78
|
|
Caption = 'Compute'
|
|
OnClick = ComputeBtnClick
|
|
TabOrder = 9
|
|
end
|
|
object ReturnBtn: TButton
|
|
Left = 732
|
|
Height = 29
|
|
Top = 282
|
|
Width = 78
|
|
Caption = 'Return'
|
|
ModalResult = 1
|
|
TabOrder = 10
|
|
end
|
|
end
|