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
|
{
fpGUI - Free Pascal GUI Library
Copyright (C) 2006 - 2008 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: Col[] and Row[] properties need to be implemented,
returning a TStrings with all related text inserted.
* File Grid: Introduce support for images based on file types. User must
be able to override the default images with their own.
* Remove the usage of libc unit. libc is linux/x86 specific.
}
interface
uses
Classes,
SysUtils,
gfxbase,
fpgfx,
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;
}
{ TfpgFileGrid }
TfpgFileGrid = class(TfpgCustomGrid)
private
FFileList: TfpgFileList;
FFixedFont: TfpgFont;
protected
function GetRowCount: Longword; override;
procedure DrawCell(ARow, ACol: Longword; ARect: TfpgRect; AFlags: integer); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function CurrentEntry: TFileEntry;
property FixedFont: TfpgFont read FFixedFont;
property FileList: TfpgFileList read FFileList;
property DefaultRowHeight;
property Font;
property HeaderFont;
published
property FontDesc;
property HeaderFontDesc;
property RowCount;
property ColumnCount;
property Columns;
property FocusRow;
property ScrollBarStyle;
property TabOrder;
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: Longword): string;
function GetObjects(ACol, ARow: Longword): TObject;
procedure SetCell(ACol, ARow: Longword; const AValue: string);
procedure SetColumnTitle(ACol: Longword; const AValue: string);
procedure SetObjects(ACol, ARow: Longword; const AValue: TObject);
protected
function GetColumnWidth(ACol: Longword): integer; override;
procedure SetColumnWidth(ACol: Longword; const AValue: integer); override;
function GetColumns(AIndex: Longword): TfpgStringColumn; reintroduce;
procedure DoDeleteColumn(ACol: integer); override;
procedure DoSetRowCount(AValue: integer); override;
function DoCreateColumnClass: TfpgStringColumn; reintroduce; override;
procedure DrawCell(ARow, ACol: Longword; ARect: TfpgRect; AFlags: integer); override;
{ AIndex is 1-based. }
property Columns[AIndex: Longword]: TfpgStringColumn read GetColumns;
public
constructor Create(AOwner: TComponent); override;
function AddColumn(ATitle: string; AWidth: integer; AAlignment: TAlignment = taLeftJustify;
AbackgroundColor: TfpgColor = clDefault; ATextColor: TfpgColor = clDefault): 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: Longword]: string read GetColumnTitle write SetColumnTitle;
property ColumnWidth[ACol: Longword]: integer read GetColumnWidth write SetColumnWidth;
property ColumnBackgroundColor[ACol: Longword]: TfpgColor read GetColumnBackgroundColor write SetColumnBackgroundColor;
property ColumnTextColor[ACol: Longword]: TfpgColor read GetColumnTextColor write SetColumnTextColor;
// property Cols[index: Integer]: TStrings read GetCols write SetCols;
// property Rows[index: Integer]: TStrings read GetRows write SetRows;
end;
TfpgStringGrid = class(TfpgCustomStringGrid)
published
property BackgroundColor;
// property ColResizing;
property ColumnCount;
property Columns;
property ColumnWidth;
property DefaultColWidth;
property DefaultRowHeight;
property FocusCol;
property FocusRow;
property FontDesc;
property HeaderFontDesc;
property HeaderHeight;
property RowCount;
property RowSelect;
property ScrollBarStyle;
property ShowGrid;
property ShowHeader;
property TabOrder;
property TopRow;
property OnCanSelectCell;
property OnDrawCell;
property OnDoubleClick;
property OnFocusChange;
property OnKeyPress;
property OnRowChange;
end;
function CreateStringGrid(AOwner: TComponent; x, y, w, h: TfpgCoord; AColumnCount: integer = 0): TfpgStringGrid;
implementation
uses
gfx_constants
{$IFDEF MSWINDOWS}
,Windows // Graeme: temporary, just to see how the grid looks under Windows.
{$ENDIF}
{$IFDEF UNIX}
// Graeme: temporary. libc is not available for FreeBSD.
{$if defined(linux) and defined(cpu386)},libc{$endif}
// ,baseunix
{$ENDIF}
;
function CreateStringGrid(AOwner: TComponent; x, y, w, h: TfpgCoord; AColumnCount: integer = 0): TfpgStringGrid;
begin
Result := TfpgStringGrid.Create(AOwner);
Result.Left := x;
Result.Top := y;
Result.Width := w;
Result.Height := h;
Result.ColumnCount := AColumnCount;
end;
{$IFDEF UNIX}
{$if defined(linux) and defined(cpu386)}
function GetGroupName(gid: integer): string;
var
p: PGroup;
begin
p := getgrgid(gid);
if p <> nil then
result := p^.gr_name;
end;
{$else}
// Still need to find an alternative for FreeBSD as we can't use the libc unit.
function GetGroupName(gid: integer): string;
begin
result := IntToStr(gid);
end;
{$endif}
{$if defined(linux) and defined(cpu386)}
function GetUserName(uid: integer): string;
var
p: PPasswd;
begin
p := getpwuid(uid);
if p <> nil then
result := p^.pw_name
else
result := '';
end;
{$else}
// Still need to find an alternative for FreeBSD as we can't use the libc unit.
function GetUserName(uid: integer): string;
begin
result := IntToStr(uid);
end;
{$endif}
{$ENDIF UNIX}
{ TfpgFileGrid }
function TfpgFileGrid.GetRowCount: Longword;
begin
Result := FFileList.Count;
end;
procedure TfpgFileGrid.DrawCell(ARow, ACol: Longword; 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') // Do NOT localize
else
begin
img := fpgImages.GetImage('stdimg.document'); // Do NOT localize
{$IFDEF UNIX}
if (e.Mode and $40) <> 0 then
img := fpgImages.GetImage('stdimg.executable'); // Do NOT localize
{$ENDIF}
{$IFDEF MSWINDOWS}
if lowercase(e.Extension) = 'exe' then
img := fpgImages.GetImage('stdimg.executable'); // Do NOT localize
{$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 := TfpgFileList.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(rsName, 320);
{$else}
AddColumn(rsName, 220);
{$endif}
AddColumn(rsSize, 80);
AddColumn(rsFileModifiedTime, 108);
{$ifdef MSWINDOWS}
AddColumn(rsFileAttributes, 78);
{$else}
AddColumn(rsFileRights, 78);
AddColumn(rsFileOwner, 54);
AddColumn(rsFileGroup, 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: Longword): 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: Longword): 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: Longword; 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: Longword; const AValue: integer);
begin
if ACol > ColumnCount then
Exit; //==>
BeginUpdate;
TfpgStringColumn(FColumns.Items[ACol-1]).Width := AValue;
EndUpdate;
end;
function TfpgCustomStringGrid.GetColumns(AIndex: Longword): 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: Longword; ARect: TfpgRect;
AFlags: integer);
var
x: TfpgCoord;
begin
if Cells[ACol, ARow] <> '' then
begin
if not Enabled then
Canvas.SetTextColor(clShadow1);
case Columns[ACol].Alignment of
taLeftJustify:
begin
x := ARect.Left + 1;
end;
taCenter:
begin
x := (ARect.Width - Font.TextWidth(Cells[ACol, ARow])) div 2;
Inc(x, ARect.Left);
end;
taRightJustify:
begin
x := ARect.Right - Font.TextWidth(Cells[ACol, ARow]) - 1;
if x < (ARect.Left + 1) then
x := ARect.Left + 1;
end;
end; { case }
Canvas.DrawString(x, 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; ABackgroundColor: TfpgColor; ATextColor: TfpgColor): TfpgStringColumn;
var
r: integer;
begin
Updating;
Result := TfpgStringColumn(inherited AddColumn(ATitle, AWidth));
Result.Alignment := AAlignment;
if ABackgroundColor = clDefault then
Result.BackgroundColor := clBoxColor
else
Result.BackgroundColor:= ABackgroundColor;
if ATextColor = clDefault then
Result.TextColor := TextColor
else
Result.TextColor:= ATextColor;
for r := 1 to RowCount do
Result.Cells.Append('');
Updated;
end;
end.
|