-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathUImages.pas
More file actions
36 lines (29 loc) · 836 Bytes
/
UImages.pas
File metadata and controls
36 lines (29 loc) · 836 Bytes
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
unit UImages;
interface
uses
Classes,
Vcl.BaseImageCollection,
SVGIconImageCollection,
Vcl.VirtualImageList;
type
TDMImages = class(TDataModule)
icAWTSwing1: TSVGIconImageCollection;
icSwing2: TSVGIconImageCollection;
icFXControls: TSVGIconImageCollection;
icShapes: TSVGIconImageCollection;
icProgram: TSVGIconImageCollection;
icUtilities: TSVGIconImageCollection;
icLayout: TSVGIconImageCollection;
icToolbarLight: TSVGIconImageCollection;
icToolbarDark: TSVGIconImageCollection;
icToolbarDisabledLight: TSVGIconImageCollection;
icToolbarDisabledDark: TSVGIconImageCollection;
icSequencediagram: TSVGIconImageCollection;
icMenuLight: TSVGIconImageCollection;
icMenuDark: TSVGIconImageCollection;
end;
var
DMImages: TDMImages;
implementation
{$R *.dfm}
end.