File: alllclunits.pp

package info (click to toggle)
lazarus 0.9.28.2-12
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 93,096 kB
  • ctags: 89,312
  • sloc: pascal: 820,189; xml: 202,194; makefile: 110,323; sh: 2,460; perl: 395; sql: 174; ansic: 133
file content (73 lines) | stat: -rw-r--r-- 2,833 bytes parent folder | download
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{  $Id: alllclunits.pp 19376 2009-04-12 08:46:31Z paul $  }
{
 *****************************************************************************
                               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, LCLUnicodeData, 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, ShellCtrls, UTF8Process,
  LCLMessageGlue,
  RubberBand,
  // widgetset skeleton
  WSArrow, WSButtons, WSCalendar,
  WSCheckLst, WSComCtrls, WSControls,
  WSDialogs, WSDesigner, WSExtCtrls,
  WSExtDlgs, WSForms, WSGrids, WSImgList, WSMenus,
  WSPairSplitter, WSSpin, WSStdCtrls, WSToolwin,
  WSProc,
  // Other units
  DefaultTranslator;

implementation

end.