Mercurial > hg > svgui
comparison widgets/PluginParameterDialog.h @ 810:b68af2be4545 tonioni
Merge from branch warnfix_no_size_t
author | Chris Cannam |
---|---|
date | Wed, 18 Jun 2014 13:42:25 +0100 |
parents | e4773943c9c1 |
children | a18e78b9c78b |
comparison
equal
deleted
inserted
replaced
802:584b11df8e4f | 810:b68af2be4545 |
---|---|
68 QString getInputModel() const; | 68 QString getInputModel() const; |
69 bool getSelectionOnly() const; | 69 bool getSelectionOnly() const; |
70 | 70 |
71 //!!! merge with PluginTransform::ExecutionContext | 71 //!!! merge with PluginTransform::ExecutionContext |
72 | 72 |
73 void getProcessingParameters(size_t &blockSize) const; | 73 void getProcessingParameters(int &blockSize) const; |
74 void getProcessingParameters(size_t &stepSize, size_t &blockSize, | 74 void getProcessingParameters(int &stepSize, int &blockSize, |
75 WindowType &windowType) const; | 75 WindowType &windowType) const; |
76 | 76 |
77 int exec(); | 77 int exec(); |
78 | 78 |
79 signals: | 79 signals: |
94 | 94 |
95 protected: | 95 protected: |
96 Vamp::PluginBase *m_plugin; | 96 Vamp::PluginBase *m_plugin; |
97 | 97 |
98 int m_channel; | 98 int m_channel; |
99 size_t m_stepSize; | 99 int m_stepSize; |
100 size_t m_blockSize; | 100 int m_blockSize; |
101 | 101 |
102 WindowType m_windowType; | 102 WindowType m_windowType; |
103 PluginParameterBox *m_parameterBox; | 103 PluginParameterBox *m_parameterBox; |
104 | 104 |
105 QLabel *m_outputLabel; | 105 QLabel *m_outputLabel; |