The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

125 lines
5.6KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. #ifndef __JUCE_TEXTEDITORKEYMAPPER_JUCEHEADER__
  19. #define __JUCE_TEXTEDITORKEYMAPPER_JUCEHEADER__
  20. #include "juce_KeyPress.h"
  21. //==============================================================================
  22. /** This class is used to invoke a range of text-editor navigation methods on
  23. an object, based upon a keypress event.
  24. It's currently used internally by the TextEditor and CodeEditorComponent.
  25. */
  26. template <class CallbackClass>
  27. struct TextEditorKeyMapper
  28. {
  29. /** Checks the keypress and invokes one of a range of navigation functions that
  30. the target class must implement, based on the key event.
  31. */
  32. static bool invokeKeyFunction (CallbackClass& target, const KeyPress& key)
  33. {
  34. const ModifierKeys& mods = key.getModifiers();
  35. const bool isShiftDown = mods.isShiftDown();
  36. const bool ctrlOrAltDown = mods.isCtrlDown() || mods.isAltDown();
  37. int numCtrlAltCommandKeys = 0;
  38. if (mods.isCtrlDown()) ++numCtrlAltCommandKeys;
  39. if (mods.isAltDown()) ++numCtrlAltCommandKeys;
  40. if (key == KeyPress (KeyPress::downKey, ModifierKeys::ctrlModifier, 0) && target.scrollUp()) return true;
  41. if (key == KeyPress (KeyPress::upKey, ModifierKeys::ctrlModifier, 0) && target.scrollDown()) return true;
  42. #if JUCE_MAC
  43. if (mods.isCommandDown() && ! ctrlOrAltDown)
  44. {
  45. if (key.isKeyCode (KeyPress::upKey)) return target.moveCaretToTop (isShiftDown);
  46. if (key.isKeyCode (KeyPress::downKey)) return target.moveCaretToEnd (isShiftDown);
  47. if (key.isKeyCode (KeyPress::leftKey)) return target.moveCaretToStartOfLine (isShiftDown);
  48. if (key.isKeyCode (KeyPress::rightKey)) return target.moveCaretToEndOfLine (isShiftDown);
  49. }
  50. if (mods.isCommandDown())
  51. ++numCtrlAltCommandKeys;
  52. #endif
  53. if (numCtrlAltCommandKeys < 2)
  54. {
  55. if (key.isKeyCode (KeyPress::leftKey)) return target.moveCaretLeft (ctrlOrAltDown, isShiftDown);
  56. if (key.isKeyCode (KeyPress::rightKey)) return target.moveCaretRight (ctrlOrAltDown, isShiftDown);
  57. if (key.isKeyCode (KeyPress::homeKey)) return ctrlOrAltDown ? target.moveCaretToTop (isShiftDown)
  58. : target.moveCaretToStartOfLine (isShiftDown);
  59. if (key.isKeyCode (KeyPress::endKey)) return ctrlOrAltDown ? target.moveCaretToEnd (isShiftDown)
  60. : target.moveCaretToEndOfLine (isShiftDown);
  61. }
  62. if (numCtrlAltCommandKeys == 0)
  63. {
  64. if (key.isKeyCode (KeyPress::upKey)) return target.moveCaretUp (isShiftDown);
  65. if (key.isKeyCode (KeyPress::downKey)) return target.moveCaretDown (isShiftDown);
  66. if (key.isKeyCode (KeyPress::pageUpKey)) return target.pageUp (isShiftDown);
  67. if (key.isKeyCode (KeyPress::pageDownKey)) return target.pageDown (isShiftDown);
  68. }
  69. if (numCtrlAltCommandKeys < 2)
  70. {
  71. if (key.isKeyCode (KeyPress::backspaceKey)) return target.deleteBackwards (ctrlOrAltDown);
  72. if (key.isKeyCode (KeyPress::deleteKey)) return target.deleteForwards (ctrlOrAltDown);
  73. }
  74. if (key == KeyPress ('c', ModifierKeys::commandModifier, 0)
  75. || key == KeyPress (KeyPress::insertKey, ModifierKeys::ctrlModifier, 0))
  76. return target.copyToClipboard();
  77. if (key == KeyPress ('x', ModifierKeys::commandModifier, 0)
  78. || key == KeyPress (KeyPress::deleteKey, ModifierKeys::shiftModifier, 0))
  79. return target.cutToClipboard();
  80. if (key == KeyPress ('v', ModifierKeys::commandModifier, 0)
  81. || key == KeyPress (KeyPress::insertKey, ModifierKeys::shiftModifier, 0))
  82. return target.pasteFromClipboard();
  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. };
  93. #endif // __JUCE_TEXTEDITORKEYMAPPER_JUCEHEADER__