mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 11:55:02 -05:00
95 lines
1.8 KiB
Plaintext
95 lines
1.8 KiB
Plaintext
object WrapFilesForm: TWrapFilesForm
|
|
Left = 429
|
|
Height = 398
|
|
Top = 234
|
|
Width = 652
|
|
Caption = 'WrapFilesForm'
|
|
ClientHeight = 398
|
|
ClientWidth = 652
|
|
Constraints.MinHeight = 398
|
|
Constraints.MinWidth = 652
|
|
OnCreate = FormCreate
|
|
LCLVersion = '0.9.29'
|
|
object FileButton: TButton
|
|
Left = 16
|
|
Height = 25
|
|
Top = 16
|
|
Width = 75
|
|
Caption = 'Select files'
|
|
OnClick = FileButtonClick
|
|
TabOrder = 0
|
|
end
|
|
object FileBox: TListBox
|
|
Left = 16
|
|
Height = 220
|
|
Top = 56
|
|
Width = 616
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
ItemHeight = 0
|
|
TabOrder = 1
|
|
end
|
|
object SaveDirEdit: TDirectoryEdit
|
|
Left = 192
|
|
Height = 21
|
|
Top = 20
|
|
Width = 152
|
|
ShowHidden = False
|
|
ButtonWidth = 23
|
|
NumGlyphs = 0
|
|
MaxLength = 0
|
|
TabOrder = 2
|
|
end
|
|
object SaveDirLabel: TLabel
|
|
Left = 104
|
|
Height = 14
|
|
Top = 20
|
|
Width = 78
|
|
Caption = 'Save directory: '
|
|
ParentColor = False
|
|
end
|
|
object wrpBtn: TButton
|
|
Left = 568
|
|
Height = 25
|
|
Top = 16
|
|
Width = 75
|
|
Caption = 'Convert'
|
|
OnClick = wrpBtnClick
|
|
TabOrder = 3
|
|
end
|
|
object dbgMemo: TMemo
|
|
Left = 16
|
|
Height = 100
|
|
Top = 287
|
|
Width = 616
|
|
Anchors = [akRight, akBottom]
|
|
TabOrder = 4
|
|
end
|
|
object FileNameEdit1: TFileNameEdit
|
|
Left = 448
|
|
Height = 21
|
|
Top = 20
|
|
Width = 80
|
|
DialogOptions = []
|
|
FilterIndex = 0
|
|
HideDirectories = False
|
|
ButtonWidth = 23
|
|
NumGlyphs = 0
|
|
MaxLength = 0
|
|
TabOrder = 5
|
|
end
|
|
object Label1: TLabel
|
|
Left = 383
|
|
Height = 14
|
|
Top = 25
|
|
Width = 57
|
|
Caption = 'MethodFile:'
|
|
ParentColor = False
|
|
end
|
|
object FileDialog: TOpenDialog
|
|
Filter = 'Include files (*.inc)|*.inc|All files (*.*)|*.*'
|
|
Options = [ofAllowMultiSelect, ofFileMustExist, ofEnableSizing, ofViewDetail]
|
|
left = 32
|
|
top = 56
|
|
end
|
|
end
|