lazarus/lcl/alllclunits.pp
mattias a00dac7763 added TProcessUTF8
git-svn-id: trunk@16346 -
2008-09-01 10:24:04 +00:00

77 lines
2.8 KiB
ObjectPascal

{ $Id$ }
{
*****************************************************************************
alllclunits.pp
dummy unit to compile all units
*****************************************************************************
* *
* This file is part of the Lazarus Component Library (LCL) *
* *
* See the file COPYING.modifiedLGPL.txt, included in this distribution, *
* for details about the copyright. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
*****************************************************************************
}
unit AllLCLUnits;
{ At least 2.0.2 is required }
{$if defined(ver1) or (defined(ver2) and (fpc_release<2))}
{$fatal Lazarus requires at least FPC 2.2.0}
{$endif}
{$mode objfpc}{$H+}
interface
uses
// lcl version
LCLVersion,
// resource strings
LCLStrConsts,
// base classes
FPCAdds, LazLinkedList, DynHashArray, LCLMemManager, AvgLvlTree, DynQueue,
StringHashList, ExtendedStrings, DynamicArray, UTrace, TextStrings,
// base types and base functions
LCLProc, LCLType, LCLResCache, GraphMath, GraphType, GraphUtil,
LMessages, LResources, LConvEncoding, FileUtil, Translations,
LazConfigStorage,
// the interface base
InterfaceBase,
IntfGraphics,
// components and functions
LCLClasses, AsyncProcess, FileCtrl, Maps, HelpIntfs, LazHelpIntf, LazHelpHTML,
StdActns, Buttons, Extctrls, Calendar, Clipbrd, Forms, LCLIntf, Spin,
Comctrls, Graphics, StdCtrls, Arrow, Controls, ImgList, Menus, Toolwin,
Dialogs, Messages, ActnList, Grids, MaskEdit, ButtonPanel,
Printers, PostScriptPrinter, PostScriptCanvas, CheckLst, PairSplitter,
ExtDlgs, DBCtrls, DBGrids, DBActns, EditBtn, ExtGraphics, ColorBox,
PropertyStorage, IniPropStorage, XMLPropStorage, Chart, LDockTree, LDockCtrl,
CalendarPopup, Themes, PopupNotifier,
LCLMessageGlue,
RubberBand,
// widgetset skeleton
WSActnList, WSArrow, WSButtons, WSCalendar,
WSCheckLst, WSComCtrls, WSControls,
WSDbCtrls, WSDBGrids, WSDialogs, WSDirSel,
WSEditBtn, WSExtCtrls, WSExtDlgs, WSFileCtrl,
WSForms, WSGrids, WSImgList, WSMaskEdit,
WSMenus, WSPairSplitter, WSSpin, WSStdCtrls,
WSToolwin,
WSProc,
WSDesigner,
// Other units
DefaultTranslator;
implementation
end.