Menu

[r4761]: / branches / parsnip / Src / Main / CS.UI.Helper.CollectionCtrlKVMgr.pas  Maximize  Restore  History

Download this file

514 lines (449 with data), 13.6 kB

  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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
{
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/
*
* Copyright (C) 2013, Peter Johnson (www.delphidabbler.com).
*
* $Rev$
* $Date$
*
* A set of classes that wrap various collections controls to manage a
* relationship between a collection of values and their descriptions that
* appear in the control.
}
unit CS.UI.Helper.CollectionCtrlKVMgr;
interface
uses
// Delphi
Generics.Defaults,
Generics.Collections,
StdCtrls,
// Delphi Collections Library
Collections.Base,
Collections.Lists,
// Project
UExceptions;
type
TCollectionCtrlAdapter = class abstract (TObject)
public
function SelectedItemIndex: Integer; virtual; abstract;
function Count: Integer; virtual; abstract;
procedure SelectItem(const Idx: Integer); virtual; abstract;
procedure DeleteItem(const Idx: Integer); virtual; abstract;
procedure InsertItem(const Idx: Integer; const Value: string); virtual;
abstract;
procedure Clear; virtual; abstract;
procedure BeginUpdate; virtual; abstract;
procedure EndUpdate; virtual; abstract;
end;
TListBoxAdapter = class(TCollectionCtrlAdapter)
strict private
fListBox: TCustomListBox;
public
constructor Create(const AListBox: TCustomListBox);
function Count: Integer; override;
function SelectedItemIndex: Integer; override;
procedure SelectItem(const Idx: Integer); override;
procedure DeleteItem(const Idx: Integer); override;
procedure InsertItem(const Idx: Integer; const Value: string); override;
procedure Clear; override;
procedure BeginUpdate; override;
procedure EndUpdate; override;
end;
TComboBoxAdapter = class(TCollectionCtrlAdapter)
strict private
fComboBox: TCustomComboBox;
public
constructor Create(const AComboBox: TCustomComboBox);
function SelectedItemIndex: Integer; override;
function Count: Integer; override;
procedure SelectItem(const Idx: Integer); override;
procedure DeleteItem(const Idx: Integer); override;
procedure InsertItem(const Idx: Integer; const Value: string); override;
procedure Clear; override;
procedure BeginUpdate; override;
procedure EndUpdate; override;
end;
TAbstractCollectionCtrlKVMgr<TKey> = class abstract (TObject)
strict private
var
fKeyEqualFn: TEqualityComparison<TKey>;
fCollectionCtrl: TCollectionCtrlAdapter;
fOwnsCollectionCtrl: Boolean;
strict protected
function GetList: IList<TPair<TKey,string>>; virtual; abstract;
function GetIndexedList: IEnexIndexedCollection<TPair<TKey,string>>;
virtual; abstract;
public
constructor Create(const ACollectionCtrl: TCollectionCtrlAdapter;
const AOwnsCollectionCtrl: Boolean;
const AKeyEqualFn: TEqualityComparison<TKey>);
destructor Destroy; override;
function GetSelected: TKey;
function TryGetSelected(out AKey: TKey): Boolean;
function GetSelectedDef(const Default: TKey): TKey;
function HasSelection: Boolean;
function ContainsKey(const AKey: TKey): Boolean;
function Count: Integer;
function Empty: Boolean;
function IndexOfKey(const AKey: TKey): Integer;
function GetKeyAt(const Idx: Integer): TKey;
function GetFirstKey: TKey;
function GetLastKey: TKey;
procedure Select(const AKey: TKey);
procedure ClearSelection;
procedure Delete(const AKey: TKey);
procedure Add(const AKey: TKey; const AStr: string);
procedure Clear;
end;
TSortedCollectionCtrlKVMgr<TKey> = class(TAbstractCollectionCtrlKVMgr<TKey>)
public
type
TSortType = (stRespectCase, stIgnoreCase);
strict private
var
fKVList: TSortedList<TPair<TKey,string>>;
fListIntf: IList<TPair<TKey,string>>;
fIndexedListIntf: IEnexIndexedCollection<TPair<TKey,string>>;
fSortType: TSortType;
strict protected
function GetList: IList<TPair<TKey,string>>; override;
function GetIndexedList: IEnexIndexedCollection<TPair<TKey,string>>;
override;
public
constructor Create(const ACollectionCtrl: TCollectionCtrlAdapter;
const AOwnsCollectionCtrl: Boolean;
const AKeyEqualFn: TEqualityComparison<TKey>; const ASortType: TSortType);
destructor Destroy; override;
end;
TUnsortedCollectionCtrlKVMgr<TKey> = class(TAbstractCollectionCtrlKVMgr<TKey>)
strict private
var
fKVList: TList<TPair<TKey,string>>;
fListIntf: IList<TPair<TKey,string>>;
fIndexedListIntf: IEnexIndexedCollection<TPair<TKey,string>>;
strict protected
function GetList: IList<TPair<TKey,string>>; override;
function GetIndexedList: IEnexIndexedCollection<TPair<TKey,string>>;
override;
public
constructor Create(const ACollectionCtrl: TCollectionCtrlAdapter;
const AOwnsCollectionCtrl: Boolean;
const AKeyEqualFn: TEqualityComparison<TKey>);
destructor Destroy; override;
end;
ECollectionCtrlKVMgrError = class(EBug);
implementation
uses
SysUtils,
Classes,
CS.Utils.Hashes,
UComparers,
UStrUtils;
{ TListBoxAdapter }
procedure TListBoxAdapter.BeginUpdate;
begin
fListBox.Items.BeginUpdate;
end;
procedure TListBoxAdapter.Clear;
begin
fListBox.Clear;
end;
function TListBoxAdapter.Count: Integer;
begin
Result := fListBox.Count;
end;
constructor TListBoxAdapter.Create(const AListBox: TCustomListBox);
begin
Assert(Assigned(AListBox), ClassName + '.Create: AListBox is nil');
inherited Create;
fListBox := AListBox;
end;
procedure TListBoxAdapter.DeleteItem(const Idx: Integer);
begin
fListBox.Items.Delete(Idx);
end;
procedure TListBoxAdapter.EndUpdate;
begin
fListBox.Items.EndUpdate;
end;
procedure TListBoxAdapter.InsertItem(const Idx: Integer; const Value: string);
begin
fListBox.Items.Insert(Idx, Value);
end;
function TListBoxAdapter.SelectedItemIndex: Integer;
begin
Result := fListBox.ItemIndex;
end;
procedure TListBoxAdapter.SelectItem(const Idx: Integer);
begin
fListBox.ItemIndex := Idx;
end;
{ TComboBoxAdapter }
procedure TComboBoxAdapter.BeginUpdate;
begin
fComboBox.Items.BeginUpdate;
end;
procedure TComboBoxAdapter.Clear;
begin
fComboBox.Clear;
end;
function TComboBoxAdapter.Count: Integer;
begin
Result := fComboBox.Items.Count;
end;
constructor TComboBoxAdapter.Create(const AComboBox: TCustomComboBox);
begin
Assert(Assigned(AComboBox), ClassName + '.Create: AComboBox is nil');
inherited Create;
fComboBox := AComboBox;
end;
procedure TComboBoxAdapter.DeleteItem(const Idx: Integer);
begin
fComboBox.Items.Delete(Idx);
end;
procedure TComboBoxAdapter.EndUpdate;
begin
fComboBox.Items.EndUpdate;
end;
procedure TComboBoxAdapter.InsertItem(const Idx: Integer; const Value: string);
begin
fComboBox.Items.Insert(Idx, Value);
end;
function TComboBoxAdapter.SelectedItemIndex: Integer;
begin
Result := fComboBox.ItemIndex;
end;
procedure TComboBoxAdapter.SelectItem(const Idx: Integer);
begin
fComboBox.ItemIndex := Idx;
end;
{ TAbstractCollectionCtrlKVMgr<TKey> }
procedure TAbstractCollectionCtrlKVMgr<TKey>.Add(const AKey: TKey;
const AStr: string);
var
KVPair: TPair<TKey,string>;
InsIdx: Integer;
SelIdx: Integer;
begin
KVPair := TPair<TKey,string>.Create(AKey, AStr);
GetList.Add(KVPair);
InsIdx := GetList.IndexOf(KVPair);
SelIdx := fCollectionCtrl.SelectedItemIndex;
fCollectionCtrl.BeginUpdate;
try
fCollectionCtrl.InsertItem(InsIdx, AStr);
if InsIdx <= SelIdx then
Inc(SelIdx);
fCollectionCtrl.SelectItem(SelIdx);
finally
fCollectionCtrl.EndUpdate;
end;
end;
procedure TAbstractCollectionCtrlKVMgr<TKey>.Clear;
begin
GetList.Clear;
fCollectionCtrl.BeginUpdate;
try
fCollectionCtrl.Clear;
fCollectionCtrl.SelectItem(-1);
finally
fCollectionCtrl.EndUpdate;
end;
end;
procedure TAbstractCollectionCtrlKVMgr<TKey>.ClearSelection;
begin
fCollectionCtrl.SelectItem(-1);
end;
function TAbstractCollectionCtrlKVMgr<TKey>.ContainsKey(const AKey: TKey):
Boolean;
begin
Result := IndexOfKey(AKey) >= 0;
end;
function TAbstractCollectionCtrlKVMgr<TKey>.Count: Integer;
begin
Result := GetList.Count;
end;
constructor TAbstractCollectionCtrlKVMgr<TKey>.Create(
const ACollectionCtrl: TCollectionCtrlAdapter;
const AOwnsCollectionCtrl: Boolean;
const AKeyEqualFn: TEqualityComparison<TKey>);
begin
inherited Create;
fCollectionCtrl := ACollectionCtrl;
fOwnsCollectionCtrl := AOwnsCollectionCtrl;
fKeyEqualFn := AKeyEqualFn;
end;
procedure TAbstractCollectionCtrlKVMgr<TKey>.Delete(const AKey: TKey);
var
DelIdx: Integer;
SelIdx: Integer;
begin
DelIdx := IndexOfKey(AKey);
if DelIdx = -1 then
Exit;
SelIdx := fCollectionCtrl.SelectedItemIndex;
fCollectionCtrl.BeginUpdate;
try
fCollectionCtrl.DeleteItem(DelIdx);
if (SelIdx > DelIdx) or (SelIdx >= fCollectionCtrl.Count) then
Dec(SelIdx);
fCollectionCtrl.SelectItem(SelIdx);
finally
fCollectionCtrl.EndUpdate;
end;
GetList.RemoveAt(DelIdx);
end;
destructor TAbstractCollectionCtrlKVMgr<TKey>.Destroy;
begin
fCollectionCtrl.Clear;
if fOwnsCollectionCtrl then
fCollectionCtrl.Free;
inherited;
end;
function TAbstractCollectionCtrlKVMgr<TKey>.Empty: Boolean;
begin
Result := GetList.Empty;
end;
function TAbstractCollectionCtrlKVMgr<TKey>.GetFirstKey: TKey;
begin
Result := GetIndexedList.First.Key;
end;
function TAbstractCollectionCtrlKVMgr<TKey>.GetKeyAt(const Idx: Integer): TKey;
begin
Result := GetIndexedList[Idx].Key;
end;
function TAbstractCollectionCtrlKVMgr<TKey>.GetLastKey: TKey;
begin
Result := GetIndexedList.Last.Key;
end;
function TAbstractCollectionCtrlKVMgr<TKey>.GetSelected: TKey;
begin
if not TryGetSelected(Result) then
raise ECollectionCtrlKVMgrError.Create('No item is selected');
end;
function TAbstractCollectionCtrlKVMgr<TKey>.GetSelectedDef(
const Default: TKey): TKey;
begin
if not TryGetSelected(Result) then
Result := Default;
end;
function TAbstractCollectionCtrlKVMgr<TKey>.HasSelection: Boolean;
begin
Result := fCollectionCtrl.SelectedItemIndex >= 0;
end;
function TAbstractCollectionCtrlKVMgr<TKey>.IndexOfKey(const AKey: TKey):
Integer;
var
Idx: Integer;
begin
for Idx := 0 to Pred(GetList.Count) do
if fKeyEqualFn(GetKeyAt(Idx), AKey) then
Exit(Idx);
Result := -1;
end;
procedure TAbstractCollectionCtrlKVMgr<TKey>.Select(const AKey: TKey);
var
Idx: Integer;
begin
Idx := IndexOfKey(AKey);
fCollectionCtrl.SelectItem(Idx);
end;
function TAbstractCollectionCtrlKVMgr<TKey>.TryGetSelected(out AKey: TKey):
Boolean;
var
Idx: Integer;
begin
Idx := fCollectionCtrl.SelectedItemIndex;
if Idx = -1 then
Exit(False);
AKey := GetKeyAt(Idx);
Result := True;
end;
{ TSortedCollectionCtrlKVMgr<TKey> }
constructor TSortedCollectionCtrlKVMgr<TKey>.Create(
const ACollectionCtrl: TCollectionCtrlAdapter;
const AOwnsCollectionCtrl: Boolean;
const AKeyEqualFn: TEqualityComparison<TKey>; const ASortType: TSortType);
var
Rules: TRules<TPair<TKey,string>>;
begin
inherited Create(ACollectionCtrl, AOwnsCollectionCtrl, AKeyEqualFn);
fSortType := ASortType;
case ASortType of
stRespectCase:
begin
Rules := TRulesFactory<TPair<TKey,string>>.Construct(
function (const Left, Right: TPair<TKey,string>): Integer
begin
Result := StrCompareStr(Left.Value, Right.Value);
end,
function (const Value: TPair<TKey,string>): Integer
begin
Result := StrHash(Value.Value);
end
)
end;
stIgnoreCase:
begin
Rules := TRulesFactory<TPair<TKey,string>>.Construct(
function (const Left, Right: TPair<TKey,string>): Integer
begin
Result := StrCompareText(Left.Value, Right.Value);
end,
function (const Value: TPair<TKey,string>): Integer
begin
Result := TextHash(Value.Value);
end
)
end;
end;
fKVList := TSortedList<TPair<TKey,string>>.Create(Rules);
// following assignment to interface type mean that fKVList will be freed
// automatically when reference count hits zero: don't free explicitly
fListIntf := fKVList;
fIndexedListIntf := fKVList;
end;
function TSortedCollectionCtrlKVMgr<TKey>.GetIndexedList:
IEnexIndexedCollection<TPair<TKey,string>>;
begin
Result := fIndexedListIntf;
end;
function TSortedCollectionCtrlKVMgr<TKey>.GetList: IList<TPair<TKey,string>>;
begin
Result := fListIntf;
end;
destructor TSortedCollectionCtrlKVMgr<TKey>.Destroy;
begin
inherited;
end;
{ TUnsortedCollectionCtrlKVMgr<TKey> }
constructor TUnsortedCollectionCtrlKVMgr<TKey>.Create(
const ACollectionCtrl: TCollectionCtrlAdapter;
const AOwnsCollectionCtrl: Boolean;
const AKeyEqualFn: TEqualityComparison<TKey>);
begin
inherited Create(ACollectionCtrl, AOwnsCollectionCtrl, AKeyEqualFn);
fKVList := TList<TPair<TKey,string>>.Create(
TRules<TPair<TKey,string>>.Default
);
// following assignment to interface type mean that fKVList will be freed
// automatically when reference count hits zero: don't free explicitly
fListIntf := fKVLIst;
fIndexedListIntf := fKVList;
end;
destructor TUnsortedCollectionCtrlKVMgr<TKey>.Destroy;
begin
inherited;
end;
function TUnsortedCollectionCtrlKVMgr<TKey>.GetIndexedList:
IEnexIndexedCollection<TPair<TKey, string>>;
begin
Result := fIndexedListIntf;
end;
function TUnsortedCollectionCtrlKVMgr<TKey>.GetList: IList<TPair<TKey, string>>;
begin
Result := fListIntf;
end;
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.