Files
lazarus-ccr/applications/lazstats/source_orig/linprounit.lfm

309 lines
5.6 KiB
Plaintext
Raw Normal View History

object LinProFrm: TLinProFrm
Left = 106
Height = 483
Top = 92
Width = 740
Caption = 'Linear Programming Using Min/Max Algorithm'
ClientHeight = 483
ClientWidth = 740
OnShow = FormShow
LCLVersion = '0.9.26.2'
object Label1: TLabel
Left = 8
Height = 14
Top = 3
Width = 26
Caption = 'FILE:'
ParentColor = False
end
object Label2: TLabel
Left = 144
Height = 14
Top = 24
Width = 47
Caption = 'Objective'
ParentColor = False
end
object Label3: TLabel
Left = 72
Height = 14
Top = 61
Width = 56
Caption = 'Constraints'
ParentColor = False
end
object Label4: TLabel
Left = 7
Height = 14
Top = 30
Width = 64
Caption = 'No. Variables'
ParentColor = False
end
object Label5: TLabel
Left = 7
Height = 14
Top = 64
Width = 58
Caption = 'No.Max.(<)'
ParentColor = False
end
object Label6: TLabel
Left = 6
Height = 14
Top = 79
Width = 54
Caption = 'constraints'
ParentColor = False
end
object Label7: TLabel
Left = 7
Height = 14
Top = 183
Width = 57
Caption = 'No. Min.(>)'
ParentColor = False
end
object Label8: TLabel
Left = 5
Height = 14
Top = 201
Width = 54
Caption = 'constraints'
ParentColor = False
end
object Label9: TLabel
Left = 5
Height = 14
Top = 293
Width = 66
Caption = 'No. Equal (=)'
ParentColor = False
end
object Label10: TLabel
Left = 4
Height = 14
Top = 310
Width = 54
Caption = 'constraints'
ParentColor = False
end
object Label11: TLabel
Left = 120
Height = 14
Top = 409
Width = 80
Caption = 'General Results:'
ParentColor = False
end
object FileNameEdit: TEdit
Left = 37
Height = 15
Top = 1
Width = 675
TabOrder = 0
Text = 'FileNameEdit'
end
object ObjectiveGrid: TStringGrid
Left = 143
Height = 30
Top = 42
Width = 570
ColCount = 1
RowCount = 1
TabOrder = 1
end
object MaxGrid: TStringGrid
Left = 143
Height = 98
Top = 80
Width = 571
ColCount = 1
RowCount = 1
TabOrder = 2
end
object MinGrid: TStringGrid
Left = 143
Height = 100
Top = 186
Width = 570
ColCount = 1
RowCount = 1
TabOrder = 3
end
object EqualGrid: TStringGrid
Left = 143
Height = 99
Top = 295
Width = 569
ColCount = 1
RowCount = 1
TabOrder = 4
end
object MaxConstraintsGrid: TStringGrid
Left = 72
Height = 94
Top = 82
Width = 65
ColCount = 1
RowCount = 1
ScrollBars = ssNone
TabOrder = 5
end
object MinConstraintsGrid: TStringGrid
Left = 71
Height = 98
Top = 185
Width = 66
ColCount = 1
RowCount = 1
ScrollBars = ssNone
TabOrder = 6
end
object EqualConstraintsGrid: TStringGrid
Left = 72
Height = 98
Top = 294
Width = 64
ColCount = 1
RowCount = 1
ScrollBars = ssNone
TabOrder = 7
end
object NoVarsEdit: TEdit
Left = 71
Height = 22
Top = 21
Width = 62
OnExit = NoVarsEditExit
OnKeyPress = NoVarsEditKeyPress
TabOrder = 8
Text = 'NoVarsEdit'
end
object NoMaxEdit: TEdit
Left = 4
Height = 18
Top = 97
Width = 59
OnExit = NoMaxEditExit
OnKeyPress = NoMaxEditKeyPress
TabOrder = 9
Text = 'NoMaxEdit'
end
object NoMinEdit: TEdit
Left = 5
Height = 19
Top = 216
Width = 59
OnExit = NoMinEditExit
OnKeyPress = NoMinEditKeyPress
TabOrder = 10
Text = 'NoMinEdit'
end
object NoEqualEdit: TEdit
Left = 4
Height = 16
Top = 327
Width = 59
OnExit = NoEqualEditExit
OnKeyPress = NoEqualEditKeyPress
TabOrder = 11
Text = 'NoEqualEdit'
end
object MinMaxGrp: TRadioGroup
Left = 5
Height = 65
Top = 407
Width = 95
AutoFill = True
Caption = 'Min/Max'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 47
ClientWidth = 91
Items.Strings = (
'Maximize'
'Minimize'
)
TabOrder = 12
end
object ResultsEdit: TEdit
Left = 202
Height = 18
Top = 405
Width = 508
TabOrder = 13
Text = 'ResultsEdit'
end
object LoadBtn: TButton
Left = 184
Height = 26
Top = 439
Width = 79
Caption = 'Load File'
OnClick = LoadBtnClick
TabOrder = 14
end
object SaveBtn: TButton
Left = 272
Height = 26
Top = 440
Width = 79
Caption = 'Save File'
OnClick = SaveBtnClick
TabOrder = 15
end
object ResetBtn: TButton
Left = 368
Height = 27
Top = 440
Width = 76
Caption = 'Reset'
OnClick = ResetBtnClick
TabOrder = 16
end
object CancelBtn: TButton
Left = 456
Height = 27
Top = 440
Width = 76
Caption = 'Cancel'
ModalResult = 2
OnClick = CancelBtnClick
TabOrder = 17
end
object ComputeBtn: TButton
Left = 544
Height = 27
Top = 440
Width = 76
Caption = 'Compute'
OnClick = ComputeBtnClick
TabOrder = 18
end
object ExitBtn: TButton
Left = 632
Height = 27
Top = 439
Width = 76
Caption = 'EXIT'
ModalResult = 1
OnClick = ExitBtnClick
TabOrder = 19
end
object OpenDialog1: TOpenDialog
left = 112
top = 436
end
object SaveDialog1: TSaveDialog
left = 144
top = 435
end
end