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
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
|
{
fpGUI - Free Pascal GUI Library
Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
for details about redistributing fpGUI.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Description:
Defines a File Grid and String Grid. Both are decendants of Custom Grid.
}
unit gui_grid;
{$mode objfpc}{$H+}
{
TODO:
* TCustomStringGrid: Objects property needs to be implemented.
* TCustomStringGrid: Col[] and Row[] properties need to be implemented.
The return TStrings with all text inserted.gui_grid
}
interface
uses
Classes,
SysUtils,
gfxbase,
fpgfx,
gui_basegrid,
gui_customgrid;
type
{
TfpgGrid = class(TfpgCustomGrid)
public
property Font;
property HeaderFont;
published
property Columns;
property DefaultColWidth;
property DefaultRowHeight;
property FontDesc;
property HeaderFontDesc;
property BackgroundColor;
property FocusCol;
property FocusRow;
property RowSelect;
property ColumnCount;
property RowCount;
property ShowHeader;
property ShowGrid;
property HeaderHeight;
property ColResizing;
property ColumnWidth;
property OnFocusChange;
property OnRowChange;
property OnDoubleClick;
end;
}
//***************** Move these to CoreLib ********************
TFileEntryType = (etFile, etDir);
TFileListSortOrder = (soNone, soFileName, soCSFileName, soFileExt, soSize, soTime);
// A simple data object
TFileEntry = class(TObject)
private
FAttributes: longword;
FEntryType: TFileEntryType;
FExtention: string;
FGroupID: integer;
FIsLink: boolean;
FLinkTarget: string;
FMode: longword;
FModTime: TDateTime;
FName: string;
FOwnerID: integer;
FSize: int64;
public
constructor Create;
property Name: string read FName write FName;
property Extention: string read FExtention write FExtention;
property Size: int64 read FSize write FSize;
property EntryType: TFileEntryType read FEntryType write FEntryType;
property IsLink: boolean read FIsLink write FIsLink;
property Attributes: longword read FAttributes write FAttributes;
property Mode: longword read FMode write FMode; // only used by unix OS's
property ModTime: TDateTime read FModTime write FModTime;
property OwnerID: integer read FOwnerID write FOwnerID;
property GroupID: integer read FGroupID write FGroupID;
property LinkTarget: string read FLinkTarget write FLinkTarget;
end;
TFileList = class(TObject)
private
FEntries: TList;
FDirectoryName: string;
function GetEntry(i: integer): TFileEntry;
public
constructor Create;
destructor Destroy; override;
function Count: integer;
function ReadDirectory(const AFilemask: string; AShowHidden: boolean): integer;
procedure Clear;
procedure Sort(AOrder: TFileListSortOrder);
property Entry[i: integer]: TFileEntry read GetEntry;
property DirectoryName: string read FDirectoryName;
end;
TfpgFileGrid = class(TfpgCustomGrid)
private
FFileList: TFileList;
FFixedFont: TfpgFont;
protected
function GetRowCount: integer; override;
procedure DrawCell(ARow, ACol: integer; ARect: TfpgRect; AFlags: integer); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function CurrentEntry: TFileEntry;
property FixedFont: TfpgFont read FFixedFont;
property FileList: TFileList read FFileList;
property DefaultRowHeight;
property Font;
property HeaderFont;
published
property FontDesc;
property HeaderFontDesc;
property RowCount;
property ColumnCount;
property Columns;
property FocusRow;
property ScrollBarStyle;
property OnRowChange;
property OnDoubleClick;
end;
TfpgStringColumn = class(TfpgGridColumn)
private
FCells: TStringList;
public
constructor Create; override;
destructor Destroy; override;
property Cells: TStringList read FCells write FCells;
end;
TfpgCustomStringGrid = class(TfpgCustomGrid)
private
function GetCell(ACol, ARow: LongWord): string;
function GetColumnTitle(ACol: integer): string;
function GetObjects(ACol, ARow: LongWord): TObject;
procedure SetCell(ACol, ARow: LongWord; const AValue: string);
procedure SetColumnTitle(ACol: integer; const AValue: string);
procedure SetObjects(ACol, ARow: LongWord; const AValue: TObject);
protected
function GetColumnWidth(ACol: integer): integer; override;
procedure SetColumnWidth(ACol: integer; const AValue: integer); override;
function GetColumns(AIndex: integer): TfpgStringColumn; reintroduce;
procedure DoDeleteColumn(ACol: integer); override;
procedure DoSetRowCount(AValue: integer); override;
function DoCreateColumnClass: TfpgStringColumn; reintroduce; override;
procedure DrawCell(ARow, ACol: integer; ARect: TfpgRect; AFlags: integer); override;
{ AIndex is 1-based. }
property Columns[AIndex: integer]: TfpgStringColumn read GetColumns;
public
constructor Create(AOwner: TComponent); override;
function AddColumn(ATitle: string; AWidth: integer; AAlignment: TAlignment = taLeftJustify): TfpgStringColumn; overload;
{ ACol and ARow is 1-based. }
property Cells[ACol, ARow: LongWord]: string read GetCell write SetCell;
property Objects[ACol, ARow: LongWord]: TObject read GetObjects write SetObjects;
property ColumnTitle[ACol: integer]: string read GetColumnTitle write SetColumnTitle;
property ColumnWidth[ACol: integer]: integer read GetColumnWidth write SetColumnWidth;
// property Cols[index: Integer]: TStrings read GetCols write SetCols;
// property Rows[index: Integer]: TStrings read GetRows write SetRows;
end;
TfpgStringGrid = class(TfpgCustomStringGrid)
published
property Columns;
property DefaultColWidth;
property DefaultRowHeight;
property FontDesc;
property HeaderFontDesc;
property BackgroundColor;
property FocusCol;
property FocusRow;
property RowSelect;
property ColumnCount;
property RowCount;
property ScrollBarStyle;
property ShowHeader;
property ShowGrid;
property HeaderHeight;
property ColResizing;
property ColumnWidth;
property OnFocusChange;
property OnRowChange;
property OnDoubleClick;
end;
implementation
uses
gfx_utils
{$IFDEF MSWINDOWS}
,Windows // Graeme: temporary, just to see how the grid looks under Windows.
{$ENDIF}
{$IFDEF UNIX}
,libc // Graeme: temporary
,baseunix
{$ENDIF}
;
// ***** These two functions will be moving out of this unit soon!
function StringMatches(const astr, apat: string): boolean;
var
pati, si: longint;
begin
result := True;
pati := 1;
si := 1;
while result and (si <= length(astr)) and (pati <= length(apat)) do
begin
if (apat[pati] = '?') or (apat[pati] = astr[si]) then
begin
inc(si);
inc(pati);
end
else if (apat[pati] = '*') then
begin
while (pati <= length(apat)) and (apat[pati] in ['?','*']) do
inc(pati);
if pati > length(apat) then
begin
si := length(astr)+1;
Break; // * at the end
end;
while (si <= length(astr)) and (astr[si] <> apat[pati]) do
inc(si);
if si > length(astr) then
result := False;
end
else
begin
result := False;
end;
end;
result := result and (si > length(astr));
end;
// multiple patterns separated with ;
function FileNameMatches(const astr, apats: string): boolean;
var
cpat: string;
p: integer;
s: string;
astrupper: string;
begin
astrupper := UpperCase(astr);
result := False;
s := apats;
repeat
cpat := '';
p := pos(';',s);
if p > 0 then
begin
cpat := copy(s, 1, p-1);
delete(s, 1, p);
end
else
begin
cpat := s;
s := '';
end; { if/else }
cpat := UpperCase(trim(cpat));
if cpat <> '' then
result := StringMatches(astrupper, cpat);
until result or (cpat = '');
end;
{$IFDEF UNIX}
function GetGroupName(gid: integer): string;
var
p: PGroup;
begin
p := getgrgid(gid);
if p <> nil then
result := p^.gr_name;
end;
function GetUserName(uid: integer): string;
var
p: PPasswd;
begin
p := getpwuid(uid);
if p <> nil then
result := p^.pw_name
else
result := '';
end;
{$ENDIF}
{ TFileEntry }
constructor TFileEntry.Create;
begin
FAttributes := 0;
FMode := 0;
FSize := 0;
FIsLink := False;
FEntryType := etFile;
end;
{ TFileList }
function TFileList.GetEntry(i: integer): TFileEntry;
begin
if (i < 1) or (i > FEntries.Count) then
Result := nil
else
Result := TFileEntry(FEntries[i-1]);
end;
constructor TFileList.Create;
begin
FEntries := TList.Create;
FDirectoryName := '';
end;
destructor TFileList.Destroy;
begin
Clear;
FEntries.Free;
inherited Destroy;
end;
function TFileList.Count: integer;
begin
Result := FEntries.Count;
end;
function TFileList.ReadDirectory(const AFilemask: string; AShowHidden: boolean): integer;
{ HasAttrib() tests whether or not a file (with attributes fileAttrib) has the
testAttrib attribute bit set. }
function HasAttrib(fileAttrib, testAttrib: Integer): Boolean;
begin
Result := (fileAttrib and testAttrib) <> 0;
end;
// locally visible proc
procedure AddEntry(sr: TSearchRec);
var
e: TFileEntry;
fullname: string;
{$IFDEF UNIX}
info: Tstat;
{$ENDIF}
begin
e := TFileEntry.Create;
e.Name := sr.Name;
e.Extention := ExtractFileExt(e.Name);
e.Size := sr.Size;
e.Attributes := sr.Attr; // this is incorrect and needs to improve!
e.EntryType := etFile;
fullname := FDirectoryName + e.Name;
{$IFDEF UNIX}
e.mode := sr.Mode;
Fpstat(PChar(fullname), info);
e.GroupID := info.st_gid;
e.OwnerID := info.st_uid;
{$ENDIF}
e.IsLink := FileIsSymlink(fullname);
e.LinkTarget := ExtractTargetSymLinkPath(fullname);
e.ModTime := FileDateToDateTime(sr.Time);
if HasAttrib(sr.Attr, faDirectory) then
e.EntryType := etDir
else
e.EntryType := etFile;
if (e.Name = '.') or
((e.Name = '..') and (FDirectoryName = '/')) or
(not AShowHidden and (Copy(e.Name, 1, 1) = '.') and (Copy(e.Name, 2, 1) <> '.')) or
// (not AShowHidden and HasAttrib(sr.Attr, faHidden)) or
((e.EntryType = etFile) and not FileNameMatches(e.Name, AFilemask)) then
begin
// do not add this entry
e.Free;
end
else
FEntries.Add(e)
end;
var
SearchRec: TSearchRec;
begin
Clear;
GetDir(0, FDirectoryName);
// Add PathDelim to end if it doesn't yet exist
if Copy(FDirectoryName, Length(FDirectoryName), 1) <> PathDelim then
FDirectoryName := FDirectoryName + PathDelim;
try
// The extra 'or' includes Normal attribute files under Windows. faAnyFile doesn't return those.
// Reported to FPC as bug 9440 in Mantis.
if SysUtils.FindFirst(FDirectoryName + '*', faAnyFile or $00000080, SearchRec) = 0 then
begin
AddEntry(SearchRec);
while SysUtils.FindNext(SearchRec) = 0 do
begin
AddEntry(SearchRec);
end;
end;
finally
SysUtils.FindClose(SearchRec);
end;
Result := FEntries.Count;
end;
procedure TFileList.Clear;
var
n: integer;
begin
for n := 0 to FEntries.Count-1 do
TFileEntry(FEntries[n]).Free;
FEntries.Clear;
end;
procedure TFileList.Sort(AOrder: TFileListSortOrder);
var
newl: TList;
n: integer;
i: integer;
e: TFileEntry;
function IsBefore(newitem, item: TFileEntry): boolean;
begin
//if newitem.etype = etDir then writeln('dir: ',newitem.name,' (',item.name,')');
if (newitem.EntryType = etDir) and (item.EntryType <> etDir) then
begin
result := true;
end
else if (newitem.EntryType <> etDir) and (item.EntryType = etDir) then
begin
result := false;
end
else if (newitem.EntryType = etDir) and (newitem.Name = '..') then
begin
result := true;
end
else if (item.EntryType = etDir) and (item.Name = '..') then
begin
result := false;
end
else
case AOrder of
soFileName : result := UpperCase(newitem.Name) < UpperCase(item.Name);
soCSFileName : result := newitem.Name < item.Name;
soFileExt : result := UpperCase(newitem.Extention+' '+newitem.Name) < UpperCase(item.Extention+' '+item.Name);
soSize : result := newitem.size < item.size;
soTime : result := newitem.modtime < item.modtime;
else
result := False;
end;
end;
begin
newl := TList.Create;
for n := 0 to FEntries.Count-1 do
begin
e := TFileEntry(FEntries[n]);
i := 0;
while (i < newl.Count) and not IsBefore(e,TFileEntry(newl[i])) do inc(i);
newl.Insert(i,e);
end;
FEntries.Free;
FEntries := newl;
end;
{ TfpgFileGrid }
function TfpgFileGrid.GetRowCount: integer;
begin
Result := FFileList.Count;
end;
procedure TfpgFileGrid.DrawCell(ARow, ACol: integer; ARect: TfpgRect; AFlags: integer);
const
modestring: string[9] = 'xwrxwrxwr'; // must be in reverse order
var
e: TFileEntry;
x: integer;
y: integer;
s: string;
img: TfpgImage;
b: integer;
n: integer;
begin
e := FFileList.Entry[ARow];
if e = nil then
Exit; //==>
x := ARect.Left + 2;
y := ARect.Top;// + 1;
s := '';
if (e.EntryType = etDir) and (ACol = 1) then
Canvas.SetFont(HeaderFont)
else
Canvas.SetFont(Font);
case ACol of
1: begin
if e.EntryType = etDir then
img := fpgImages.GetImage('stdimg.folder')
else
begin
img := fpgImages.GetImage('stdimg.document');
{$IFDEF UNIX}
if (e.Mode and $40) <> 0 then
img := fpgImages.GetImage('stdimg.executable');
{$ENDIF}
{$IFDEF MSWINDOWS}
if lowercase(e.Extention) = 'exe' then
img := fpgImages.GetImage('stdimg.executable');
{$ENDIF}
end;
if img <> nil then
Canvas.DrawImage(ARect.Left+1, y, img);
if e.IsLink then
Canvas.DrawImage(ARect.Left+1, y, fpgImages.GetImage('stdimg.link'));
x := ARect.Left + 20;
s := e.Name;
end;
2: begin
s := FormatFloat('###,###,###,##0', e.size);
x := ARect.Right - Font.TextWidth(s) - 1;
if x < (ARect.Left + 2) then
x := ARect.Left + 2;
end;
3: s := FormatDateTime('yyyy-mm-dd hh:nn', e.ModTime);
4: begin
{$IFDEF MSWINDOWS}
// File attributes
s := '';
//if (e.attributes and FILE_ATTRIBUTE_ARCHIVE) <> 0 then s := s + 'a' else s := s + ' ';
if (e.attributes and FILE_ATTRIBUTE_HIDDEN) <> 0 then s := s + 'h';
if (e.attributes and FILE_ATTRIBUTE_READONLY) <> 0 then s := s + 'r';
if (e.attributes and FILE_ATTRIBUTE_SYSTEM) <> 0 then s := s + 's';
if (e.attributes and FILE_ATTRIBUTE_TEMPORARY) <> 0 then s := s + 't';
if (e.attributes and FILE_ATTRIBUTE_COMPRESSED) <> 0 then s := s + 'c';
{$ENDIF}
{$IFDEF UNIX}
// rights
//rwx rwx rwx
b := 1;
n := 1;
s := '';
while n <= 9 do
begin
if (e.Mode and b) = 0 then
s := '-' + s
else
s := modestring[n] + s;
inc(n);
b := b shl 1;
end;
{$ENDIF}
Canvas.SetFont(FixedFont);
end;
{$IFDEF UNIX}
5: s := GetUserName(e.ownerid); // use getpwuid(); for the name of this user
{$ENDIF}
{$IFDEF UNIX}
6: s := GetGroupName(e.groupid); // use getgrgid(); for the name of this group
{$ENDIF}
end;
// centre text in row height
y := y + ((DefaultRowHeight - Canvas.Font.Height) div 2);
Canvas.DrawString(x, y, s);
end;
constructor TfpgFileGrid.Create(AOwner: TComponent);
begin
FFileList := TFileList.Create;
inherited Create(AOwner);
ColumnCount := 0;
RowCount := 0;
FFixedFont := fpgGetFont('Courier New-9');
{$Note No IFDEF's allowed!!! But how the hell to we get around this? }
{$ifdef MSWINDOWS}
AddColumn('Name', 320);
{$else}
AddColumn('Name', 220);
{$endif}
AddColumn('Size', 80);
AddColumn('Mod. Time', 108);
{$ifdef MSWINDOWS}
AddColumn('Attributes', 78);
{$else}
AddColumn('Rights', 78);
AddColumn('Owner', 54);
AddColumn('Group', 54);
{$endif}
RowSelect := True;
DefaultRowHeight := fpgImages.GetImage('stdimg.document').Height + 2;
end;
destructor TfpgFileGrid.Destroy;
begin
OnRowChange := nil;
FFixedFont.Free;
FFileList.Free;
inherited Destroy;
end;
function TfpgFileGrid.CurrentEntry: TFileEntry;
begin
Result := FFileList.Entry[FocusRow];
end;
{ TfpgStringColumn }
constructor TfpgStringColumn.Create;
begin
inherited Create;
FCells := TStringList.Create;
end;
destructor TfpgStringColumn.Destroy;
begin
FCells.Free;
inherited Destroy;
end;
{ TfpgCustomStringGrid }
function TfpgCustomStringGrid.GetCell(ACol, ARow: LongWord): string;
begin
if ACol > ColumnCount then
Exit; //==>
if ARow > RowCount then
Exit; //==>
Result := TfpgStringColumn(FColumns.Items[ACol-1]).Cells[ARow-1];
end;
function TfpgCustomStringGrid.GetColumnTitle(ACol: integer): string;
begin
if ACol > ColumnCount then
Exit; //==>
Result := TfpgStringColumn(FColumns.Items[ACol-1]).Title;
end;
function TfpgCustomStringGrid.GetObjects(ACol, ARow: LongWord): TObject;
begin
if ACol > ColumnCount then
Exit; //==>
if ARow > RowCount then
Exit; //==>
Result := TfpgStringColumn(FColumns.Items[ACol-1]).Cells.Objects[ARow-1];
end;
function TfpgCustomStringGrid.GetColumnWidth(ACol: integer): integer;
begin
if ACol > ColumnCount then
Exit; //==>
Result := TfpgStringColumn(FColumns.Items[ACol-1]).Width;
end;
procedure TfpgCustomStringGrid.SetCell(ACol, ARow: LongWord;
const AValue: string);
begin
if ACol > ColumnCount then
Exit; //==>
if ARow > RowCount then
Exit; //==>
if TfpgStringColumn(FColumns.Items[ACol-1]).Cells[ARow-1] <> AValue then
begin
BeginUpdate;
TfpgStringColumn(FColumns.Items[ACol-1]).Cells[ARow-1] := AValue;
EndUpdate;
end;
end;
procedure TfpgCustomStringGrid.SetColumnTitle(ACol: integer; const AValue: string);
begin
if ACol > ColumnCount then
Exit; //==>
BeginUpdate;
TfpgStringColumn(FColumns.Items[ACol-1]).Title := AValue;
EndUpdate;
end;
procedure TfpgCustomStringGrid.SetObjects(ACol, ARow: LongWord;
const AValue: TObject);
begin
if ACol > ColumnCount then
Exit; //==>
if ARow > RowCount then
Exit; //==>
TfpgStringColumn(FColumns.Items[ACol-1]).Cells.Objects[ARow-1] := AValue;
end;
procedure TfpgCustomStringGrid.SetColumnWidth(ACol: integer; const AValue: integer);
begin
if ACol > ColumnCount then
Exit; //==>
BeginUpdate;
TfpgStringColumn(FColumns.Items[ACol-1]).Width := AValue;
EndUpdate;
end;
function TfpgCustomStringGrid.GetColumns(AIndex: integer): TfpgStringColumn;
begin
if (AIndex < 1) or (AIndex > ColumnCount) then
Result := nil
else
Result := TfpgStringColumn(FColumns.Items[AIndex-1]);
end;
procedure TfpgCustomStringGrid.DoDeleteColumn(ACol: integer);
begin
TfpgStringColumn(FColumns.Items[ACol-1]).Free;
FColumns.Delete(ACol-1);
end;
procedure TfpgCustomStringGrid.DoSetRowCount(AValue: integer);
var
diff: integer;
c: integer;
begin
inherited DoSetRowCount(AValue);
if FColumns.Count = 0 then
Exit; //==>
diff := AValue - TfpgStringColumn(FColumns.Items[0]).Cells.Count;
if diff > 0 then // We need to add rows
begin
for c := 0 to FColumns.Count - 1 do
begin
while TfpgStringColumn(FColumns[c]).Cells.Count <> AValue do
TfpgStringColumn(FColumns[c]).Cells.Append('');
end;
end;
end;
function TfpgCustomStringGrid.DoCreateColumnClass: TfpgStringColumn;
begin
Result := TfpgStringColumn.Create;
end;
procedure TfpgCustomStringGrid.DrawCell(ARow, ACol: integer; ARect: TfpgRect;
AFlags: integer);
begin
if Cells[ACol, ARow] <> '' then
begin
if not Enabled then
Canvas.SetTextColor(clShadow1);
Canvas.DrawString(ARect.Left+1, ARect.Top+1, Cells[ACol, ARow]);
end;
end;
constructor TfpgCustomStringGrid.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
ColumnCount := 0;
RowCount := 0;
end;
function TfpgCustomStringGrid.AddColumn(ATitle: string; AWidth: integer;
AAlignment: TAlignment): TfpgStringColumn;
var
r: integer;
begin
Include(ComponentState, csUpdating);
Result := TfpgStringColumn(inherited AddColumn(ATitle, AWidth));
Result.Alignment := AAlignment;
for r := 1 to RowCount do
Result.Cells.Append('');
Exclude(ComponentState, csUpdating);
end;
end.
|