summaryrefslogtreecommitdiff
path: root/extras/tiopf/demos/Demo_21_AdrsBook_MGM/model.pas
blob: bf8e289a2c548c5105a257327caeca7640082ad6 (plain)
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
{
  The business object model
}
unit model;

{$IFDEF FPC}
  {$mode objfpc}{$H+}
{$ENDIF}

interface

uses
  Classes, SysUtils, tiObject;
  
type

  TMarkObject = class(TtiObject)
  protected
    procedure Mark;
  end;
  
  
  TMarkObjectList = class(TtiObjectList)
  protected
    procedure Mark;
  end;


  TCountry = class(TMarkObject)
  private
    FISO: string;
    FName: string;
    procedure SetISO(const AValue: string);
    procedure SetName(const AValue: string);
  protected
    function GetCaption: string; override;
  public
    constructor CreateNew(const AISO: string; const AName: string); overload; reintroduce;
  published
    property ISO: string read FISO write SetISO;
    property Name: string read FName write SetName;
  end;
  
  
  TCountryList = class(TMarkObjectList)
  protected
    function GetItems(i: integer): TCountry; reintroduce;
    procedure SetItems(i: integer; const AValue: TCountry); reintroduce;
  public
    function Add(const AObject: TCountry): integer; reintroduce;
    property Items[i: integer]: TCountry read GetItems write SetItems; default;
  end;

  
  TCity = class(TMarkObject)
  private
    FZIP: string;
    FName: string;
    FCountry: TCountry;
    function GetCountryAsString: string;
    procedure SetCountry(const AValue: TCountry);
    procedure SetName(const AValue: string);
    procedure SetZIP(const AValue: string);
  protected
    function GetCaption: string; override;
  public
    procedure AssignClassProps(ASource: TtiObject); override;
  published
    property Country: TCountry read FCountry write SetCountry;
    property Name: string read FName write SetName;
    property ZIP: string read FZIP write SetZIP;
    property CountryAsString: string read GetCountryAsString;
  end;
  
  
  TCityList = class(TMarkObjectList)
  protected
    function GetItems(i: integer): TCity; reintroduce;
    procedure SetItems(i: integer; const AValue: TCity); reintroduce;
  public
    function Add(const AObject: TCity): integer; reintroduce;
    property Items[i: integer]: TCity read GetItems write SetItems; default;
  end;
  
  
  TAddressType = class(TMarkObject)
  private
    FName: string;
    procedure SetName(const AValue: string);
  protected
    function GetCaption: string; override;
  published
    property Name: string read FName write SetName;
  end;


  TAddressTypeList = class(TMarkObjectList)
  protected
    function GetItems(i: integer): TAddressType; reintroduce;
    procedure SetItems(i: integer; const AValue: TAddressType); reintroduce;
  public
    function Add(const AObject: TAddressType): integer; reintroduce;
    property Items[i: integer]: TAddressType read GetItems write SetItems; default;
  end;


  TAddress = class(TMarkObject)
  private
    FAddressType: TAddressType;
    FCity: TCity;
    FFax: string;
    FNr: integer;
    FStreet: string;
    FTelephone1: string;
    FTelephone2: string;
    function GetAddressType4GUI: string;
    procedure SetAddressType(const AValue: TAddressType);
    procedure SetCity(const AValue: TCity);
    procedure SetFax(const AValue: string);
    procedure SetNr(const AValue: integer);
    procedure SetStreet(const AValue: string);
    procedure SetTelephone1(const AValue: string);
    procedure SetTelephone2(const AValue: string);
  public
    constructor Create; override;
    destructor Destroy; override;
    procedure AssignClassProps(ASource: TtiObject); override;
  published
    property Street: string read FStreet write SetStreet;
    property Nr: integer read FNr write SetNr;
    property Telephone1: string read FTelephone1 write SetTelephone1;
    property Telephone2: string read FTelephone2 write SetTelephone2;
    property Fax: string read FFax write SetFax;
    property AddressType: TAddressType read FAddressType write SetAddressType;
    property AddressType4GUI: string read GetAddressType4GUI;
    property City: TCity read FCity write SetCity;
  end;
  
  
  TAddressList = class(TMarkObjectList)
  protected
    function GetItems(i: integer): TAddress; reintroduce;
    procedure SetItems(i: integer; const AValue: TAddress); reintroduce;
  public
    function Add(const AObject: TAddress): integer; reintroduce;
    property Items[i: integer]: TAddress read GetItems write SetItems; default;
  end;

  
  TContact = class(TMarkObject)
  private
    FAddressList: TAddressList;
    FComments: string;
    FEmail: string;
    FFirstName: string;
    FLastName: string;
    FMobile: string;
    procedure SetComments(const AValue: string);
    procedure SetEmail(const AValue: string);
    procedure SetFirstName(const AValue: string);
    procedure SetLastName(const AValue: string);
    procedure SetMobile(const AValue: string);
  public
    constructor Create; override;
    destructor Destroy; override;
  published
    property FirstName: string read FFirstName write SetFirstName;
    property LastName: string read FLastName write SetLastName;
    property EMail: string read FEmail write SetEmail;
    property Mobile: string read FMobile write SetMobile;
    property Comments: string read FComments write SetComments;
    property AddressList: TAddressList read FAddressList;
  end;
  
  
  TContactList = class(TMarkObjectList)
  protected
    function GetItems(i: integer): TContact; reintroduce;
    procedure SetItems(i: integer; const AValue: TContact); reintroduce;
  public
    function Add(const AObject: TContact): integer; reintroduce;
    property Items[i: integer]: TContact read GetItems write SetItems; default;
  end;
  
  

implementation


{ TMarkObject }

procedure TMarkObject.Mark;
begin
  if (ObjectState <> posEmpty) then
    Dirty:= True;
end;

{ TMarkObjectList }

procedure TMarkObjectList.Mark;
begin
  if (ObjectState <> posEmpty) then
    Dirty:= True;
end;

{ TCountry }

procedure TCountry.SetISO(const AValue: string);
begin
  if FISO = AValue then
    Exit; //==>
    
  BeginUpdate;
  FISO:= AValue;
  Mark;
  EndUpdate;
end;

procedure TCountry.SetName(const AValue: string);
begin
  if FName = AValue then
    Exit; //==>

  BeginUpdate;
  FName:= AValue;
  Mark;
  EndUpdate;
end;

function TCountry.GetCaption: string;
begin
  Result:= Name;
end;

constructor TCountry.CreateNew(const AISO: string; const AName: string);
begin
  inherited CreateNew;
  FISO:= AISO;
  FName:= AName;
end;

{ TCity }

procedure TCity.SetCountry(const AValue: TCountry);
begin
  if FCountry = AValue then
    Exit; //==>

  BeginUpdate;
  FCountry:= AValue;
  Mark;
  EndUpdate;
end;

function TCity.GetCountryAsString: string;
begin
  result:= Country.Name + ' (' + Country.ISO + ')';
end;

procedure TCity.SetName(const AValue: string);
begin
  if FName = AValue then
    Exit; //==>

  BeginUpdate;
  FName:= AValue;
  Mark;
  EndUpdate;
end;

procedure TCity.SetZIP(const AValue: string);
begin
  if FZip = AValue then
    Exit; //==>

  BeginUpdate;
  FZip:= AValue;
  Mark;
  EndUpdate;
end;

function TCity.GetCaption: string;
begin
  Result := Name;
end;

procedure TCity.AssignClassProps(ASource: TtiObject);
begin
  FCountry:= TCity(ASource).Country; // reference only
end;

{ TAddressType }

procedure TAddressType.SetName(const AValue: string);
begin
  if FName = AValue then
    Exit; //==>
    
  BeginUpdate;
  FName:= AValue;
  Mark;
  EndUpdate;
end;

function TAddressType.GetCaption: string;
begin
  Result := Name;
end;

{ TAddress }

procedure TAddress.SetStreet(const AValue: string);
begin
  if FStreet=AValue then exit;
  
  BeginUpdate;
  FStreet:=AValue;
  Mark;
  EndUpdate;
end;

procedure TAddress.SetTelephone1(const AValue: string);
begin
  if FTelephone1=AValue then exit;
  
  BeginUpdate;
  FTelephone1:=AValue;
  Mark;
  EndUpdate;
end;

procedure TAddress.SetTelephone2(const AValue: string);
begin
  if FTelephone2=AValue then exit;
  
  BeginUpdate;
  FTelephone2:=AValue;
  Mark;
  EndUpdate;
end;

constructor TAddress.Create;
begin
  inherited Create;
  FAddressType:= TAddressType.Create;
  FAddressType.Owner:= self;
end;

destructor TAddress.Destroy;
begin
  FreeAndNil(FAddressType);
  inherited Destroy;
end;

procedure TAddress.AssignClassProps(ASource: TtiObject);
begin
  FAddressType := TAddress(ASource).AddressType;  // reference only
  FCity:= TAddress(ASource).City;  // reference only
end;

procedure TAddress.SetNr(const AValue: integer);
begin
  if FNr=AValue then exit;
  
  BeginUpdate;
  FNr:=AValue;
  Mark;
  EndUpdate;
end;

procedure TAddress.SetAddressType(const AValue: TAddressType);
begin
  if FAddressType = AValue then
    Exit; //==>
  
  BeginUpdate;
  FAddressType := AValue;
  Mark;
  EndUpdate;
end;

function TAddress.GetAddressType4GUI: string;
begin
  Result := FAddressType.Name;
end;

procedure TAddress.SetCity(const AValue: TCity);
begin
  if FCity=AValue then exit;
  
  BeginUpdate;
  FCity:=AValue;
  Mark;
  EndUpdate;
end;

procedure TAddress.SetFax(const AValue: string);
begin
  if FFax=AValue then exit;
  
  BeginUpdate;
  FFax:=AValue;
  Mark;
  EndUpdate;
end;

{ TContact }

procedure TContact.SetFirstName(const AValue: string);
begin
  if FFirstName=AValue then exit;
  
  BeginUpdate;
  FFirstName:=AValue;
  Mark;
  EndUpdate;
end;

procedure TContact.SetEmail(const AValue: string);
begin
  if FEmail=AValue then exit;
  
  BeginUpdate;
  FEmail:=AValue;
  Mark;
  EndUpdate;
end;

procedure TContact.SetComments(const AValue: string);
begin
  if FComments=AValue then exit;
  
  BeginUpdate;
  FComments:=AValue;
  Mark;
  EndUpdate;
end;

procedure TContact.SetLastName(const AValue: string);
begin
  if FLastName=AValue then exit;
  
  BeginUpdate;
  FLastName:=AValue;
  Mark;
  EndUpdate;
end;

procedure TContact.SetMobile(const AValue: string);
begin
  if FMobile=AValue then exit;
  
  BeginUpdate;
  FMobile:=AValue;
  Mark;
  EndUpdate;
end;

constructor TContact.Create;
begin
  inherited Create;
  FAddressList:= TAddressList.Create;
  FAddressList.Owner:= self;
  // ToDo: Refactor to remove need for ItemOwner. Use Parent instead
  FAddressList.ItemOwner:= self;
end;

destructor TContact.Destroy;
begin
  FAddressList.Free;
  inherited Destroy;
end;

{ TCountryList }

function TCountryList.GetItems(i: integer): TCountry;
begin
  Result:= TCountry(inherited GetItems(i));
end;

procedure TCountryList.SetItems(i: integer; const AValue: TCountry);
begin
  inherited SetItems(i, AValue);
end;

function TCountryList.Add(const AObject: TCountry): integer;
begin
  Result:= inherited Add(AObject);
end;

{ TCityList }

function TCityList.GetItems(i: integer): TCity;
begin
  result:= TCity(inherited GetItems(i));
end;

procedure TCityList.SetItems(i: integer; const AValue: TCity);
begin
  inherited SetItems(i, AValue);
end;

function TCityList.Add(const AObject: TCity): integer;
begin
  result:= inherited Add(AObject);
end;

{ TAddressList }

function TAddressList.GetItems(i: integer): TAddress;
begin
  result:= TAddress(inherited GetItems(i));
end;

procedure TAddressList.SetItems(i: integer; const AValue: TAddress);
begin
  inherited SetItems(i, AValue);
end;

function TAddressList.Add(const AObject: TAddress): integer;
begin
  result:= inherited Add(AObject);
end;

{ TContactList }

function TContactList.GetItems(i: integer): TContact;
begin
  result:= TContact(inherited GetItems(i));
end;

procedure TContactList.SetItems(i: integer; const AValue: TContact);
begin
  inherited SetItems(i, AValue);
end;

function TContactList.Add(const AObject: TContact): integer;
begin
  result:= inherited Add(AObject);
end;


{ TAddressTypeList }

function TAddressTypeList.GetItems(i: integer): TAddressType;
begin
  result := TAddressType(inherited GetItems(i));
end;

procedure TAddressTypeList.SetItems(i: integer; const AValue: TAddressType);
begin
  inherited SetItems(i, AValue);
end;

function TAddressTypeList.Add(const AObject: TAddressType): integer;
begin
  result := inherited Add(AObject);
end;

end.