mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-17 18:02:38 +02:00

* Configure is now in tools - options * Allow to display files in the main tree instead of in a separate filelist, allowing a more global overview * Use icons for files/directories in tree view. * Allow to specify root directory * Split controller to separate unit * File browser reacts now on project open event and changes selected dir.
23 lines
514 B
ObjectPascal
23 lines
514 B
ObjectPascal
{ This file was automatically created by Lazarus. Do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit idefilebrowser;
|
|
|
|
{$warn 5023 off : no warning about unused units}
|
|
interface
|
|
|
|
uses
|
|
frmFileBrowser, RegIDEFileBrowser, fraconfigfilebrowser, ctrlfilebrowser, filebrowsertypes, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('RegIDEFileBrowser', @RegIDEFileBrowser.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('idefilebrowser', @Register);
|
|
end.
|