2024-08-09 08:43:14 +02:00
|
|
|
unit IDE.ImagesModule;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
System.SysUtils, System.Classes, System.ImageList, Vcl.ImgList, Vcl.Controls,
|
|
|
|
Vcl.VirtualImageList, Vcl.BaseImageCollection, Vcl.ImageCollection;
|
|
|
|
|
|
|
|
type
|
|
|
|
TImagesModule = class(TDataModule)
|
|
|
|
BuildImageList: TImageList;
|
|
|
|
LightToolBarImageCollection: TImageCollection;
|
|
|
|
DarkToolBarImageCollection: TImageCollection;
|
|
|
|
LightMarkersAndACImageCollection: TImageCollection;
|
|
|
|
DarkMarkersAndACImageCollection: TImageCollection;
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
ImagesModule: TImagesModule;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{%CLASSGROUP 'Vcl.Controls.TControl'}
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
2024-08-11 15:59:00 +02:00
|
|
|
end.
|