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_TextEditorKeyMapper.h 5.3KB

9 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  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 5 End-User License
  8. Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
  9. 27th April 2017).
  10. End User License Agreement: www.juce.com/juce-5-licence
  11. Privacy Policy: www.juce.com/juce-5-privacy-policy
  12. Or: You may also use this code under the terms of the GPL v3 (see
  13. www.gnu.org/licenses).
  14. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  15. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  16. DISCLAIMED.
  17. ==============================================================================
  18. */
  19. #pragma once
  20. //==============================================================================
  21. /** This class is used to invoke a range of text-editor navigation methods on
  22. an object, based upon a keypress event.
  23. It's currently used internally by the TextEditor and CodeEditorComponent.
  24. */
  25. template <class CallbackClass>
  26. struct TextEditorKeyMapper
  27. {
  28. /** Checks the keypress and invokes one of a range of navigation functions that
  29. the target class must implement, based on the key event.
  30. */
  31. static bool invokeKeyFunction (CallbackClass& target, const KeyPress& key)
  32. {
  33. const ModifierKeys& mods = key.getModifiers();
  34. const bool isShiftDown = mods.isShiftDown();
  35. const bool ctrlOrAltDown = mods.isCtrlDown() || mods.isAltDown();
  36. int numCtrlAltCommandKeys = 0;
  37. if (mods.isCtrlDown()) ++numCtrlAltCommandKeys;
  38. if (mods.isAltDown()) ++numCtrlAltCommandKeys;
  39. if (key == KeyPress (KeyPress::downKey, ModifierKeys::ctrlModifier, 0) && target.scrollUp()) return true;
  40. if (key == KeyPress (KeyPress::upKey, ModifierKeys::ctrlModifier, 0) && target.scrollDown()) return true;
  41. #if JUCE_MAC
  42. if (mods.isCommandDown() && ! ctrlOrAltDown)
  43. {
  44. if (key.isKeyCode (KeyPress::upKey)) return target.moveCaretToTop (isShiftDown);
  45. if (key.isKeyCode (KeyPress::downKey)) return target.moveCaretToEnd (isShiftDown);
  46. if (key.isKeyCode (KeyPress::leftKey)) return target.moveCaretToStartOfLine (isShiftDown);
  47. if (key.isKeyCode (KeyPress::rightKey)) return target.moveCaretToEndOfLine (isShiftDown);
  48. }
  49. if (mods.isCommandDown())
  50. ++numCtrlAltCommandKeys;
  51. #endif
  52. if (numCtrlAltCommandKeys < 2)
  53. {
  54. if (key.isKeyCode (KeyPress::leftKey)) return target.moveCaretLeft (ctrlOrAltDown, isShiftDown);
  55. if (key.isKeyCode (KeyPress::rightKey)) return target.moveCaretRight (ctrlOrAltDown, isShiftDown);
  56. if (key.isKeyCode (KeyPress::homeKey)) return ctrlOrAltDown ? target.moveCaretToTop (isShiftDown)
  57. : target.moveCaretToStartOfLine (isShiftDown);
  58. if (key.isKeyCode (KeyPress::endKey)) return ctrlOrAltDown ? target.moveCaretToEnd (isShiftDown)
  59. : target.moveCaretToEndOfLine (isShiftDown);
  60. }
  61. if (numCtrlAltCommandKeys == 0)
  62. {
  63. if (key.isKeyCode (KeyPress::upKey)) return target.moveCaretUp (isShiftDown);
  64. if (key.isKeyCode (KeyPress::downKey)) return target.moveCaretDown (isShiftDown);
  65. if (key.isKeyCode (KeyPress::pageUpKey)) return target.pageUp (isShiftDown);
  66. if (key.isKeyCode (KeyPress::pageDownKey)) return target.pageDown (isShiftDown);
  67. }
  68. if (key == KeyPress ('c', ModifierKeys::commandModifier, 0)
  69. || key == KeyPress (KeyPress::insertKey, ModifierKeys::ctrlModifier, 0))
  70. return target.copyToClipboard();
  71. if (key == KeyPress ('x', ModifierKeys::commandModifier, 0)
  72. || key == KeyPress (KeyPress::deleteKey, ModifierKeys::shiftModifier, 0))
  73. return target.cutToClipboard();
  74. if (key == KeyPress ('v', ModifierKeys::commandModifier, 0)
  75. || key == KeyPress (KeyPress::insertKey, ModifierKeys::shiftModifier, 0))
  76. return target.pasteFromClipboard();
  77. // NB: checking for delete must happen after the earlier check for shift + delete
  78. if (numCtrlAltCommandKeys < 2)
  79. {
  80. if (key.isKeyCode (KeyPress::backspaceKey)) return target.deleteBackwards (ctrlOrAltDown);
  81. if (key.isKeyCode (KeyPress::deleteKey)) return target.deleteForwards (ctrlOrAltDown);
  82. }
  83. if (key == KeyPress ('a', ModifierKeys::commandModifier, 0))
  84. return target.selectAll();
  85. if (key == KeyPress ('z', ModifierKeys::commandModifier, 0))
  86. return target.undo();
  87. if (key == KeyPress ('y', ModifierKeys::commandModifier, 0)
  88. || key == KeyPress ('z', ModifierKeys::commandModifier | ModifierKeys::shiftModifier, 0))
  89. return target.redo();
  90. return false;
  91. }
  92. };