mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-13 12:55:05 -05:00
73 lines
1.4 KiB
Plaintext
73 lines
1.4 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 = 200
|
||
|
Height = 21
|
||
|
Top = 16
|
||
|
Width = 152
|
||
|
ShowHidden = False
|
||
|
ButtonWidth = 23
|
||
|
NumGlyphs = 0
|
||
|
MaxLength = 0
|
||
|
TabOrder = 2
|
||
|
end
|
||
|
object SaveDirLabel: TLabel
|
||
|
Left = 120
|
||
|
Height = 14
|
||
|
Top = 20
|
||
|
Width = 78
|
||
|
Caption = 'Save directory: '
|
||
|
ParentColor = False
|
||
|
end
|
||
|
object wrpBtn: TButton
|
||
|
Left = 472
|
||
|
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 FileDialog: TOpenDialog
|
||
|
Options = [ofAllowMultiSelect, ofFileMustExist, ofEnableSizing, ofViewDetail]
|
||
|
left = 32
|
||
|
top = 56
|
||
|
end
|
||
|
end
|