MCPcopy Create free account
hub / github.com/andrewreeman/SpectralSuite / SliderContainer

Method SliderContainer

FrequencyShift/Source/SliderContainer.cpp:3–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include "SliderContainer.h"
2
3SliderContainer::SliderContainer(const std::shared_ptr<FrequencyShiftPluginParameters> &valueTreeState, const Colour textColour, const int textBoxHeight) :
4 freqSlider(valueTreeState, textColour, textBoxHeight), scaleSlider(valueTreeState, textColour, textBoxHeight)
5{
6 this->pluginParameters = valueTreeState;
7 addAndMakeVisible(freqSlider);
8 addAndMakeVisible(scaleSlider);
9}
10
11SliderContainer::~SliderContainer() = default;
12

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected