troche mi się nudziło w domu, więc napisałem na podstawie tych informacji komponent oparty na ListBox.
nie testowałem obsługi zdarzeń ale chyba działa
oto kod:
{
GGList
Licencja: Brak
Uwagi:
Rób z tym co chcesz :-)
}
unit GGList;
interface
uses
SysUtils, Classes, Controls, StdCtrls, ComCtrls, Graphics, Windows, Forms;
const
DefColor = $00F2FEEC;
DefSelColor = $009DDEB7;
DefSelFrameColor = $00266042;
type
TCustomGGList = class(TListBox)
private
FIcons: TImageList;
FListView: TListView;
FSelColor: TColor;
FSelFrameColor: TColor;
FShowStatus: Boolean;
procedure FOnResize(Sender: TObject);
{ Private declarations }
protected
procedure DrawItem(Index: Integer; Rect: TRect; State: TOwnerDrawState); override;
procedure MeasureItem(Index: Integer; var Height: Integer); override;
procedure SetSelFrameColor(Value: TColor);
procedure SetSelColor(Value: TColor);
procedure SetListView(Value: TListView);
procedure SetIcons(Value: TImageList);
procedure SetShowStatus(Value: Boolean);
property ShowStatus: Boolean read FShowStatus write SetShowStatus;
property ListView: TListView read FListView write SetListView;
property Icons: TImageList read FIcons write SetIcons;
property SelColor: TColor read FSelColor write SetSelColor default DefSelColor;
property SelFrameColor: TColor read FSelFrameColor write SetSelFrameColor default DefSelFrameColor;
{ Protected declarations }
public
constructor Create(AOwner: TComponent); override;
{ Public declarations }
published
procedure RefreshItems;
{ Published declarations }
end;
type
TGGList = class(TCustomGGList)
published
property Icons;
property ItemIndex;
property ListView;
property SelColor;
property SelFrameColor;
property ShowStatus;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Moje komponenty', [TGGList]);
end;
{ TGGList }
constructor TCustomGGList.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Style := lbOwnerDrawVariable;
Color := $00F2FEEC;
SetSelColor($009DDEB7);
SetSelFrameColor($00266042);
SetShowStatus(True);
OnResize := FOnResize;
end;
procedure TCustomGGList.DrawItem(Index: Integer; Rect: TRect;
State: TOwnerDrawState);
var
Ico: TIcon;
X, H: integer;
S, T: string;
I: integer;
R: TRect;
Row: integer;
Z: integer;
begin
inherited;
Ico := TIcon.Create;
if odSelected in State then
begin
R.Left := Rect.Left + 1;
R.Right := Rect.Right - 1;
R.Top := Rect.Top + 1;
R.Bottom := Rect.Bottom - 1;
Canvas.Brush.Color := FSelColor;
Canvas.FillRect(R);
Canvas.Brush.Color := FSelFrameColor;
Canvas.FrameRect(R);
Canvas.Brush.Style := bsClear;
if Assigned(FIcons) then
begin
FIcons.GetIcon(0, Ico);
Canvas.Draw(Rect.Right - 30, Rect.Top + 4, Ico);
if FShowStatus then
begin
FIcons.GetIcon(StrToInt(FListView.Items[Index].SubItems[3]), Ico);
Canvas.Draw(Rect.Left + 4, Rect.Top + 4, Ico);
end;
end;
Canvas.Font.Color := clBlack;
Canvas.Font.Style := [fsBold];
Canvas.TextOut(Rect.Left + 25, Rect.Top + 6, FListView.Items[Index].SubItems[0]);
end
else
begin
Canvas.Brush.Color := Color;
Canvas.FillRect(Rect);
if Assigned(FIcons) then
begin
FIcons.GetIcon(0, Ico);
Canvas.Draw(Rect.Right - 30, Rect.Top + 4, Ico);
if ShowStatus then
begin
FIcons.GetIcon(StrToInt(FListView.Items[Index].SubItems[3]), Ico);
Canvas.Draw(Rect.Left + 4, Rect.Top + 4, Ico);
end;
end;
Canvas.Font.Color := clBlack;
Canvas.Font.Style := [fsBold];
Canvas.TextOut(Rect.Left + 25, Rect.Top + 6, FListView.Items[Index].SubItems[0]);
end;
Ico.Free;
Canvas.Font.Name := 'Tahoma';
Canvas.Font.Height := -10;
Canvas.Font.Style := [];
H := Canvas.TextHeight(FListView.Items[Index].Caption);
S := FListView.Items[Index].SubItems[2];
Row := (Canvas.TextWidth(S)) div (Width - 20);
if (Row * (Width - 20)) <> Canvas.TextWidth(S) then
Row := Row + 1;
for i := 1 to Row do
begin
for x := 1 to Length(S) do
begin
if x = Length(S) then
begin
Canvas.TextOut(Rect.Left + 10, (Rect.Top + H) + (10 * i), Copy(S, 1, X));
Break;
end;
if S[x] = ' ' then
begin
T := Copy(S, 1, X);
if Canvas.TextWidth(T) < Width - 20 then
Z := X
else
Break;
end;
end;
Canvas.TextOut(Rect.Left + 10, (Rect.Top + H) + (10 * i), Copy(S, 1, Z));
Delete(S, 1, Z);
end;
end;
procedure TCustomGGList.MeasureItem(Index: Integer; var Height: Integer);
var
S: string;
Row: integer;
begin
inherited;
try
S := FListView.Items[Index].SubItems[2];
Row := (Canvas.TextWidth(S)) div (Width - 20);
if (Row * (Width - 20)) <> Canvas.TextWidth(S) then
Row := Row + 1;
if Row > 0 then
Height := (28 + 6) + (10 * Row)
else
Height := 28;
except
end;
end;
procedure TCustomGGList.FOnResize(Sender: TObject);
begin
Repaint;
end;
procedure TCustomGGList.SetListView(Value: TListView);
begin
FListView := Value;
RefreshItems;
end;
procedure TCustomGGList.SetSelColor(Value: TColor);
begin
FSelColor := Value;
Repaint;
end;
procedure TCustomGGList.SetSelFrameColor(Value: TColor);
begin
FSelFrameColor := Value;
Repaint;
end;
procedure TCustomGGList.SetIcons(Value: TImageList);
begin
FIcons := Value;
Repaint;
end;
procedure TCustomGGList.SetShowStatus(Value: Boolean);
begin
FShowStatus := Value;
Repaint;
end;
procedure TCustomGGList.RefreshItems;
var
i: integer;
begin
Clear;
for i := 0 to FListView.Items.Count - 1 do
Items.Add(FListView.Items[i].Caption);
Repaint;
end;
end.