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_ApplicationCommandInfo.cpp 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2022 - Raw Material Software Limited
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 7 End-User License
  8. Agreement and JUCE Privacy Policy.
  9. End User License Agreement: www.juce.com/juce-7-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. namespace juce
  19. {
  20. ApplicationCommandInfo::ApplicationCommandInfo (const CommandID cid) noexcept
  21. : commandID (cid), flags (0)
  22. {
  23. }
  24. void ApplicationCommandInfo::setInfo (const String& shortName_,
  25. const String& description_,
  26. const String& categoryName_,
  27. const int flags_) noexcept
  28. {
  29. shortName = shortName_;
  30. description = description_;
  31. categoryName = categoryName_;
  32. flags = flags_;
  33. }
  34. void ApplicationCommandInfo::setActive (const bool b) noexcept
  35. {
  36. if (b)
  37. flags &= ~isDisabled;
  38. else
  39. flags |= isDisabled;
  40. }
  41. void ApplicationCommandInfo::setTicked (const bool b) noexcept
  42. {
  43. if (b)
  44. flags |= isTicked;
  45. else
  46. flags &= ~isTicked;
  47. }
  48. void ApplicationCommandInfo::addDefaultKeypress (const int keyCode, ModifierKeys modifiers) noexcept
  49. {
  50. defaultKeypresses.add (KeyPress (keyCode, modifiers, 0));
  51. }
  52. } // namespace juce