forked from TES5Edit/TES5Edit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViewElementsFrm.pas
310 lines (268 loc) · 8.69 KB
/
ViewElementsFrm.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
{*******************************************************************************
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
License for the specific language governing rights and limitations
under the License.
*******************************************************************************}
unit ViewElementsFrm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, wbInterface, ComCtrls, ExtCtrls, StdCtrls, Buttons, Menus, IniFiles;
type
TfrmViewElements = class(TForm)
Panel1: TPanel;
pcView: TPageControl;
Panel2: TPanel;
PopupMenu1: TPopupMenu;
mniCompareConf: TMenuItem;
pnlButtons: TPanel;
btnCompare: TButton;
btnOK: TButton;
btnCancel: TButton;
dlgCompareTool: TOpenDialog;
LiteCompareButton: TButton;
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure FormCreate(Sender: TObject);
procedure btnCompareClick(Sender: TObject);
procedure mniCompareConfClick(Sender: TObject);
procedure btnCancelClick(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure FormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
private
Edits: TList;
procedure MemoChange(Sender: TObject);
procedure MemoKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
public
Settings: TMemIniFile;
CompareCmdLine: string;
procedure AddElement(const aElement: IwbElement; aFocused, aEditable: Boolean);
function ShowModal: Integer; override;
{ Public declarations }
end;
TwbTabSheet = class(TTabSheet)
private
// Element: IwbElement;
end;
TwbEdit = class
eElement: IwbElement;
eMemo: TMemo;
end;
implementation
{$R *.dfm}
uses
wbHelpers, ShellApi;
{ TfrmViewElements }
procedure TfrmViewElements.AddElement(const aElement: IwbElement;
aFocused, aEditable: Boolean);
var
TabSheet : TwbTabSheet;
Edit : TwbEdit;
Memo : TMemo;
begin
if not Assigned(aElement) then
Exit;
if not Assigned(Edits) then
Edits := TList.Create;
TabSheet := TwbTabSheet.Create(Self);
TabSheet.PageControl := pcView;
TabSheet.Caption := aElement._File.Name;
// TabSheet.Element := aElement;
Memo := TMemo.Create(TabSheet);
Memo.Parent := TabSheet;
LoadFont(Settings, 'UI', 'FontViewer', Memo.Font);
if aEditable then begin
Memo.Lines.Text := aElement.EditValue;
btnOK.Visible := True;
//btnCancel.Kind := bkAbort;
Edit := TwbEdit.Create;
Edit.eElement := aElement;
Edit.eMemo := Memo;
Edits.Add(Edit);
end else
Memo.Lines.Text := aElement.Value;
Memo.Align := alClient;
Memo.ReadOnly := not aEditable;
if not aEditable then
Memo.ParentColor := True;
// Memo.BorderStyle := bsNone;
Memo.ScrollBars := ssBoth;
Memo.Modified := False;
Memo.OnChange := MemoChange;
Memo.OnKeyDown := MemoKeyDown;
if aFocused then
pcView.ActivePage := TabSheet;
end;
procedure TfrmViewElements.btnCancelClick(Sender: TObject);
begin
Close;
end;
procedure TfrmViewElements.btnCompareClick(Sender: TObject);
var
TabSheet1, TabSheet2 : TTabSheet;
idx: integer;
Path, aFile1, aFile2, aExe, aParams: string;
StartUpInfo: TStartUpInfo;
ProcessInfo: TProcessInformation;
sl: TStringList;
begin
if pcView.PageCount < 2 then
Exit;
idx := pcView.TabIndex;
if idx = 0 then
Inc(idx);
Path := ExtractFilePath(Application.ExeName);
aExe := Trim(Copy(CompareCmdLine, 1, Pred(Pos('%', CompareCmdLine))));
aParams := Copy(CompareCmdLine, Succ(Length(aExe)), Length(CompareCmdLine));
try
TabSheet2 := pcView.Pages[idx];
aFile2 := Path + TabSheet2.Caption + '.txt';
TMemo(TabSheet2.Controls[0]).Lines.SaveToFile(aFile2);
aParams := StringReplace(aParams, '%2', '"'+aFile2+'"', []);
TabSheet1 := pcView.Pages[Pred(idx)];
aFile1 := Path + TabSheet1.Caption + '.txt';
TMemo(TabSheet1.Controls[0]).Lines.SaveToFile(aFile1);
aParams := StringReplace(aParams, '%1', '"'+aFile1+'"', []);
FillChar(StartUpInfo, SizeOf(TStartUpInfo), 0);
with StartUpInfo do begin
cb := SizeOf(TStartUpInfo);
dwFlags := STARTF_USESHOWWINDOW or STARTF_FORCEONFEEDBACK;
wShowWindow := SW_SHOWNORMAL;
end;
aParams := '"'+aExe+'"'+aParams;
if CreateProcess(PChar(aExe), PChar(aParams),
nil, nil, false, NORMAL_PRIORITY_CLASS,
nil, nil, StartUpInfo, ProcessInfo)
then begin
WaitforSingleObject(ProcessInfo.hProcess, INFINITE);
//GetExitCodeProcess(ProcessInfo.hProcess, ExitCode);
CloseHandle(ProcessInfo.hThread);
CloseHandle(ProcessInfo.hProcess);
sl := TStringList.Create;
try
sl.LoadfromFile(aFile1);
with TMemo(TabSheet1.Controls[0]) do
if (sl.Text<>Lines.Text) and not ReadOnly then begin
TMemo(TabSheet1.Controls[0]).Lines.Text := sl.Text;
TMemo(TabSheet1.Controls[0]).Modified := True;
with TabSheet1 do
if (Length(Caption)>0) and (Caption[Length(Caption)]<>'*') then Caption := Caption + '*';
end;
sl.LoadfromFile(aFile2);
with TMemo(TabSheet2.Controls[0]) do
if (sl.Text<>Lines.Text) and not ReadOnly then begin
TMemo(TabSheet2.Controls[0]).Lines.Text := sl.Text;
TMemo(TabSheet2.Controls[0]).Modified := True;
with TabSheet2 do
if (Length(Caption)>0) and (Caption[Length(Caption)]<>'*') then Caption := Caption + '*';
end;
finally
FreeAndNil(sl);
end;
DeleteFile(aFile1);
DeleteFile(aFile2);
end else
raise Exception.Create(SysErrorMessage(GetLastError));
except
on E: Exception do
MessageBox(0, PChar('Could not execute command line'#13 + aExe + ' ' + aParams + #13'Error: ' + E.Message), 'Error', 0);
end;
end;
procedure TfrmViewElements.mniCompareConfClick(Sender: TObject);
var
s: string;
begin
if not dlgCompareTool.Execute then
Exit;
s := dlgCompareTool.FileName + ' %1 %2';
if InputQuery('Comparison program', 'Command line (%1 and %2 are temp text files)', s) then begin
CompareCmdLine := s;
Settings.WriteString('External', 'CompareCommandLine', CompareCmdLine);
Settings.UpdateFile;
end;
end;
procedure TfrmViewElements.FormClose(Sender: TObject; var Action: TCloseAction);
begin
Action := caFree;
end;
procedure TfrmViewElements.FormCreate(Sender: TObject);
begin
//Font := Screen.IconFont;
end;
procedure TfrmViewElements.FormDestroy(Sender: TObject);
var
i: Integer;
begin
if Assigned(Edits) then begin
for i := 0 to Pred(Edits.Count) do
TwbEdit(Edits[i]).Free;
Edits.Free;
end;
end;
procedure TfrmViewElements.FormKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if Key = VK_ESCAPE then
btnCancel.Click;
end;
procedure TfrmViewElements.FormShow(Sender: TObject);
begin
if Assigned(Settings) then
CompareCmdLine := Settings.ReadString('External', 'CompareCommandLine', 'bcompare.exe %1 %2');
{$IFDEF LiteVersion}
LiteCompareButton.Visible := True;
btnCompare.Visible := False;
{$ENDIF}
end;
procedure TfrmViewElements.MemoChange(Sender: TObject);
//var
// s: string;
begin
if Sender is TMemo then
with TMemo(Sender) do begin
if Modified then begin
(Owner as TwbTabSheet).Highlighted := True;
{ s := (Owner as TwbTabSheet).Caption;
if (Length(s) < 2) or (s[1] <> '<') or (s[Length(s)] <> '>') then begin
s := '<' + s + '>';
(Owner as TwbTabSheet).Caption := s;
end;}
end;
end;
end;
procedure TfrmViewElements.MemoKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if (Key = Ord('A')) and (ssCtrl in Shift) then
TMemo(Sender).SelectAll;
end;
function TfrmViewElements.ShowModal: Integer;
var
i: Integer;
begin
if pcView.PageCount > 0 then begin
if pcView.ActivePage = nil then
pcView.ActivePage := pcView.Pages[0];
Result := inherited ShowModal;
end else
Result := mrAbort;
try
if Result = mrOk then
for i := 0 to Pred(Edits.Count) do
with TwbEdit(Edits[i]) do
if eMemo.Modified then try
eElement.EditValue := eMemo.Text;
except
on E: Exception do
ShowMessage(Format('Assignment error: %s'#13#10'File: %s'#13#10'Element: %s',
[E.Message, eElement._File.FileName, eElement.Name]));
end;
finally
end;
end;
end.