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
This commit is contained in:
Paul Giblock
2009-02-08 23:04:29 +00:00
parent 6f2cf2b4df
commit 46adbb2b34
3 changed files with 102 additions and 3 deletions

View File

@@ -100,6 +100,12 @@ instrumentSoundShaping::instrumentSoundShaping(
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" ) );
}