reduced header-dependencies

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1406 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-07-28 21:39:08 +00:00
parent 38e64dd329
commit 257e60ab37
53 changed files with 75 additions and 51 deletions

View File

@@ -27,7 +27,6 @@
#define _AUTOMATABLE_SLIDER_H
#include <QtGui/QSlider>
#include <QtXml/QDomElement>
#include "automatable_model_view.h"

View File

@@ -27,8 +27,6 @@
#ifndef _EFFECT_H
#define _EFFECT_H
#include <Qt/QtXml>
#include "plugin.h"
#include "engine.h"
#include "mixer.h"

View File

@@ -25,7 +25,7 @@
#ifndef _METER_MODEL_H
#define _METER_MODEL_H
#include "lcd_spinbox.h"
#include "automatable_model.h"
class meterModel : public model
@@ -46,8 +46,8 @@ public:
private:
lcdSpinBoxModel m_numeratorModel;
lcdSpinBoxModel m_denominatorModel;
intModel m_numeratorModel;
intModel m_denominatorModel;
friend class meterDialog;

View File

@@ -26,7 +26,7 @@
#ifndef _MMP_H
#define _MMP_H
#include <Qt/QtXml>
#include <QtXml/QDomDocument>
#include "export.h"
#include "types.h"

View File

@@ -22,8 +22,8 @@
*
*/
#ifndef _PCH_H_hsd
#define _PCH_H_hsd
#ifndef _PCH_H
#define _PCH_H
#include <Qt/QtCore>
#include <Qt/QtGui>

View File

@@ -30,8 +30,6 @@
#include "track_container.h"
#include "automatable_model.h"
#include "automatable_slider.h"
#include "lcd_spinbox.h"
#include "controller.h"
#include "meter_model.h"
@@ -259,11 +257,11 @@ private:
automationTrack * m_globalAutomationTrack;
lcdSpinBoxModel m_tempoModel;
intModel m_tempoModel;
meterModel m_timeSigModel;
int m_oldTicksPerTact;
sliderModel m_masterVolumeModel;
sliderModel m_masterPitchModel;
intModel m_masterVolumeModel;
intModel m_masterPitchModel;
controllerVector m_controllers;