mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 10:41:47 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| { This file was automatically created by Lazarus. Do not edit!
 | |
|   This source is only used to compile and install the package.
 | |
|  }
 | |
| 
 | |
| unit IDEIntf;
 | |
| 
 | |
| {$warn 5023 off : no warning about unused units}
 | |
| interface
 | |
| 
 | |
| uses
 | |
|   ActionsEditor, ActionsEditorStd, BaseIDEIntf, CheckGroupEditorDlg, 
 | |
|   CheckListboxEditorDlg, CollectionPropEditForm, ColumnDlg, ComponentEditors, 
 | |
|   ComponentReg, ComponentTreeView, CompOptsIntf, DBPropEdits, 
 | |
|   EditorSyntaxHighlighterDef, fieldseditor, fieldslist, FileFilterPropEditor, 
 | |
|   FormEditingIntf, frmSelectProps, GraphicPropEdit, GraphPropEdits, 
 | |
|   HeaderControlPropEdit, HelpFPDoc, IDECommands, IDEDialogs, 
 | |
|   IDEExternToolIntf, IDEHelpIntf, IDEImagesIntf, IDEMsgIntf, IDEOptionsIntf, 
 | |
|   IDETextConverter, IDEUtils, IDEWindowIntf, ImageListEditor, 
 | |
|   KeyValPropEditDlg, LazIDEIntf, LazStringGridEdit, ListViewPropEdit, 
 | |
|   MacroDefIntf, MacroIntf, MaskPropEdit, MenuIntf, NewField, NewItemIntf, 
 | |
|   ObjectInspector, ObjInspStrConsts, OIFavoriteProperties, PackageIntf, 
 | |
|   ProjectIntf, ProjectResourcesIntf, PropEdits, PropEditUtils, SrcEditorIntf, 
 | |
|   StatusBarPropEdit, StringsPropEditDlg, TextTools, TreeViewPropEdit, 
 | |
|   UnitResources, ProjPackIntf, DBGridColumnsPropEditForm, ToolBarIntf, 
 | |
|   ChangeParentDlg, PackageDependencyIntf, PackageLinkIntf, LazarusPackageIntf;
 | |
| 
 | |
| implementation
 | |
| 
 | |
| procedure Register;
 | |
| begin
 | |
|   RegisterUnit('IDEWindowIntf', @IDEWindowIntf.Register);
 | |
| end;
 | |
| 
 | |
| initialization
 | |
|   RegisterPackage('IDEIntf', @Register);
 | |
| end.
 | 
