Home | History | Annotate | Download | only in src

Lines Matching refs:CtrlKey

373 static const unsigned CtrlKey = 1 << 0;
412 { VKEY_LEFT, CtrlKey, "MoveWordLeft" },
413 { VKEY_LEFT, CtrlKey | ShiftKey,
423 { VKEY_RIGHT, CtrlKey, "MoveWordRight" },
424 { VKEY_RIGHT, CtrlKey | ShiftKey,
452 { VKEY_HOME, CtrlKey, "MoveToBeginningOfDocument" },
453 { VKEY_HOME, CtrlKey | ShiftKey,
463 { VKEY_END, CtrlKey, "MoveToEndOfDocument" },
464 { VKEY_END, CtrlKey | ShiftKey,
479 { VKEY_BACK, CtrlKey, "DeleteWordBackward" },
480 { VKEY_DELETE, CtrlKey, "DeleteWordForward" },
482 { 'B', CtrlKey, "ToggleBold" },
483 { 'I', CtrlKey, "ToggleItalic" },
484 { 'U', CtrlKey, "ToggleUnderline" },
486 { VKEY_OEM_PERIOD, CtrlKey, "Cancel" },
490 { VKEY_RETURN, CtrlKey, "InsertNewline" },
494 { VKEY_INSERT, CtrlKey, "Copy" },
500 { 'C', CtrlKey, "Copy" },
501 { 'V', CtrlKey, "Paste" },
502 { 'V', CtrlKey | ShiftKey, "PasteAndMatchStyle" },
503 { 'X', CtrlKey, "Cut" },
504 { 'A', CtrlKey, "SelectAll" },
505 { 'Z', CtrlKey, "Undo" },
506 { 'Z', CtrlKey | ShiftKey, "Redo" },
507 { 'Y', CtrlKey, "Redo" },
515 { '\r', CtrlKey, "InsertNewline" },
550 if (keyEvent->ctrlKey())
551 modifiers |= CtrlKey;
628 if (evt->keyEvent()->ctrlKey() && !evt->keyEvent()->altKey())