| 82 | }; |
| 83 | |
| 84 | class MinMaxNoteSlider : public Component |
| 85 | { |
| 86 | public: |
| 87 | MinMaxNoteSlider(RangedAudioParameter& inMinValue, RangedAudioParameter& inMaxValue); |
| 88 | |
| 89 | void resized() override; |
| 90 | |
| 91 | void paint(Graphics& g) override; |
| 92 | |
| 93 | void setTooltip(const String& inTooltip); |
| 94 | |
| 95 | private: |
| 96 | juce::Slider mSlider; |
| 97 | std::unique_ptr<TwoValueAttachment> mAttachment; |
| 98 | }; |
| 99 | |
| 100 | #endif // TwoValueSlider_h |
nothing calls this directly
no outgoing calls
no test coverage detected