MMFltReg.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:3k
- {========================================================================}
- {= (c) 1995-98 SwiftSoft Ronald Dittrich =}
- {========================================================================}
- {= All Rights Reserved =}
- {========================================================================}
- {= D 01099 Dresden = Tel.: +0351-8012255 =}
- {= Loewenstr.7a = info@swiftsoft.de =}
- {========================================================================}
- {= Actual versions on http://www.swiftsoft.de/mmtools.html =}
- {========================================================================}
- {= This code is for reference purposes only and may not be copied or =}
- {= distributed in any format electronic or otherwise except one copy =}
- {= for backup purposes. =}
- {= =}
- {= No Delphi Component Kit or Component individually or in a collection=}
- {= subclassed or otherwise from the code in this unit, or associated =}
- {= .pas, .dfm, .dcu, .asm or .obj files may be sold or distributed =}
- {= without express permission from SwiftSoft. =}
- {= =}
- {= For more licence informations please refer to the associated =}
- {= HelpFile. =}
- {========================================================================}
- {= $Date: 29.01.98 - 22:06:11 $ =}
- {========================================================================}
- unit MMFltReg;
- {$I COMPILER.INC}
- Interface
- Procedure Register;
- Implementation
- uses
- {$IFDEF DELPHI6}
- DesignIntf,
- DesignEditors,
- {$ELSE}
- DsgnIntf,
- {$ENDIF}
- Controls,
- Classes,
- SysUtils,
- MMDesign,
- MMIDE,
- MMSpectr,
- MMPeak,
- MMFIR,
- MMFIRDlg,
- MMEQ,
- MMEQDlg,
- MMFltPrp,
- MMStretch;
- {=========================================================================}
- procedure Register;
- begin
- RegisterComponents('MMDSP',[TMMPeakDetect,
- TMMFIRFilterDialog,
- TMMFIRFilter,
- TMMFIRResponse,
- TMMEqualizerDialog,
- TMMEqualizer{,
- TMMTimeStretch}]);
- { C++Builder 1.0 makes problems here !? }
- {$IFNDEF CBUILDER}
- RegisterPropertyEditor(TypeInfo(TMMEQFilterList), TMMEqualizer, 'Filters', TMMEQFilterProperty);
- {$ENDIF}
- RegisterComponentEditor(TMMEqualizer, TMMEQEditor);
- {$IFNDEF CBUILDER}
- RegisterPropertyEditor(TypeInfo(TMMFIRFilterList), TMMFIRFilter, 'Filters', TMMFIRFilterProperty);
- {$ENDIF}
- RegisterComponentEditor(TMMFIRFilter, TMMFIREditor);
- end;
- {=========================================================================}
- initialization
- RegisterProperty(ptOutput,'DSP',TMMEqualizer,'Spectrum',TMMSpectrum,nil);
- RegisterProperty(ptOutput,'DSP',TMMFIRFilter,'Spectrum',TMMSpectrum,nil);
- RegisterProperty(ptOutput,'DSP',TMMFIRFilter,'Response',TMMFIRResponse,nil);
- end.