doublecmd/components/viewer/viewerpackage.pas
cobines a86c3d7e71 UPD: Several updates to viewer:
- Allow using variable width font.
- Fixed search next, allow searching backwards, highlight found text.
- Fixed highlighting lines with TABs.
- Fixed handling of wide character encodings (UTF-16). Added support for UTF-32.
- Added auto-detection of file encoding.
- Added handling of Unicode files with BOM.
2009-12-02 11:53:43 +00:00

21 lines
420 B
ObjectPascal

{ This file was automatically created by Lazarus. do not edit !
This source is only used to compile and install the package.
}
unit viewerpackage;
interface
uses
ViewerControl, UnicodeUtils, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('ViewerControl', @ViewerControl.Register);
end;
initialization
RegisterPackage('viewerpackage', @Register);
end.