Merge branch 'stable-1.1'

Conflicts:
	include/Effect.h
	include/Plugin.h
This commit is contained in:
Vesa
2014-11-25 21:23:57 +02:00
56 changed files with 324 additions and 179 deletions

View File

@@ -32,6 +32,7 @@
class AutomationTrack : public Track
{
Q_OBJECT
public:
AutomationTrack( TrackContainer* tc, bool _hidden = false );
virtual ~AutomationTrack();

View File

@@ -40,6 +40,7 @@ class EffectControls;
class EXPORT Effect : public Plugin
{
MM_OPERATORS
Q_OBJECT
public:
Effect( const Plugin::Descriptor * _desc,
Model * _parent,

View File

@@ -82,6 +82,7 @@ class FxChannel : public ThreadableJob
class FxRoute : public QObject
{
Q_OBJECT
public:
FxRoute( FxChannel * from, FxChannel * to, float amount );
virtual ~FxRoute();
@@ -120,8 +121,9 @@ class FxRoute : public QObject
};
class EXPORT FxMixer : public JournallingObject, public Model
class EXPORT FxMixer : public Model, public JournallingObject
{
Q_OBJECT
public:
FxMixer();
virtual ~FxMixer();

View File

@@ -38,6 +38,7 @@ class QToolButton;
class InstrumentMidiIOView : public QWidget, public ModelView
{
Q_OBJECT
public:
InstrumentMidiIOView( QWidget* parent );
virtual ~InstrumentMidiIOView();

View File

@@ -35,6 +35,7 @@ class LcdSpinBox;
class MeterDialog : public QWidget, public ModelView
{
Q_OBJECT
public:
MeterDialog( QWidget * _parent, bool _simple = false );
virtual ~MeterDialog();

View File

@@ -41,9 +41,10 @@ class PluginView;
class AutomatableModel;
class EXPORT Plugin : public JournallingObject, public Model
class EXPORT Plugin : public Model, public JournallingObject
{
MM_OPERATORS
Q_OBJECT
public:
enum PluginTypes
{