Initial addition of Stefan Fendt's RC filters, updated and fixed code style.

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@2011 0778d3d1-df1d-0410-868b-ea421aaaa00d
(cherry picked from commit 46adbb2b34)
This commit is contained in:
Paul Giblock
2009-02-08 23:04:29 +00:00
committed by Tobias Doerffel
parent 8c1019cdae
commit 4712804b28
2 changed files with 92 additions and 3 deletions

View File

@@ -87,6 +87,9 @@ InstrumentSoundShaping::InstrumentSoundShaping(
m_filterModel.addItem( tr( "Allpass" ), new PixmapLoader( "filter_ap" ) );
m_filterModel.addItem( tr( "Moog" ), new PixmapLoader( "filter_lp" ) );
m_filterModel.addItem( tr( "2x LowPass" ), new PixmapLoader( "filter_2lp" ) );
m_filterModel.addItem( tr( "RC LowPass" ), new PixmapLoader( "filter_lp" ) );
m_filterModel.addItem( tr( "RC BandPass" ), new PixmapLoader( "filter_bp" ) );
m_filterModel.addItem( tr( "RC HighPass" ), new PixmapLoader( "filter_hp" ) );
}