less header-dependencies and moved some type-definitions

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1373 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-07-26 19:06:58 +00:00
parent 30756e7399
commit 1a2123f69d
12 changed files with 46 additions and 18 deletions

View File

@@ -76,3 +76,17 @@ void serializingObject::setHook( serializingObjectHook * _hook )
}
void serializingObject::saveSettings( QDomDocument & _doc, QDomElement & _this )
{
}
void serializingObject::loadSettings( const QDomElement & _this )
{
}

View File

@@ -101,11 +101,11 @@ instrumentTrack::instrumentTrack( trackContainer * _tc ) :
this, this ),
m_notes(),
m_baseNoteModel( 0, 0, KeysPerOctave * NumOctaves - 1, this ),
m_volumeModel( DefaultVolume, MinVolume, MaxVolume, 1.0f, this,
m_volumeModel( DefaultVolume, MinVolume, MaxVolume, this,
tr( "Volume" ) ),
m_panningModel( DefaultPanning, PanningLeft, PanningRight, 1.0f,
m_panningModel( DefaultPanning, PanningLeft, PanningRight,
this, tr( "Panning" ) ),
m_pitchModel( 0, -100, 100, 1, this, tr( "Pitch" ) ),
m_pitchModel( 0, -100, 100, this, tr( "Pitch" ) ),
m_effectChannelModel( 0, 0, NumFxChannels, this, tr( "FX channel" ) ),
m_instrument( NULL ),
m_soundShaping( this ),