Merge branch 'stable-1.1'
Conflicts: include/Effect.h include/Plugin.h
This commit is contained in:
@@ -32,6 +32,7 @@
|
||||
|
||||
class AutomationTrack : public Track
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
AutomationTrack( TrackContainer* tc, bool _hidden = false );
|
||||
virtual ~AutomationTrack();
|
||||
|
||||
@@ -40,6 +40,7 @@ class EffectControls;
|
||||
class EXPORT Effect : public Plugin
|
||||
{
|
||||
MM_OPERATORS
|
||||
Q_OBJECT
|
||||
public:
|
||||
Effect( const Plugin::Descriptor * _desc,
|
||||
Model * _parent,
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -38,6 +38,7 @@ class QToolButton;
|
||||
|
||||
class InstrumentMidiIOView : public QWidget, public ModelView
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
InstrumentMidiIOView( QWidget* parent );
|
||||
virtual ~InstrumentMidiIOView();
|
||||
|
||||
@@ -35,6 +35,7 @@ class LcdSpinBox;
|
||||
|
||||
class MeterDialog : public QWidget, public ModelView
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
MeterDialog( QWidget * _parent, bool _simple = false );
|
||||
virtual ~MeterDialog();
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user