mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-03 23:43:49 +02:00
23 lines
366 B
ObjectPascal
23 lines
366 B
ObjectPascal
unit customdrawn_kde;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
// RTL
|
|
Classes, SysUtils,
|
|
// fpimage
|
|
fpcanvas, fpimgcanv, fpimage,
|
|
// LCL -> Use only TForm, TWinControl, TCanvas and TLazIntfImage
|
|
Graphics, Controls, LCLType, LCLIntf, IntfGraphics,
|
|
// Others only for types
|
|
StdCtrls,
|
|
//
|
|
customdrawndrawers, customdrawn_common;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|