juce_ButtonPropertyComponent.cpp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. ButtonPropertyComponent::ButtonPropertyComponent (const String& name,
  18. const bool triggerOnMouseDown)
  19. : PropertyComponent (name)
  20. {
  21. addAndMakeVisible (button);
  22. button.setTriggeredOnMouseDown (triggerOnMouseDown);
  23. button.addListener (this);
  24. }
  25. ButtonPropertyComponent::~ButtonPropertyComponent()
  26. {
  27. }
  28. void ButtonPropertyComponent::refresh()
  29. {
  30. button.setButtonText (getButtonText());
  31. }
  32. void ButtonPropertyComponent::buttonClicked (Button*)
  33. {
  34. buttonClicked();
  35. }