File: gtk3wsimglist.pp

package info (click to toggle)
lazarus 2.0.10%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 219,188 kB
  • sloc: pascal: 1,867,962; xml: 265,716; cpp: 56,595; sh: 3,005; java: 609; makefile: 568; perl: 297; sql: 222; ansic: 137
file content (117 lines) | stat: -rw-r--r-- 4,577 bytes parent folder | download | duplicates (2)
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
{
 *****************************************************************************
 *                               Gtk3WSImgList.pp                                * 
 *                               ------------                                * 
 *                                                                           *
 *                                                                           *
 *****************************************************************************

 *****************************************************************************
  This file is part of the Lazarus Component Library (LCL)

  See the file COPYING.modifiedLGPL.txt, included in this distribution,
  for details about the license.
 *****************************************************************************
}
unit Gtk3WSImgList;

{$mode objfpc}{$H+}

interface
////////////////////////////////////////////////////
// I M P O R T A N T                                
////////////////////////////////////////////////////
// 1) Only class methods allowed
// 2) Class methods have to be published and virtual
// 3) To get as little as posible circles, the uses
//    clause should contain only those LCL units 
//    needed for registration. WSxxx units are OK
// 4) To improve speed, register only classes in the 
//    initialization section which actually 
//    implement something
// 5) To enable your XXX widgetset units, look at
//    the uses clause of the XXXintf.pp
////////////////////////////////////////////////////
uses
  Classes, GraphType, Graphics, IntfGraphics, ImgList, LCLType, LCLIntf,
  WSLCLClasses, WSProc, WSReferences, WSFactory, WSImgList;

type
  { TGtk3WSCustomImageListResolution }

  TGtk3WSCustomImageListResolution = class(TWSCustomImageListResolution)
  published
    class procedure Clear(AList: TCustomImageListResolution); override;
    class function  CreateReference(AList: TCustomImageListResolution; ACount, AGrow, AWidth,
      AHeight: Integer; AData: PRGBAQuad): TWSCustomImageListReference; override;

    class procedure Delete(AList: TCustomImageListResolution; AIndex: Integer); override;
    class procedure DestroyReference(AComponent: TComponent); override;
    class procedure Draw(AList: TCustomImageListResolution; AIndex: Integer; ACanvas: TCanvas;
      ABounds: TRect; ABkColor, ABlendColor: TColor; ADrawEffect: TGraphicsDrawEffect; AStyle: TDrawingStyle; AImageType: TImageType); override;

    class procedure Insert(AList: TCustomImageListResolution; AIndex: Integer; AData: PRGBAQuad); override;

    class procedure Move(AList: TCustomImageListResolution; ACurIndex, ANewIndex: Integer); override;

    class procedure Replace(AList: TCustomImageListResolution; AIndex: Integer; AData: PRGBAQuad); override;
  end;
  TGtk3WSCustomImageListResolutionClass = class of TGtk3WSCustomImageListResolution;


implementation

{ TGtk3WSCustomImageListResolution }

class procedure TGtk3WSCustomImageListResolution.Clear(AList: TCustomImageListResolution);
begin
  inherited Clear(AList);
end;

class function TGtk3WSCustomImageListResolution.CreateReference(AList: TCustomImageListResolution;
  ACount, AGrow, AWidth, AHeight: Integer; AData: PRGBAQuad
  ): TWSCustomImageListReference;
begin
  Result:=inherited CreateReference(AList, ACount, AGrow, AWidth, AHeight, AData
    );
end;

class procedure TGtk3WSCustomImageListResolution.Delete(AList: TCustomImageListResolution;
  AIndex: Integer);
begin
  inherited Delete(AList, AIndex);
end;

class procedure TGtk3WSCustomImageListResolution.DestroyReference(AComponent: TComponent);
begin
  inherited DestroyReference(AComponent);
end;

class procedure TGtk3WSCustomImageListResolution.Draw(AList: TCustomImageListResolution;
  AIndex: Integer; ACanvas: TCanvas; ABounds: TRect; ABkColor,
  ABlendColor: TColor; ADrawEffect: TGraphicsDrawEffect; AStyle: TDrawingStyle;
  AImageType: TImageType);
begin
  inherited Draw(AList, AIndex, ACanvas, ABounds, ABkColor, ABlendColor,
    ADrawEffect, AStyle, AImageType);
end;

class procedure TGtk3WSCustomImageListResolution.Insert(AList: TCustomImageListResolution;
  AIndex: Integer; AData: PRGBAQuad);
begin
  inherited Insert(AList, AIndex, AData);
end;

class procedure TGtk3WSCustomImageListResolution.Move(AList: TCustomImageListResolution; ACurIndex,
  ANewIndex: Integer);
begin
  inherited Move(AList, ACurIndex, ANewIndex);
end;

class procedure TGtk3WSCustomImageListResolution.Replace(AList: TCustomImageListResolution;
  AIndex: Integer; AData: PRGBAQuad);
begin
  inherited Replace(AList, AIndex, AData);
end;

end.