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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
|
{
Abstract mediating views for GUI list controls. This allows you to use
standard list components and make them object-aware. See the demo
application for usage.
}
unit tiListMediators;
{$mode objfpc}{$H+}
interface
uses
Classes,
SysUtils,
tiBaseMediator,
fpg_listview,
fpg_grid,
tiObject;
type
{ Composite mediator for TfpgListView }
TListViewMediator = class(TCustomListMediator)
private
FObserversInTransit: TList;
FView: TfpgListView;
procedure SetView(const AValue: TfpgListView);
protected
function GetSelectedObject: TtiObject; override;
procedure SetSelectedObject(const AValue: TtiObject); override;
procedure CreateColumns; override;
procedure DoCreateItemMediator(AData: TtiObject; ARowIdx: integer); override;
procedure DoDeleteItemMediator(AIndex: Integer; AMediator: TListItemMediator); override;
function GetGuiControl: TComponent; override;
procedure SetGuiControl(const AValue: TComponent); override;
procedure SetupGUIandObject; override;
procedure ClearList; override;
procedure RebuildList; override;
public
constructor CreateCustom(AModel: TtiObjectList; AView: TfpgListView; ADisplayNames: string; AIsObserving: Boolean = True); overload;
constructor CreateCustom(AModel: TtiObjectList; AView: TfpgListView; AOnBeforeSetupField: TOnBeforeSetupField; ADisplayNames: string; AIsObserving: Boolean = True); overload;
class function ComponentClass: TClass; override;
constructor Create; override;
destructor Destroy; override;
procedure HandleSelectionChanged; override;
function GetObjectFromItem(AItem: TfpgLVItem): TtiObject;
published
property View: TfpgListView read FView write SetView;
end;
// for backwards compatibility
TCompositeListViewMediator = TListViewMediator;
{ Composite mediator for TfpgStringGrid }
TStringGridMediator = class(TCustomListMediator)
private
FView: TfpgStringGrid;
procedure DoCreateItemMediator(AData: TtiObject; ARowIdx: integer); override;
procedure DoDeleteItemMediator(AIndex: Integer; AMediator: TListItemMediator); override;
procedure SetView(const AValue: TfpgStringGrid);
protected
function GetSelectedObject: TtiObject; override;
procedure SetSelectedObject(const AValue: TtiObject); override;
procedure CreateColumns; override;
function GetGuiControl: TComponent; override;
procedure SetGuiControl(const AValue: TComponent); override;
procedure SetupGUIandObject; override;
procedure ClearList; override;
procedure RebuildList; override;
public
constructor CreateCustom(AModel: TtiObjectList; AGrid: TfpgStringGrid; ADisplayNames: string; AIsObserving: Boolean = True); reintroduce; overload;
destructor Destroy; override;
class function ComponentClass: TClass; override;
function GetObjectFromRow(ARow: Integer): TtiObject;
published
property View: TfpgStringGrid read FView write SetView;
end;
// for backwards compatibility
TCompositeStringGridMediator = TStringGridMediator;
{ Used internally for sub-mediators in ListView mediator. Moved to interface
section so it can be overridden. }
TListViewListItemMediator = class(TListItemMediator)
private
FView: TfpgLVItem;
procedure SetupFields; virtual;
public
constructor CreateCustom(AModel: TtiObject; AView: TfpgLVItem; const AFieldsInfo: TtiMediatorFieldInfoList; IsObserving: Boolean = True); reintroduce; overload;
constructor CreateCustom(AModel: TtiObject; AView: TfpgLVItem; AOnBeforeSetupField: TOnBeforeSetupField; const AFieldsInfo: TtiMediatorFieldInfoList; IsObserving: Boolean = True); reintroduce; overload;
procedure BeforeDestruction; override;
procedure Update(ASubject: TtiObject); override;
published
property View: TfpgLVItem read FView;
end;
{ Used internally for sub-mediators in StringGrid mediator. Moved to interface
section so it can be overridden. }
TStringGridRowMediator = class(TListItemMediator)
private
FView: TfpgStringGrid;
FRowIndex: integer;
public
constructor CreateCustom(AModel: TtiObject; AGrid: TfpgStringGrid; const AFieldsInfo: TtiMediatorFieldInfoList; ARowIndex: integer; IsObserving: Boolean = True);
procedure Update(ASubject: TtiObject); override;
published
property View: TfpgStringGrid read FView;
property RowIndex: integer read FRowIndex;
end;
implementation
{ TListViewMediator }
procedure TListViewMediator.SetView(const AValue: TfpgListView);
begin
FView := AValue;
SetGUIControl(AValue);
end;
function TListViewMediator.GetGuiControl: TComponent;
begin
Result := FView;
end;
procedure TListViewMediator.SetGuiControl(const AValue: TComponent);
begin
FView := AValue as TfpgListView;
inherited SetGuiControl(AValue);
end;
procedure TListViewMediator.SetSelectedObject(const AValue: TtiObject);
var
i: integer;
begin
for i := 0 to FView.Items.Count - 1 do
if TtiObject(FView.Items.Item[i].UserData) = AValue then
begin
FView.ItemIndex := i;
HandleSelectionChanged; {$Note Is this line required?}
Exit; //==>
end;
end;
function TListViewMediator.GetSelectedObject: TtiObject;
begin
Result := GetObjectFromItem(FView.Items.Item[FView.ItemIndex]);
end;
procedure TListViewMediator.DoCreateItemMediator(AData: TtiObject; ARowIdx: integer);
var
li: TfpgLVItem;
m: TListViewListItemMediator;
begin
DataAndPropertyValid(AData);
{ Create ListItem and Mediator }
FView.BeginUpdate;
try
li := TfpgLVItem.Create(FView.Items);
FView.Items.Add(li);
m := TListViewListItemMediator.CreateCustom(AData, li, OnBeforeSetupField, FieldsInfo, Active);
li.UserData := m;
MediatorList.Add(m);
finally
FView.EndUpdate;
end;
end;
procedure TListViewMediator.DoDeleteItemMediator(AIndex: Integer; AMediator: TListItemMediator);
begin
FView.Items.Delete(FView.Items.IndexOf(TListViewListItemMediator(AMediator).FView));
inherited DoDeleteItemMediator(AIndex, AMediator);
end;
procedure TListViewMediator.CreateColumns;
var
c: integer;
lc: TfpgLVColumn;
lInfo: TtiMediatorFieldInfo;
begin
if (View.Columns.Count<>FieldsInfo.Count) then
View.Columns.Clear;
if View.Columns.Count = 0 then
begin
for c := 0 to FieldsInfo.Count-1 do
begin
lInfo := FieldsInfo[c];
lc := TfpgLVColumn.Create(View.Columns);
lc.AutoSize := False;
lc.Caption := lInfo.Caption;
lc.Width := lInfo.FieldWidth;
// lc.CaptionAlignment:= lInfo.Alignment;
lc.Alignment := lInfo.Alignment;
lc.Resizable := True;
View.Columns.Add(lc);
end;
end;
end;
procedure TListViewMediator.SetupGUIandObject;
begin
{ Setup TfpgListView defaults }
FView.Columns.Clear;
FView.Items.Clear;
// FView.ViewStyle := vsReport;
FView.ShowHeaders := True;
// FView.RowSelect := True;
// FView.AutoSize := False;
// FView.ScrollBars := ssAutoBoth;
end;
procedure TListViewMediator.ClearList;
begin
View.Items.Clear;
end;
procedure TListViewMediator.RebuildList;
begin
View.BeginUpdate;
try
CreateColumns;
CreateSubMediators;
finally
View.EndUpdate;
end;
end;
constructor TListViewMediator.CreateCustom(AModel: TtiObjectList; AView: TfpgListView; AOnBeforeSetupField: TOnBeforeSetupField; ADisplayNames: string; AIsObserving: Boolean);
begin
Create; // don't forget this
OnBeforeSetupField := AOnBeforeSetupField;
DisplayNames := ADisplayNames; // Will call ParseDisplaynames.
Subject := AModel;
GUIControl := AView; // Will call SetupGUIandObject;
CreateSubMediators;
Active := AIsObserving; // Will attach/Detach
end;
class function TListViewMediator.ComponentClass: TClass;
begin
Result := TfpgListView;
end;
constructor TListViewMediator.Create;
begin
inherited Create;
FObserversInTransit := TList.Create;
end;
constructor TListViewMediator.CreateCustom(AModel: TtiObjectList; AView: TfpgListView; ADisplayNames: string; AIsObserving: Boolean);
begin
CreateCustom(AModel, AView, nil, ADisplayNames, AIsObserving);
end;
destructor TListViewMediator.Destroy;
begin
IsObserving := False;
FView := nil;
FObserversInTransit.Free;
inherited;
end;
procedure TListViewMediator.HandleSelectionChanged;
var
i: integer;
begin
if View.ItemIndex = -1 then
SelectedObject := nil
else
begin
FObserversInTransit.Clear;
{ If an item is already selected, assign the item's List of observers to a
temporary container. This is done so that the same observers can be
assigned to the new item. }
if Assigned(SelectedObject) then
FObserversInTransit.Assign(SelectedObject.ObserverList);
// Assign Newly selected item to SelectedObject Obj.
SelectedObject := TtiObject(View.Items.Item[View.ItemIndex].UserData);
{ If an object was selected, copy the old item's observer List
to the new item's observer List. }
if FObserversInTransit.Count > 0 then
SelectedObject.ObserverList.Assign(FObserversInTransit);
{ Set the Observers Subject property to the selected object }
for i := 0 to SelectedObject.ObserverList.Count - 1 do
TMediatorView(SelectedObject.ObserverList.Items[i]).Subject :=
SelectedObject;
// execute the NotifyObservers event to update the observers.
SelectedObject.NotifyObservers;
end;
end;
function TListViewMediator.GetObjectFromItem(AItem: TfpgLVItem): TtiObject;
begin
if (AItem = nil) or (AItem.UserData = nil) then
Result := nil
else
Result := TListItemMediator(AItem.UserData).Model;
end;
{ TListViewListItemMediator }
procedure TListViewListItemMediator.SetupFields;
var
c: integer;
lMemberName: string;
lValue: string;
begin
lMemberName := FFieldsInfo[0].PropName;
lValue := Model.PropValue[lMemberName];
if Assigned(OnBeforeSetupField) then
OnBeforeSetupField(Model, lMemberName, lValue);
FView.Caption := lValue;
for c := 1 to FFieldsInfo.Count - 1 do
begin
lMemberName := FFieldsInfo[c].PropName;
lValue := Model.PropValue[lMemberName];
if Assigned(OnBeforeSetupField) then
OnBeforeSetupField(Model, lMemberName, lValue);
FView.SubItems.Add(lValue);
end;
end;
constructor TListViewListItemMediator.CreateCustom(AModel: TtiObject; AView: TfpgLVItem; const AFieldsInfo: TtiMediatorFieldInfoList; IsObserving: Boolean);
begin
CreateCustom(AModel, AView, nil, AFieldsInfo, IsObserving);
end;
constructor TListViewListItemMediator.CreateCustom(AModel: TtiObject; AView: TfpgLVItem; AOnBeforeSetupField: TOnBeforeSetupField; const AFieldsInfo: TtiMediatorFieldInfoList; IsObserving: Boolean);
begin
inherited Create;
Model := AModel;
FView := AView;
FFieldsInfo := AFieldsInfo;
OnBeforeSetupField := AOnBeforeSetupField;
SetupFields;
Active := IsObserving; // Will attach
end;
procedure TListViewListItemMediator.BeforeDestruction;
begin
Model.DetachObserver(self);
Model := nil;
FView := nil;
inherited BeforeDestruction;
end;
procedure TListViewListItemMediator.Update(ASubject: TtiObject);
var
c: integer;
lMemberName: string;
lValue: string;
begin
Assert(Model = ASubject);
lMemberName := FFieldsInfo[0].PropName;
lValue := Model.PropValue[lMemberName];
if Assigned(OnBeforeSetupField) then
OnBeforeSetupField(Model, lMemberName, lValue);
FView.Caption := lValue;
for c := 1 to FFieldsInfo.Count - 1 do
begin
lMemberName := FFieldsInfo[c].PropName;
lValue := Model.PropValue[lMemberName];
if Assigned(OnBeforeSetupField) then
OnBeforeSetupField(Model, lMemberName, lValue);
FView.SubItems[c - 1] := lValue;
end;
end;
{ TStringGridMediator }
function TStringGridMediator.GetSelectedObject: TtiObject;
begin
Result := GetObjectFromRow(FView.FocusRow);
end;
procedure TStringGridMediator.SetSelectedObject(const AValue: TtiObject);
var
i: integer;
o: TObject;
begin
for i := 0 to FView.RowCount - 1 do
begin
o := FView.Objects[0, i];
if Assigned(o) and (TtiObject(o) = AValue) then
begin
FView.FocusRow := i;
Exit; //==>
end;
end; { for }
end;
procedure TStringGridMediator.SetView(const AValue: TfpgStringGrid);
begin
SetGUIControl(AValue);
end;
function TStringGridMediator.GetGuiControl: TComponent;
begin
Result := fView;
end;
procedure TStringGridMediator.SetGuiControl(const AValue: TComponent);
begin
FView := AValue as TfpgStringGrid;
end;
procedure TStringGridMediator.DoCreateItemMediator(AData: TtiObject; ARowIdx: integer);
var
i: integer;
lFieldName: string;
lMediatorView: TStringGridRowMediator;
begin
FView.BeginUpdate;
try
if ARowIdx = FView.RowCount then // In case of add notification
FView.RowCount := FView.RowCount+1;
for i := 0 to FieldsInfo.Count - 1 do
begin
lFieldName := FieldsInfo[i].PropName;
FView.Cells[i, ARowIdx] := AData.PropValue[lFieldName]; // set Cell text
end;
lMediatorView := TStringGridRowMediator.CreateCustom(AData, FView, FieldsInfo, ARowIdx, Active);
FView.Objects[0, ARowIdx] := lMediatorView; // set Object reference inside grid. It used to be AData.
MediatorList.Add(lMediatorView);
finally
FView.EndUpdate;
end;
end;
procedure TStringGridMediator.DoDeleteItemMediator(AIndex: Integer; AMediator: TListItemMediator);
begin
FView.DeleteRow(AIndex);
inherited DoDeleteItemMediator(AIndex, AMediator);
end;
procedure TStringGridMediator.CreateColumns;
var
i: integer;
lColumnTotalWidth: integer;
lGridNonContentWidth: integer;
lLastColumnWidth: integer;
begin
lColumnTotalWidth := 0;
// Grid is 2px border left + right, 1px col gridline separator, 15px vertical scrollbar width
lGridNonContentWidth := 2 + 2 + (FieldsInfo.Count - 1) + 15;
for i := 0 to FieldsInfo.Count - 1 do
begin
FView.ColumnWidth[i] := FieldsInfo[i].FieldWidth;
FView.ColumnTitle[i] := FieldsInfo[i].Caption;
FView.Columns[i].Alignment := FieldsInfo[i].Alignment;
//resize the last column to fill the grid.
if i = FieldsInfo.Count - 1 then
begin
if FView.Width > (lColumnTotalWidth + lGridNonContentWidth) then
begin
lLastColumnWidth := FView.Width - (lColumnTotalWidth + lGridNonContentWidth);
if lLastColumnWidth > 10 then
FView.ColumnWidth[i] := lLastColumnWidth;
end;
end
else
lColumnTotalWidth := lColumnTotalWidth + FView.ColumnWidth[i];
end;
end;
procedure TStringGridMediator.SetupGUIandObject;
begin
//Setup default properties for the StringGrid
FView.RowSelect := True;
FView.ColumnCount := FieldsInfo.Count;
if ShowDeleted then
FView.RowCount := Model.Count
else
FView.RowCount := Model.CountNotDeleted;
end;
procedure TStringGridMediator.ClearList;
begin
MediatorList.Clear;
if Assigned(View) then
View.RowCount := 1; {$Note Double check if this is desired. Shouldn't it be 0 instead. }
end;
procedure TStringGridMediator.RebuildList;
begin
// writeln('--- TStringGridMediator.RebuildList');
{ This rebuilds the whole list. Not very efficient. }
View.BeginUpdate;
try
SetupGUIandObject;
MediatorList.Clear;
// for i := View.ColumnCount-1 downto 0 do
// View.DeleteColumn(i);
CreateSubMediators;
finally
View.EndUpdate;
end;
end;
constructor TStringGridMediator.CreateCustom(AModel: TtiObjectList; AGrid: TfpgStringGrid; ADisplayNames: string; AIsObserving: Boolean);
begin
inherited Create;
DisplayNames := ADisplayNames;
Subject := AModel;
GUIControl := AGrid;
CreateSubMediators;
IsObserving := AIsObserving;
end;
destructor TStringGridMediator.Destroy;
begin
IsObserving := False;
FView := nil;
inherited Destroy;
end;
class function TStringGridMediator.ComponentClass: TClass;
begin
Result := TfpgStringGrid;
end;
function TStringGridMediator.GetObjectFromRow(ARow: Integer): TtiObject;
var
O: TObject;
begin
if FView.RowCount = 0 then
begin
Result := nil;
Exit;
end;
if FView.FocusRow = -1 then
Result := nil
else
begin
O := FView.Objects[0, ARow];
if O <> nil then
Result := TListItemMediator(O).Model
else
Result := nil;
end;
end;
{ TStringGridRowMediator }
constructor TStringGridRowMediator.CreateCustom(AModel: TtiObject; AGrid: TfpgStringGrid; const AFieldsInfo: TtiMediatorFieldInfoList; ARowIndex: integer; IsObserving: Boolean);
begin
inherited Create;
Model := AModel;
FView := AGrid;
FFieldsInfo := AFieldsInfo;
FRowIndex := ARowIndex;
Active := IsObserving; // Will attach
end;
procedure TStringGridRowMediator.Update(ASubject: TtiObject);
var
i: integer;
lvalue, lFieldName: string;
begin
Assert(Model = ASubject);
for i := 0 to FFieldsInfo.Count - 1 do
begin
lFieldName := FFieldsInfo[I].PropName;
lValue := Model.PropValue[lFieldName];
if Assigned(OnBeforeSetupField) then
OnBeforeSetupField(Model, lFieldName, lValue);
FView.Cells[i, FRowIndex] := lValue;
end;
end;
end.
|