mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2026-01-04 04:00:44 +01:00
Format and clean uses sections.
git-svn-id: trunk@58629 -
This commit is contained in:
parent
32df0dd1e6
commit
7f7e7ada81
@ -27,13 +27,13 @@ unit ImageListEditor;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Math,
|
||||
Classes, SysUtils, Types, Math,
|
||||
// LCL
|
||||
LCLProc, Forms, Controls, Graphics, GraphType, Dialogs, ComCtrls, StdCtrls,
|
||||
LCLProc, Forms, Controls, Graphics, GraphType, Dialogs, StdCtrls,
|
||||
ExtCtrls, ExtDlgs, ColorBox, Buttons, ButtonPanel, ImgList, LCLTaskDialog,
|
||||
LCLIntf, LCLType,
|
||||
// IdeIntf
|
||||
IDEDialogs, PropEdits, ComponentEditors, ObjInspStrConsts, IDEWindowIntf, Types;
|
||||
IDEDialogs, PropEdits, ComponentEditors, ObjInspStrConsts, IDEWindowIntf;
|
||||
|
||||
type
|
||||
TGlyphAdjustment = (gaNone, gaStretch, gaCrop, gaCenter);
|
||||
|
||||
@ -14,8 +14,13 @@ unit SrcEditorIntf;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, LCLProc, FileUtil, Laz2_XMLCfg, LCLType, Forms, Controls,
|
||||
Graphics, ProjectIntf, IDECommands;
|
||||
Classes, SysUtils,
|
||||
// LCL
|
||||
LCLProc, LCLType, Forms, Controls, Graphics,
|
||||
// LazUtils
|
||||
FileUtil, Laz2_XMLCfg,
|
||||
// IdeIntf
|
||||
ProjectIntf, IDECommands;
|
||||
|
||||
type
|
||||
TSourceMarklingType = (
|
||||
|
||||
@ -16,8 +16,11 @@ unit ToolBarIntf;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Controls, ComCtrls, IDECommands, MenuIntf, IDEImagesIntf,
|
||||
SrcEditorIntf, Menus, Forms;
|
||||
Classes, SysUtils,
|
||||
// LCL
|
||||
Controls, ComCtrls, Menus, Forms,
|
||||
// IdeIntf
|
||||
IDECommands, MenuIntf, IDEImagesIntf, SrcEditorIntf;
|
||||
|
||||
type
|
||||
TIDEToolButton = class;
|
||||
|
||||
@ -31,16 +31,19 @@ unit MissingUnits;
|
||||
interface
|
||||
|
||||
uses
|
||||
// FCL+LCL
|
||||
Classes, SysUtils, LCLProc, LResources, Forms, Controls, Graphics,
|
||||
Dialogs, Buttons, StdCtrls, FileUtil, CheckLst, Menus, ExtCtrls,
|
||||
// Components
|
||||
SynEdit, CodeToolManager, DefineTemplates,
|
||||
// IDEIntf
|
||||
LazIDEIntf,
|
||||
// IDE
|
||||
CompilerOptions, IDEImagesIntf,
|
||||
PackageDefs, Project, IDEProcs, LazarusIDEStrConsts;
|
||||
// FCL
|
||||
Classes, SysUtils,
|
||||
// LCL
|
||||
LCLProc, LResources, Forms, Controls, Graphics, Dialogs, Buttons, StdCtrls,
|
||||
CheckLst, Menus, ExtCtrls,
|
||||
// LazUtils
|
||||
FileUtil,
|
||||
// CodeTools
|
||||
DefineTemplates,
|
||||
// IdeIntf
|
||||
IDEImagesIntf,
|
||||
// IDE
|
||||
PackageDefs, Project, LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -5,9 +5,16 @@ unit BreakPropertyDlg;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls, StdCtrls, ButtonPanel,
|
||||
EditBtn, Spin, IDEHelpIntf, DbgIntfDebuggerBase, BreakPropertyDlgGroups, DebuggerDlg,
|
||||
Debugger, BaseDebugManager, LazarusIDEStrConsts, InputHistory, IDEProcs;
|
||||
Classes, SysUtils,
|
||||
// LCL
|
||||
Forms, Controls, Graphics, Dialogs, ExtCtrls, StdCtrls, ButtonPanel, EditBtn, Spin,
|
||||
// IdeIntf
|
||||
IDEHelpIntf,
|
||||
// DebuggerIntf
|
||||
DbgIntfDebuggerBase,
|
||||
// IDE
|
||||
BreakPropertyDlgGroups, DebuggerDlg, Debugger,
|
||||
BaseDebugManager, LazarusIDEStrConsts, InputHistory, IDEProcs;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -5,7 +5,11 @@ unit BreakPropertyDlgGroups;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, Forms, Controls, ButtonPanel, StdCtrls, CheckLst, Debugger, LazarusIDEStrConsts;
|
||||
Classes,
|
||||
// LCL
|
||||
Forms, Controls, ButtonPanel, StdCtrls, CheckLst,
|
||||
// IDE
|
||||
Debugger, LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -37,10 +37,16 @@ unit EvaluateDlg;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, LCLType, Forms,
|
||||
IDEWindowIntf, IDEImagesIntf, DbgIntfDebuggerBase, LazarusIDEStrConsts,
|
||||
ComCtrls, StdCtrls, Menus, Dialogs, Controls, DebuggerDlg, BaseDebugManager,
|
||||
InputHistory, IDEProcs, Debugger, DebuggerStrConst;
|
||||
Classes, SysUtils,
|
||||
// LCL
|
||||
LCLType, Forms, Controls, ComCtrls, StdCtrls, Menus, Dialogs,
|
||||
// IdeIntf
|
||||
IDEWindowIntf, IDEImagesIntf,
|
||||
// DebuggerIntf
|
||||
DbgIntfDebuggerBase,
|
||||
// IDE
|
||||
LazarusIDEStrConsts, BaseDebugManager, InputHistory, IDEProcs,
|
||||
Debugger, DebuggerDlg, DebuggerStrConst;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -28,10 +28,16 @@ unit InspectDlg;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Forms, Controls, Graphics, IDEWindowIntf, DebuggerStrConst, ComCtrls,
|
||||
ObjectInspector, PropEdits, IDEImagesIntf, Debugger, DebuggerDlg, DbgIntfBaseTypes,
|
||||
DbgIntfDebuggerBase, BaseDebugManager, LazarusIDEStrConsts, LCLType, Grids, StdCtrls, Menus,
|
||||
LCLProc, InputHistory, IDEProcs;
|
||||
Classes, SysUtils,
|
||||
// LCL
|
||||
LCLProc, LCLType, Grids, StdCtrls, Menus, Forms, Controls, Graphics, ComCtrls,
|
||||
// IdeIntf
|
||||
IDEWindowIntf, IDEImagesIntf, ObjectInspector, PropEdits,
|
||||
// DebuggerIntf
|
||||
DbgIntfDebuggerBase, DbgIntfBaseTypes,
|
||||
// IDE
|
||||
LazarusIDEStrConsts, BaseDebugManager, InputHistory, IDEProcs,
|
||||
Debugger, DebuggerDlg, DebuggerStrConst;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -41,9 +41,9 @@ uses
|
||||
// Codetools
|
||||
LFMTrees, CodeCache, CodeToolManager,
|
||||
// IdeIntf
|
||||
ComponentReg, PropEdits, ComponentEditors, FormEditingIntf, SrcEditorIntf,
|
||||
ComponentReg, PropEdits, ComponentEditors, FormEditingIntf, SrcEditorIntf, IDEDialogs,
|
||||
// IDE
|
||||
LazarusIDEStrConsts, IDEDialogs, CheckLFMDlg, Project, MainIntf;
|
||||
LazarusIDEStrConsts, CheckLFMDlg, Project, MainIntf;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -30,9 +30,14 @@ unit FrameDesigner;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Math, LCLProc, Graphics, GraphType, Forms, Controls,
|
||||
FormEditingIntf, IDEProcs, DesignerProcs, CustomNonFormDesigner;
|
||||
|
||||
Classes, SysUtils, Math,
|
||||
// LCL
|
||||
LCLProc, Graphics, GraphType, Forms, Controls,
|
||||
// IdeIntf
|
||||
FormEditingIntf,
|
||||
// IDE
|
||||
DesignerProcs, CustomNonFormDesigner;
|
||||
|
||||
type
|
||||
|
||||
{ TFrameDesignerForm }
|
||||
|
||||
@ -30,10 +30,16 @@ unit CleanDirDlg;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, RegExpr, Forms, Controls, Graphics, Dialogs, Buttons,
|
||||
StdCtrls, FileUtil, Laz2_XMLCfg, LazFileUtils, LCLProc, ButtonPanel,
|
||||
IDEWindowIntf, IDEHelpIntf, IDEDialogs, LazarusIDEStrConsts, LazConf,
|
||||
IDEProcs, TransferMacros, InputHistory, ShowDeletingFilesDlg;
|
||||
Classes, SysUtils, RegExpr,
|
||||
// LCL
|
||||
LCLProc, Forms, Controls, Graphics, Dialogs, StdCtrls, ButtonPanel,
|
||||
// LazUtils
|
||||
FileUtil, LazFileUtils, Laz2_XMLCfg,
|
||||
// IdeIntf
|
||||
IDEWindowIntf, IDEHelpIntf, IDEDialogs,
|
||||
// IDE
|
||||
LazarusIDEStrConsts, LazConf, TransferMacros, InputHistory,
|
||||
ShowDeletingFilesDlg, IDEProcs;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -37,12 +37,19 @@ unit CodeContextForm;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Types, LCLProc, LResources, Forms, Controls,
|
||||
Graphics, Dialogs, LCLType, LCLIntf, Themes, Buttons, SynEdit, SynEditKeyCmds,
|
||||
Classes, SysUtils, Types,
|
||||
// LCL
|
||||
LCLProc, LCLType, LCLIntf, LResources, LMessages, Forms, Controls,
|
||||
Graphics, Dialogs, Themes, Buttons,
|
||||
// SynEdit
|
||||
SynEdit, SynEditKeyCmds,
|
||||
// CodeTools
|
||||
BasicCodeTools, KeywordFuncLists, LinkScanner, CodeCache, FindDeclarationTool,
|
||||
IdentCompletionTool, CodeTree, CodeAtom, PascalParserTool, CodeToolManager,
|
||||
SrcEditorIntf, LazIDEIntf, IDEProcs, LazarusIDEStrConsts, IDEImagesIntf,
|
||||
LMessages;
|
||||
// IdeIntf
|
||||
SrcEditorIntf, LazIDEIntf, IDEImagesIntf,
|
||||
// IDE
|
||||
IDEProcs, LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -6,14 +6,19 @@ interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils,
|
||||
LazFileUtils, Laz2_XMLCfg, LazUTF8, LazLoggerBase,
|
||||
// LCL
|
||||
LCLType, Forms, Controls, Dialogs, StdCtrls, ButtonPanel, ComCtrls, ExtCtrls,
|
||||
Spin, Menus,
|
||||
// LazUtils
|
||||
LazFileUtils, Laz2_XMLCfg, LazUTF8, LazLoggerBase,
|
||||
// SynEdit
|
||||
SynMacroRecorder, SynEdit, SynEditKeyCmds,
|
||||
// IdeIntf
|
||||
IDEWindowIntf, IDEImagesIntf, SrcEditorIntf, IDEHelpIntf, IDECommands,
|
||||
LazIDEIntf,
|
||||
LazIDEIntf, IDEDialogs,
|
||||
// IDE
|
||||
LazarusIDEStrConsts, ProjectDefs, LazConf, Project, KeyMapping,
|
||||
KeyMapShortCutDlg, MainIntf, IDEDialogs;
|
||||
KeyMapShortCutDlg, MainIntf;
|
||||
|
||||
type
|
||||
TSynEditorMacro = class(TSynMacroRecorder)
|
||||
|
||||
@ -39,10 +39,11 @@ uses
|
||||
FileProcs, CTUnitGraph, CodeTree, CodeCache, CodeToolManager, BasicCodeTools,
|
||||
// LazUtils
|
||||
LazFileUtils, LazFileCache, laz2_DOM, AvgLvlTree,
|
||||
// IdeIntf
|
||||
LazIDEIntf, IDEWindowIntf, SrcEditorIntf, PackageIntf, IDEDialogs,
|
||||
// IDE
|
||||
LazarusIDEStrConsts, IDEProcs, IDEWindowIntf, MiscOptions, DialogProcs,
|
||||
LazIDEIntf, IDEDialogs, SrcEditorIntf, PackageIntf, InputHistory,
|
||||
SearchResultView, CodeHelp, TransferMacros;
|
||||
LazarusIDEStrConsts, IDEProcs, MiscOptions, DialogProcs,
|
||||
InputHistory, SearchResultView, CodeHelp, TransferMacros;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -31,7 +31,7 @@ uses
|
||||
// IdeIntf
|
||||
IDEOptionsIntf, IDEOptEditorIntf, IDEUtils,
|
||||
// IDE
|
||||
EnvironmentOpts, LazarusIDEStrConsts, IDEProcs;
|
||||
EnvironmentOpts, LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -36,7 +36,7 @@ uses
|
||||
// IdeIntf
|
||||
IDEOptionsIntf, IDEOptEditorIntf, IDEImagesIntf, FormEditingIntf, ComponentReg,
|
||||
// IDE
|
||||
IDEProcs, EnvironmentOpts, LazarusIDEStrConsts, IDEOptionDefs, PackageDefs;
|
||||
EnvironmentOpts, LazarusIDEStrConsts, IDEOptionDefs, PackageDefs;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -35,7 +35,7 @@ uses
|
||||
// IdeIntf
|
||||
IDEOptionsIntf, IDEOptEditorIntf, IDEWindowIntf, IDEUtils,
|
||||
// IDE
|
||||
EnvironmentOpts, LazarusIDEStrConsts, IDETranslations, InputHistory, IDEProcs;
|
||||
EnvironmentOpts, LazarusIDEStrConsts, IDETranslations, InputHistory;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -34,7 +34,7 @@ uses
|
||||
IDEOptionsIntf, IDEOptEditorIntf, IDEUtils,
|
||||
// IDE
|
||||
EditorOptions, LazarusIDEStrConsts, editor_general_options, editor_color_options,
|
||||
IDEProcs, SourceSynEditor, SourceMarks;
|
||||
SourceSynEditor, SourceMarks;
|
||||
|
||||
type
|
||||
{ TEditorDisplayOptionsFrame }
|
||||
|
||||
@ -38,7 +38,7 @@ uses
|
||||
// IdeIntf
|
||||
IDEOptionsIntf, IDEOptEditorIntf,
|
||||
// IDE
|
||||
EditorOptions, LazarusIDEStrConsts, IDEProcs, editor_general_options;
|
||||
EditorOptions, LazarusIDEStrConsts, editor_general_options;
|
||||
|
||||
type
|
||||
{ TEditorGeneralMiscOptionsFrame }
|
||||
|
||||
@ -25,12 +25,9 @@ unit editor_general_options;
|
||||
interface
|
||||
|
||||
uses
|
||||
//Classes, SysUtils, math, LCLProc, LCLType, StdCtrls, Controls, ExtCtrls,
|
||||
//Graphics, EditorOptions, LazarusIDEStrConsts, IDEProcs, IDEOptionsIntf,
|
||||
//IDEUtils, SynEdit, SynHighlighterPas, SynPluginMultiCaret, DividerBevel;
|
||||
Classes, SysUtils, math,
|
||||
// LCL
|
||||
LCLProc, LCLType, StdCtrls, Controls, ExtCtrls, Graphics,
|
||||
LCLProc, LCLType, StdCtrls, Controls, Graphics,
|
||||
// LazControls
|
||||
DividerBevel,
|
||||
// SynEdit
|
||||
@ -38,7 +35,7 @@ uses
|
||||
// IdeIntf
|
||||
IDEOptionsIntf, IDEOptEditorIntf, IDEUtils, SrcEditorIntf,
|
||||
// IDE
|
||||
EditorOptions, LazarusIDEStrConsts, IDEProcs;
|
||||
EditorOptions, LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
TPreviewEditor = TSynEdit;
|
||||
|
||||
@ -35,7 +35,7 @@ uses
|
||||
// IdeIntf
|
||||
IDEOptionsIntf, IDEOptEditorIntf, IDEUtils, SrcEditorIntf,
|
||||
// IDE
|
||||
EditorOptions, LazarusIDEStrConsts, IDEProcs, KeyMapping,
|
||||
EditorOptions, LazarusIDEStrConsts, KeyMapping,
|
||||
editor_keymapping_options, editor_general_options;
|
||||
|
||||
type
|
||||
|
||||
@ -31,7 +31,7 @@ uses
|
||||
// IdeIntf
|
||||
IDEOptionsIntf, IDEOptEditorIntf,
|
||||
// IDE
|
||||
EnvironmentOpts, LazarusIDEStrConsts, IDEProcs;
|
||||
EnvironmentOpts, LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
TDesignerColor = (
|
||||
|
||||
@ -36,7 +36,7 @@ uses
|
||||
// IdeIntf
|
||||
IDEUtils,
|
||||
// IDE
|
||||
IDEProcs, LazarusIDEStrConsts;
|
||||
LazarusIDEStrConsts;
|
||||
|
||||
const
|
||||
DefaultModeMatrixMaxUndo = 100;
|
||||
|
||||
@ -13,7 +13,7 @@ uses
|
||||
// IdeIntf
|
||||
IDEOptionsIntf, IDEOptEditorIntf, ProjectIntf,
|
||||
// IDE
|
||||
Project, IDEProcs, LazarusIDEStrConsts;
|
||||
Project, LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -38,7 +38,7 @@ uses
|
||||
// Codetools
|
||||
FileProcs, CodeToolManager, DirectoryCacher, CodeCache,
|
||||
// IDE
|
||||
IDEProcs, LazarusIDEStrConsts; { IDE Language (Human, not computer) }
|
||||
LazarusIDEStrConsts; { IDE Language (Human, not computer) }
|
||||
|
||||
type
|
||||
{ TLazarusTranslation }
|
||||
|
||||
@ -30,9 +30,15 @@ unit IDEWindowHelp;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, LCLProc, Controls, LazFileUtils, Dialogs, HelpIntfs,
|
||||
LazConfigStorage, IDEDialogs, EnvironmentOpts, IDEOptionDefs,
|
||||
LazarusIDEStrConsts;
|
||||
Classes, SysUtils,
|
||||
// LCL
|
||||
LCLProc, Controls, Dialogs, HelpIntfs,
|
||||
// LazUtils
|
||||
LazFileUtils, LazConfigStorage,
|
||||
// IdeIntf
|
||||
IDEDialogs,
|
||||
// IDE
|
||||
EnvironmentOpts, IDEOptionDefs, LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -21,11 +21,15 @@ unit InputFileDialog;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Math,
|
||||
// LCL
|
||||
Classes, SysUtils, Math, Forms, Controls, Dialogs, Buttons, StdCtrls,
|
||||
LazFileUtils, LazFileCache, LResources,
|
||||
Forms, Controls, Dialogs, StdCtrls, LResources,
|
||||
// LazUtils
|
||||
LazFileUtils, LazFileCache,
|
||||
// IdeIntf
|
||||
IDEDialogs,
|
||||
// IDE
|
||||
LazarusIDEStrConsts, TransferMacros, InputHistory, IDEProcs, IDEDialogs;
|
||||
LazarusIDEStrConsts, TransferMacros, InputHistory;
|
||||
|
||||
type
|
||||
TInputFileFlag = (iftDirectory, iftFilename, iftCmdLine,
|
||||
|
||||
@ -25,10 +25,15 @@ unit JumpHistoryView;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Forms, Controls, StdCtrls, Menus,
|
||||
Classes, SysUtils,
|
||||
// LCL
|
||||
Forms, Controls, StdCtrls, Menus,
|
||||
// LazUtils
|
||||
LazUTF8,
|
||||
// CodeTools
|
||||
CodeToolManager, CodeCache,
|
||||
IDEOptionDefs, EnvironmentOpts, IDEProcs, LazarusIDEStrConsts, LazUTF8,
|
||||
Project, ProjectDefs;
|
||||
// IDE
|
||||
IDEProcs, IDEOptionDefs, EnvironmentOpts, LazarusIDEStrConsts, Project, ProjectDefs;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -39,8 +39,15 @@ unit MultiPasteDlg;
|
||||
interface
|
||||
|
||||
uses
|
||||
SysUtils, Classes, StdCtrls, ButtonPanel, Forms, Clipbrd, SynEdit,
|
||||
IDEHelpIntf, InputHistory, IDEProcs, LazarusIDEStrConsts;
|
||||
SysUtils, Classes,
|
||||
// LCL
|
||||
StdCtrls, ButtonPanel, Forms, Clipbrd,
|
||||
// SynEdit
|
||||
SynEdit,
|
||||
// IdeIntf
|
||||
IDEHelpIntf,
|
||||
// IDE
|
||||
InputHistory, IDEProcs, LazarusIDEStrConsts;
|
||||
|
||||
const
|
||||
hlFormatPasteTxtBefore = 'FormatPasteTxtBefore';
|
||||
|
||||
@ -15,8 +15,7 @@ uses
|
||||
// IdeIntf
|
||||
CompOptsIntf, ProjectIntf, LazIDEIntf,
|
||||
// IDE
|
||||
frmCustomApplicationOptions, IDEProcs, LazarusIDEStrConsts,
|
||||
Project, ProjectDefs, W32Manifest;
|
||||
frmCustomApplicationOptions, LazarusIDEStrConsts, Project, W32Manifest;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -5,13 +5,14 @@ unit SynColorAttribEditor;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, Controls, StdCtrls, sysutils, ExtCtrls, Graphics, GraphUtil,
|
||||
ColorBox, LCLProc, LCLType, LCLIntf, Dialogs, Menus, Forms, Spin, SynEdit,
|
||||
SynGutterCodeFolding, SynEditTypes,
|
||||
SynEditMouseCmds, SynEditHighlighter, SynTextDrawer,
|
||||
EditorOptions,
|
||||
editor_general_options, IDEImagesIntf, LazarusIDEStrConsts, IDEProcs, typinfo,
|
||||
LazConf, SourceMarks, types, math, FPCanvas;
|
||||
Classes, Controls, sysutils, types, typinfo, math, FPCanvas,
|
||||
// LCL
|
||||
LCLProc, LCLType, LCLIntf, Forms, StdCtrls, ExtCtrls, Graphics, GraphUtil,
|
||||
ColorBox, Dialogs, Menus, Spin,
|
||||
// SynEdit
|
||||
SynEditTypes, SynTextDrawer,
|
||||
// IDE
|
||||
EditorOptions, SourceMarks, LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
|
||||
@ -77,7 +78,6 @@ type
|
||||
procedure pnlElementAttributesResize(Sender: TObject);
|
||||
procedure TextStyleRadioOnChange(Sender: TObject);
|
||||
private
|
||||
{ private declarations }
|
||||
FCurHighlightElement: TColorSchemeAttribute;
|
||||
FCurrentColorScheme: TColorSchemeLanguage;
|
||||
FOnChanged: TNotifyEvent;
|
||||
@ -88,7 +88,6 @@ type
|
||||
procedure DoChanged;
|
||||
procedure SetShowPrior(AValue: Boolean);
|
||||
public
|
||||
{ public declarations }
|
||||
constructor Create(TheOwner: TComponent); override;
|
||||
procedure Setup;
|
||||
procedure UpdateAll;
|
||||
|
||||
@ -36,8 +36,13 @@ uses
|
||||
{$IFDEF IDE_MEM_CHECK}
|
||||
MemCheck,
|
||||
{$ENDIF}
|
||||
Classes, SysUtils, Controls, Forms, Dialogs,
|
||||
LazarusIDEStrConsts, IDEDialogs;
|
||||
Classes, SysUtils,
|
||||
// LCL
|
||||
Controls, Forms, Dialogs,
|
||||
// IdeIntf
|
||||
IDEDialogs,
|
||||
// IDE
|
||||
LazarusIDEStrConsts;
|
||||
|
||||
function ShowSysVarUserOverrideDialog(var AName, AValue: string): TModalResult;
|
||||
|
||||
|
||||
@ -32,9 +32,15 @@ unit UnusedUnitsDlg;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, sysutils, LCLProc, Forms, Controls, ComCtrls, StdCtrls, ExtCtrls,
|
||||
Buttons, Dialogs, SrcEditorIntf, LazIDEIntf, IDEImagesIntf, IDEDialogs,
|
||||
CodeCache, CodeToolManager, LazarusIDEStrConsts;
|
||||
Classes, SysUtils,
|
||||
// LCL
|
||||
LCLProc, Forms, Controls, ComCtrls, StdCtrls, ExtCtrls, Buttons, Dialogs,
|
||||
// Codetools
|
||||
CodeCache, CodeToolManager,
|
||||
// IdeIntf
|
||||
SrcEditorIntf, LazIDEIntf, IDEImagesIntf, IDEDialogs,
|
||||
// IDE
|
||||
LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
|
||||
|
||||
@ -56,13 +56,13 @@ uses
|
||||
CodeToolsConfig, CodeToolManager, CodeCache, BasicCodeTools,
|
||||
FileProcs, CodeTree, CTUnitGraph,
|
||||
// IDE Interface
|
||||
NewItemIntf, ProjPackIntf, ProjectIntf,
|
||||
IDECommands, NewItemIntf, ProjPackIntf, ProjectIntf,
|
||||
PackageIntf, PackageDependencyIntf, PackageLinkIntf,
|
||||
CompOptsIntf, MenuIntf, IDEWindowIntf, IDEExternToolIntf, MacroIntf, LazIDEIntf,
|
||||
IDEMsgIntf, SrcEditorIntf, ComponentReg, PropEdits, IDEDialogs, UnitResources,
|
||||
// IDE
|
||||
IDECmdLine, LazarusIDEStrConsts, IDEProcs, ObjectLists,
|
||||
DialogProcs, IDECommands, IDEOptionDefs, EnvironmentOpts,
|
||||
DialogProcs, IDEOptionDefs, EnvironmentOpts,
|
||||
MiscOptions, InputHistory, Project, PackageEditor, AddToPackageDlg,
|
||||
PackageDefs, PackageLinks, PackageSystem, OpenInstalledPkgDlg,
|
||||
PkgGraphExplorer, BrokenDependenciesDlg, CompilerOptions, IDETranslations,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user