mirror of
https://github.com/moparisthebest/Simba
synced 2024-12-23 15:58:51 -05:00
Support to open multiple files at once.
This commit is contained in:
parent
7f874b710b
commit
9d902708d5
@ -2866,6 +2866,7 @@ end;
|
||||
|
||||
function TSimbaForm.OpenScript: boolean;
|
||||
var
|
||||
i: Integer;
|
||||
OpenInNewTab : boolean;
|
||||
begin
|
||||
Result := False;
|
||||
@ -2875,11 +2876,19 @@ begin
|
||||
Exit;
|
||||
with TOpenDialog.Create(nil) do
|
||||
try
|
||||
Filter:= 'Simba Files|*.Simba;*.simb;*.cogat;*.mufa;*.txt;*.' +LoadSettingDef('Settings/Extensions/FileExtension','sex')+
|
||||
Options := [ofAllowMultiSelect, ofExtensionDifferent, ofPathMustExist, ofFileMustExist, ofEnableSizing, ofViewDetail];
|
||||
Filter:= 'Simba Files|*.simba;*.simb;*.cogat;*.mufa;*.txt;*.' +LoadSettingDef('Settings/Extensions/FileExtension','sex')+
|
||||
'|Any files|*.*';
|
||||
if Execute then
|
||||
if FileExistsUTF8(filename) then
|
||||
result := LoadScriptFile(filename);
|
||||
begin
|
||||
Result := True;
|
||||
for i := 0 to Files.Count - 1 do
|
||||
if (not FileExistsUTF8(Files[i])) or (not LoadScriptFile(Files[i])) then
|
||||
begin
|
||||
Result := False;
|
||||
Break;
|
||||
end;
|
||||
end;
|
||||
finally
|
||||
Free;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user