juce_SliderPropertyComponent.cpp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. SliderPropertyComponent::SliderPropertyComponent (const String& name,
  18. const double rangeMin,
  19. const double rangeMax,
  20. const double interval,
  21. const double skewFactor)
  22. : PropertyComponent (name)
  23. {
  24. addAndMakeVisible (slider);
  25. slider.setRange (rangeMin, rangeMax, interval);
  26. slider.setSkewFactor (skewFactor);
  27. slider.setSliderStyle (Slider::LinearBar);
  28. slider.addListener (this);
  29. }
  30. SliderPropertyComponent::SliderPropertyComponent (const Value& valueToControl,
  31. const String& name,
  32. const double rangeMin,
  33. const double rangeMax,
  34. const double interval,
  35. const double skewFactor)
  36. : PropertyComponent (name)
  37. {
  38. addAndMakeVisible (slider);
  39. slider.setRange (rangeMin, rangeMax, interval);
  40. slider.setSkewFactor (skewFactor);
  41. slider.setSliderStyle (Slider::LinearBar);
  42. slider.getValueObject().referTo (valueToControl);
  43. }
  44. SliderPropertyComponent::~SliderPropertyComponent()
  45. {
  46. }
  47. void SliderPropertyComponent::setValue (const double /*newValue*/)
  48. {
  49. }
  50. double SliderPropertyComponent::getValue() const
  51. {
  52. return slider.getValue();
  53. }
  54. void SliderPropertyComponent::refresh()
  55. {
  56. slider.setValue (getValue(), dontSendNotification);
  57. }
  58. void SliderPropertyComponent::sliderValueChanged (Slider*)
  59. {
  60. if (getValue() != slider.getValue())
  61. setValue (slider.getValue());
  62. }