A header component to display titles for the matrix columns.
| 19 | // A header component to display titles for the matrix columns. |
| 20 | // |
| 21 | class ModulationMatrixHeader : public juce::Component |
| 22 | { |
| 23 | public: |
| 24 | ModulationMatrixHeader(); |
| 25 | void resized() override; |
| 26 | |
| 27 | private: |
| 28 | juce::Label sourceLabel; |
| 29 | juce::Label amountLabel; |
| 30 | juce::Label polarityLabel; |
| 31 | juce::Label bypassLabel; |
| 32 | juce::Label destinationLabel; |
| 33 | }; |
| 34 | |
| 35 | // |
| 36 | // A single row in our modulation matrix UI. |
nothing calls this directly
no outgoing calls
no test coverage detected