Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / components / customdrawn / customdrawn_win2000.pas
Size: Mime:
unit customdrawn_win2000;

{$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,
  //
  customdrawndrawers, customdrawn_common;

type

  { TCDDrawerWin2k }

  TCDDrawerWin2k = class(TCDDrawerCommon)
  public
  end;

implementation

initialization
  RegisterDrawer(TCDDrawerWin2k.Create, dsWin2000);
end.