-
Notifications
You must be signed in to change notification settings - Fork 2
/
unitframekeymappings.pas
405 lines (351 loc) · 10.8 KB
/
unitframekeymappings.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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
unit UnitFrameKeyMappings;
// Copyright 2022-2024 Zoran Vučenović
// SPDX-License-Identifier: Apache-2.0
{$mode ObjFPC}{$H+}
{$i zxinc.inc}
interface
uses
Classes, SysUtils, UnitFrameOneKeyMap, UnitKeyMapRecords, UnitFormPressAKey,
CommonFunctionsLCL, UnitFormForOptionsBasic, UnitOptions, UnitCommon, Forms,
Controls, Graphics, Dialogs, ExtCtrls, StdCtrls, LazUTF8;
type
TFrameKeyMappings = class(TFrame)
Bevel1: TBevel;
Bevel2: TBevel;
Bevel3: TBevel;
ComboBox1: TComboBox;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Panel1: TPanel;
Panel2: TPanel;
Panel3: TPanel;
Panel4: TPanel;
Panel5: TPanel;
Panel6: TPanel;
Panel7: TPanel;
Panel8: TPanel;
PanelAddRemoveScheme: TPanel;
private
type
TKeyMapsObj = class(TObject)
public
KM: TKeyMapRecs;
end;
private
KeyMappingsCtrl: TControlKeyMappings;
LastComboItemIndex: Integer;
procedure FillKeyMappingsNames;
procedure FillCurrentMap;
procedure SetMappingsToDefault;
procedure ComboMappingNamesChg(Sender: TObject);
procedure SaveToKeyMappings;
procedure UpdateCurrentComboItem();
procedure AfterShow(Data: PtrInt);
procedure FormFirstShow(Sender: TObject);
function AddOneMappingToCombo(AMappingName: String; KMRecs: TKeyMapRecs): Integer;
procedure ClearCombo;
procedure AddPCKeyOnClick(Sender: TObject);
procedure SaveSchemeOnClick(Sender: TObject);
procedure RemoveSchemeOnClick(Sender: TObject);
procedure ResetToDefaultOnClick(Sender: TObject);
procedure Close(Sender: TObject; var {%H-}CloseAction: TCloseAction);
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
class function ShowFormKeyMappings(): Boolean;
class function CreateFrameKeyMappingsForAllOptions(AOptionsDialog: TFormOptions): TFrameKeyMappings;
end;
implementation
{$R *.lfm}
{ TFrameKeyMappings }
procedure TFrameKeyMappings.FillKeyMappingsNames;
var
I, N: Integer;
S: RawByteString;
KM: TKeyMapRecs;
begin
ClearCombo;
N := -1;
if TKeyMappings.KMappings.Count > 0 then begin
for I := 0 to TKeyMappings.KMappings.Count - 1 do begin
S := TKeyMappings.KMappings.Keys[I];
if S <> '' then begin
KM := TKeyMappings.KMappings.Data[I];
AddOneMappingToCombo(S, KM);
if N < 0 then
if TKeyMappings.KMappings.ActiveKeyMapName = S then
N := ComboBox1.Items.Count - 1;
end;
end;
end;
ComboBox1.ItemIndex := N;
end;
procedure TFrameKeyMappings.FillCurrentMap;
begin
if ComboBox1.ItemIndex >= 0 then begin
LastComboItemIndex := ComboBox1.ItemIndex;
KeyMappingsCtrl.LoadFromKeyMapRecs(TKeyMapsObj(ComboBox1.Items.Objects[LastComboItemIndex]).KM);
end else
SetMappingsToDefault;
end;
procedure TFrameKeyMappings.SetMappingsToDefault;
begin
LastComboItemIndex := -1;
KeyMappingsCtrl.LoadFromKeyMapRecs(TKeyMappings.KMappings.DefaultMapRecs);
end;
procedure TFrameKeyMappings.ComboMappingNamesChg(Sender: TObject);
begin
UpdateCurrentComboItem();
FillCurrentMap;
end;
procedure TFrameKeyMappings.SaveToKeyMappings;
var
I: Integer;
KMObj: TKeyMapsObj;
S: RawByteString;
Obj: TObject;
begin
TKeyMappings.KMappings.ActiveKeyMapName := '';
UpdateCurrentComboItem();
TKeyMappings.KMappings.Clear;
for I := 0 to ComboBox1.Items.Count - 1 do begin
//
Obj := ComboBox1.Items.Objects[I];
if Obj is TKeyMapsObj then begin
KMObj := TKeyMapsObj(Obj);
S := ComboBox1.Items.Strings[I];
TKeyMappings.KMappings.Add(S, KMObj.KM);
if I = ComboBox1.ItemIndex then
TKeyMappings.KMappings.ActiveKeyMapName := S;
end;
end;
end;
procedure TFrameKeyMappings.UpdateCurrentComboItem;
var
KMRecs: TKeyMapRecs;
KMObj: TKeyMapsObj;
Obj: TObject;
begin
if (LastComboItemIndex >= 0) and (LastComboItemIndex < ComboBox1.Items.Count) then begin
KeyMappingsCtrl.SaveToKeyMapRecs(KMRecs);
Obj := ComboBox1.Items.Objects[LastComboItemIndex];
if Obj is TKeyMapsObj then begin
KMObj := TKeyMapsObj(Obj);
SetLength(KMObj.KM, 0);
KMObj.KM := KMRecs;
end;
end;
end;
procedure TFrameKeyMappings.AfterShow(Data: PtrInt);
begin
PanelAddRemoveScheme.BorderSpacing.Left :=
Panel2.ScreenToClient(ComboBox1.ClientOrigin).X;
if Data > 0 then
Application.QueueAsyncCall(@AfterShow, Data - 1);
end;
procedure TFrameKeyMappings.FormFirstShow(Sender: TObject);
begin
AfterShow(2);
end;
function TFrameKeyMappings.AddOneMappingToCombo(AMappingName: String;
KMRecs: TKeyMapRecs): Integer;
var
J: Integer;
KMObj: TKeyMapsObj;
begin
Result := -1;
AMappingName := UTF8Trim(AMappingName);
if AMappingName <> '' then begin
KMObj := TKeyMapsObj.Create;
SetLength(KMObj.KM, Length(KMRecs));
for J := 0 to High(KMRecs) do
KMObj.KM[J] := KMRecs[J];
Result := ComboBox1.Items.AddObject(AMappingName, KMObj);
end;
end;
procedure TFrameKeyMappings.ClearCombo;
var
I: Integer;
begin
for I := 0 to ComboBox1.Items.Count - 1 do begin
ComboBox1.Items.Objects[I].Free;
ComboBox1.Items.Objects[I] := nil;
end;
ComboBox1.Clear;
end;
procedure TFrameKeyMappings.AddPCKeyOnClick(Sender: TObject);
var
W: Word;
begin
if TFormPressAKey.ShowFormPressAKey(W) then begin
KeyMappingsCtrl.AddPCKey(W);
end;
end;
procedure TFrameKeyMappings.SaveSchemeOnClick(Sender: TObject);
var
S: String;
N: Integer;
KMObj: TKeyMapsObj;
KMRecs: TKeyMapRecs;
begin
if ComboBox1.ItemIndex >= 0 then
S := ComboBox1.Items.Strings[ComboBox1.ItemIndex]
else
S := '';
if InputQuery('Save current scheme', 'Scheme name:', S) then begin
S := UTF8Trim(S);
if S <> '' then begin
N := ComboBox1.Items.IndexOf(S);
if (N < 0) or
(MessageDlg(
Format('Scheme named "%s" already exists.%sDo you want to overwrite this scheme?'
, [S, LineEnding])
, mtConfirmation, [mbYes, mbNo], 0) = mrYes)
then begin
KeyMappingsCtrl.SaveToKeyMapRecs(KMRecs);
if N < 0 then
N := AddOneMappingToCombo(S, KMRecs)
else begin
KMObj := TKeyMapsObj.Create;
KMObj.KM := KMRecs;
ComboBox1.Items.Objects[N].Free;
ComboBox1.Items.Objects[N] := KMObj;
end;
LastComboItemIndex := N;
ComboBox1.ItemIndex := N;
end;
end;
end;
end;
procedure TFrameKeyMappings.RemoveSchemeOnClick(Sender: TObject);
var
N: Integer;
begin
N := ComboBox1.ItemIndex;
if N >= 0 then begin
ComboBox1.ItemIndex := -1;
ComboBox1.Items.Objects[N].Free;
ComboBox1.Items.Objects[N] := nil;
ComboBox1.Items.Delete(N);
SetMappingsToDefault;
end;
end;
procedure TFrameKeyMappings.ResetToDefaultOnClick(Sender: TObject);
begin
ComboBox1.ItemIndex := -1;
SetMappingsToDefault;
end;
procedure TFrameKeyMappings.Close(Sender: TObject; var CloseAction: TCloseAction
);
begin
Application.RemoveAsyncCalls(Self);
if (Sender is TCustomForm) and (TCustomForm(Sender).ModalResult = mrOK) then
SaveToKeyMappings;
end;
constructor TFrameKeyMappings.Create(TheOwner: TComponent);
var
LabelAddPCKey: TCustomLabel;
LabelAddScheme: TCustomLabel;
LabelRemoveScheme: TCustomLabel;
LabelResetToDefault: TCustomLabel;
begin
inherited Create(TheOwner);
Name := TCommonFunctions.GlobalObjectNameGenerator(Self);
Caption := 'Key mapping schemes';
LastComboItemIndex := -1;
Label5.Caption := 'Note: ';
Label5.Font.Style := Label5.Font.Style + [fsBold];
Label5.Font.Color := clMaroon;
Label4.Caption :=
'When Joystick is enabled, then key mappings to joystick take precedence over mappings to spectrum keys defined here.';
Label4.Font.Color := clMaroon;
PanelAddRemoveScheme.BevelOuter := bvNone;
Panel1.BevelOuter := bvNone;
Panel1.AutoSize := True;
KeyMappingsCtrl := TControlKeyMappings.Create(Panel7);
KeyMappingsCtrl.Anchors := [];
KeyMappingsCtrl.AnchorParallel(akTop, 0, Panel7);
KeyMappingsCtrl.AnchorParallel(akLeft, 0, Panel7);
KeyMappingsCtrl.AnchorParallel(akBottom, 0, Panel7);
KeyMappingsCtrl.AnchorParallel(akRight, 0, Panel7);
KeyMappingsCtrl.Parent := Panel7;
LabelAddPCKey := TCommonFunctionsLCL.CreateLinkLabel(Panel6, 'Add key mapping...');
LabelAddPCKey.Anchors := [];
LabelAddPCKey.AnchorParallel(akLeft, 0, Panel6);
LabelAddPCKey.AnchorParallel(akTop, 0, Panel6);
LabelAddPCKey.Hint := 'Add (or find existing) key mapping';
LabelAddScheme := TCommonFunctionsLCL.CreateLinkLabel(PanelAddRemoveScheme, 'Save as...');
LabelAddScheme.Anchors := [];
LabelAddScheme.AnchorParallel(akLeft, 0, PanelAddRemoveScheme);
LabelAddScheme.AnchorParallel(akTop, 0, PanelAddRemoveScheme);
LabelRemoveScheme := TCommonFunctionsLCL.CreateLinkLabel(PanelAddRemoveScheme, 'Remove');
LabelRemoveScheme.Anchors := [];
LabelRemoveScheme.AnchorToNeighbour(akLeft, 6, LabelAddScheme);
LabelRemoveScheme.AnchorParallel(akTop, 0, PanelAddRemoveScheme);
LabelResetToDefault := TCommonFunctionsLCL.CreateLinkLabel(PanelAddRemoveScheme, 'Reset to default');
LabelResetToDefault.Anchors := [];
LabelResetToDefault.AnchorToNeighbour(akLeft, 6, LabelRemoveScheme);
LabelResetToDefault.AnchorParallel(akTop, 0, PanelAddRemoveScheme);
LabelAddPCKey.Parent := Panel6;
LabelAddScheme.Parent := PanelAddRemoveScheme;
LabelRemoveScheme.Parent := PanelAddRemoveScheme;
LabelResetToDefault.Parent := PanelAddRemoveScheme;
PanelAddRemoveScheme.AutoSize := True;
Panel6.AutoSize := True;
LabelAddPCKey.OnClick := @AddPCKeyOnClick;
LabelAddScheme.OnClick := @SaveSchemeOnClick;
LabelRemoveScheme.OnClick := @RemoveSchemeOnClick;
LabelResetToDefault.OnClick := @ResetToDefaultOnClick;
FillKeyMappingsNames;
FillCurrentMap;
ComboBox1.OnChange := @ComboMappingNamesChg;
end;
destructor TFrameKeyMappings.Destroy;
begin
ClearCombo;
inherited Destroy;
end;
class function TFrameKeyMappings.ShowFormKeyMappings: Boolean;
var
F: TCustomForm;
Fm: TFrameKeyMappings;
begin
Result := False;
Fm := TFrameKeyMappings.Create(nil);
try
F := UnitFormForOptionsBasic.TFormForOptionsBasic.CreateForControl(nil, Fm, False);
try
F.AddHandlerFirstShow(@Fm.FormFirstShow);
F.AddHandlerClose(@Fm.Close);
Result := F.ShowModal = mrOK;
F.RemoveAllHandlersOfObject(Fm);
finally
F.Free;
end;
finally
Fm.Free;
end;
end;
class function TFrameKeyMappings.CreateFrameKeyMappingsForAllOptions(
AOptionsDialog: TFormOptions): TFrameKeyMappings;
var
Fm: TFrameKeyMappings;
begin
Result := nil;
if Assigned(AOptionsDialog) then begin
Fm := TFrameKeyMappings.Create(AOptionsDialog);
try
AOptionsDialog.AddHandlerFirstShow(@Fm.FormFirstShow);
AOptionsDialog.AddHandlerClose(@Fm.Close);
AOptionsDialog.AddAnOptionControl(Fm, 'Key mappings');
Fm.AnchorParallel(akBottom, 0, Fm.Parent);
Result := Fm;
except
FreeAndNil(Fm);
end;
end;
end;
end.