View Issue Details

IDProjectCategoryView StatusLast Update
0003546JEDI VCL00 JVCL Componentspublic2006-03-10 14:01
ReporterLogiqualisAssigned ToAHUser 
PrioritynormalSeverityfeatureReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.10 
Target VersionFixed in Version3.30 
Summary0003546: Missing CompressionLevel in JvZlibMultiple ?
DescriptionHello,

  We use the very good TJvZlibMultiple, and we just suggest a little improvement : adding a CompressionLevel property in order to define the same name property in the internally used TJclZLibCompressStream. Or (and?) an event if you want.

Thanks.
Additional Information  TJvZlibMultiple = class(TJvComponent)
  (...)
  published
    property CompressionLevel: Integer read FCompressionLevel write FCompressionLevel;
  (...)
  end;

implementation

procedure TJvZlibMultiple.AddFile(FileName, Directory, FilePath: string;
  DestStream: TStream);
(...)
  try
    ZStream := TJclZLibCompressStream.Create(Stream, CompressionLevel);
    try // is it possible to use it here ? ^
(...)
end;
TagsNo tags attached.

Activities

AHUser

2006-03-10 14:01

developer   ~0008655

Added CompressionLevel property default -1. (CVS)

Issue History

Date Modified Username Field Change
2006-03-01 02:58 Logiqualis New Issue
2006-03-10 14:01 AHUser Status new => resolved
2006-03-10 14:01 AHUser Resolution open => fixed
2006-03-10 14:01 AHUser Assigned To => AHUser
2006-03-10 14:01 AHUser Note Added: 0008655