Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

juce_MouseInactivityDetector.cpp 2.3KB

9 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI 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. MouseInactivityDetector::MouseInactivityDetector (Component& c)
  18. : targetComp (c), delayMs (1500), toleranceDistance (15), isActive (true)
  19. {
  20. targetComp.addMouseListener (this, true);
  21. }
  22. MouseInactivityDetector::~MouseInactivityDetector()
  23. {
  24. targetComp.removeMouseListener (this);
  25. }
  26. void MouseInactivityDetector::setDelay (int newDelay) noexcept { delayMs = newDelay; }
  27. void MouseInactivityDetector::setMouseMoveTolerance (int newDistance) noexcept { toleranceDistance = newDistance; }
  28. void MouseInactivityDetector::addListener (Listener* l) { listenerList.add (l); }
  29. void MouseInactivityDetector::removeListener (Listener* l) { listenerList.remove (l); }
  30. void MouseInactivityDetector::timerCallback()
  31. {
  32. setActive (false);
  33. }
  34. void MouseInactivityDetector::wakeUp (const MouseEvent& e, bool alwaysWake)
  35. {
  36. const Point<int> newPos (e.getEventRelativeTo (&targetComp).getPosition());
  37. if ((! isActive) && (alwaysWake || e.source.isTouch() || newPos.getDistanceFrom (lastMousePos) > toleranceDistance))
  38. setActive (true);
  39. if (lastMousePos != newPos)
  40. {
  41. lastMousePos = newPos;
  42. startTimer (delayMs);
  43. }
  44. }
  45. void MouseInactivityDetector::setActive (bool b)
  46. {
  47. if (isActive != b)
  48. {
  49. isActive = b;
  50. listenerList.call (b ? &Listener::mouseBecameActive
  51. : &Listener::mouseBecameInactive);
  52. }
  53. }