-
Notifications
You must be signed in to change notification settings - Fork 0
/
filesettings.pas
135 lines (113 loc) · 4.08 KB
/
filesettings.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{*******************************************************}
{ }
{ Scenarium }
{ Copyright (c) 2024 Kirill Filippenok }
{ Apache License 2.0 }
{ }
{*******************************************************}
unit FileSettings;
{$mode ObjFPC}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, Buttons, Pocket;
type
{ TfFileSettings }
TfFileSettings = class(TForm)
bbtnSave: TBitBtn;
bbtnClose: TBitBtn;
edtOldFilePath: TEdit;
edtNewFilePath: TEdit;
OpenDialog: TOpenDialog;
sbtnOpenFile: TSpeedButton;
procedure bbtnCloseClick(Sender: TObject);
procedure bbtnSaveClick(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure sbtnOpenFileClick(Sender: TObject);
private
Orig_FilePath, Orig_FileName, New_FilePath, New_FileName: String;
public
end;
var
fFileSettings: TfFileSettings;
implementation
uses Main;
{$R *.lfm}
{ TfFileSettings }
procedure TfFileSettings.bbtnCloseClick(Sender: TObject);
begin
Close;
end;
procedure TfFileSettings.bbtnSaveClick(Sender: TObject);
var currScenario: CScenario = NIL;
ItemIndexAudio, ItemIndexVideo: Integer;
begin
try
currScenario := Main.ScenarioList.Items[Main.fMain.TabControl.TabIndex];
case identifyFileType(Orig_FileName) of
ftAudio:
begin
ItemIndexAudio := Main.fMain.clboxAudioPlaylist.ItemIndex;
if ItemIndexAudio = glCurrentAudioItemIndex then
ShowMessage('Изменение отклонено. Выбранный трек для редактироdания сейчас проигрывается.')
else
begin
currScenario.AudioFilePaths.Strings[ItemIndexAudio] := New_FilePath;
currScenario.AudioFileNames.Strings[ItemIndexAudio] := New_FileName;
Main.fMain.clboxAudioPlaylist.Items := currScenario.AudioFileNames;
end;
end;
ftVideo, ftImage:
begin
ItemIndexVideo := Main.fMain.clboxVideoPlaylist.ItemIndex;
if ItemIndexVideo = glCurrentVideoItemIndex then
ShowMessage('Изменение отклонено. Выбранный трек для редактироdания сейчас проигрывается.')
else
begin
currScenario.VideoFilePaths.Strings[ItemIndexVideo] := New_FilePath;
currScenario.VideoFileNames.Strings[ItemIndexVideo] := New_FileName;
Main.fMain.clboxVideoPlaylist.Items := currScenario.VideoFileNames;
end;
end
end;
finally
edtNewFilePath.Text := '';
Close;
end;
end;
procedure TfFileSettings.FormShow(Sender: TObject);
begin
end;
procedure TfFileSettings.sbtnOpenFileClick(Sender: TObject);
begin
Orig_FilePath := edtOldFilePath.Text;
Orig_FileName := ExtractFileName(Orig_FilePath);
if OpenDialog.Execute then
begin
New_FilePath := OpenDialog.FileName;
New_FileName := ExtractFileName(New_FilePath);
case identifyFileType(Orig_FileName) of
ftAudio:
if isAudio(New_FileName) then
begin
edtNewFilePath.Text := New_FilePath;
bbtnSave.Enabled := True;
end
else
begin
ShowMessage('Выбранный файл не является аудиофайлом. Изменение отклонено.');
end;
ftVideo, ftImage:
if isVideo(New_FileName) or isImage(New_FileName) then
begin
edtNewFilePath.Text := New_FilePath;
bbtnSave.Enabled := True;
end
else
begin
ShowMessage('Выбранный файл не является видеофайлом. Изменение отклонено.');
end;
ftUnknown: ShowMessage('Тип оригинального файла неизвестен.');
end;
end;
end;
end.