Layout parameter components manually...Add parameter for input pass through. etc

This commit is contained in:
xenakios
2017-12-22 22:35:02 +02:00
parent 0052c77bbb
commit da6afcf05f
5 changed files with 105 additions and 32 deletions

View File

@ -317,6 +317,19 @@ public:
}
};
class ParamLayoutInfo
{
public:
ParamLayoutInfo() {}
ParamLayoutInfo(int c, int x, int y, int w, int h) :
m_comp(c), m_col(x), m_row(y), m_w(w), m_h(h) {}
int m_comp = 0;
int m_col = 0;
int m_row = 0;
int m_w = 1;
int m_h = 1;
};
class PaulstretchpluginAudioProcessorEditor : public AudioProcessorEditor,
public MultiTimer
{