Home | History | Annotate | Download | only in WebCoreSupport

Lines Matching refs:ShiftKey

230 static const unsigned ShiftKey = 1 << 2;
246 { VK_LEFT, ShiftKey, "MoveLeftAndModifySelection" },
248 { VK_LEFT, CtrlKey | ShiftKey, "MoveWordLeftAndModifySelection" },
250 { VK_RIGHT, ShiftKey, "MoveRightAndModifySelection" },
252 { VK_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" },
254 { VK_UP, ShiftKey, "MoveUpAndModifySelection" },
255 { VK_PRIOR, ShiftKey, "MovePageUpAndModifySelection" },
257 { VK_DOWN, ShiftKey, "MoveDownAndModifySelection" },
258 { VK_NEXT, ShiftKey, "MovePageDownAndModifySelection" },
262 { VK_HOME, ShiftKey, "MoveToBeginningOfLineAndModifySelection" },
264 { VK_HOME, CtrlKey | ShiftKey, "MoveToBeginningOfDocumentAndModifySelection" },
267 { VK_END, ShiftKey, "MoveToEndOfLineAndModifySelection" },
269 { VK_END, CtrlKey | ShiftKey, "MoveToEndOfDocumentAndModifySelection" },
272 { VK_BACK, ShiftKey, "DeleteBackward" },
283 { VK_TAB, ShiftKey, "InsertBacktab" },
287 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" },
292 { '\t', ShiftKey, "InsertBacktab" },
296 { '\r', AltKey | ShiftKey, "InsertNewline" },
318 if (event->shiftKey())
319 modifiers |= ShiftKey;
349 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
355 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
361 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
367 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,