Home | History | Annotate | Download | only in WebCoreSupport

Lines Matching defs:ShiftKey

229 static const unsigned ShiftKey = 1 << 2;
245 { VK_LEFT, ShiftKey, "MoveLeftAndModifySelection" },
247 { VK_LEFT, CtrlKey | ShiftKey, "MoveWordLeftAndModifySelection" },
249 { VK_RIGHT, ShiftKey, "MoveRightAndModifySelection" },
251 { VK_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" },
253 { VK_UP, ShiftKey, "MoveUpAndModifySelection" },
254 { VK_PRIOR, ShiftKey, "MovePageUpAndModifySelection" },
256 { VK_DOWN, ShiftKey, "MoveDownAndModifySelection" },
257 { VK_NEXT, ShiftKey, "MovePageDownAndModifySelection" },
261 { VK_HOME, ShiftKey, "MoveToBeginningOfLineAndModifySelection" },
263 { VK_HOME, CtrlKey | ShiftKey, "MoveToBeginningOfDocumentAndModifySelection" },
266 { VK_END, ShiftKey, "MoveToEndOfLineAndModifySelection" },
268 { VK_END, CtrlKey | ShiftKey, "MoveToEndOfDocumentAndModifySelection" },
271 { VK_BACK, ShiftKey, "DeleteBackward" },
281 { VK_TAB, ShiftKey, "InsertBacktab" },
285 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" },
294 { VK_DELETE, ShiftKey, "Cut" },
295 { VK_INSERT, ShiftKey, "Paste" },
297 { 'Z', CtrlKey | ShiftKey, "Redo" }
302 { '\t', ShiftKey, "InsertBacktab" },
306 { '\r', AltKey | ShiftKey, "InsertNewline" }
328 if (event->shiftKey())
329 modifiers |= ShiftKey;
359 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
365 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
371 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
377 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,