Home | History | Annotate | Download | only in WebCoreSupport

Lines Matching defs:ShiftKey

91 static const unsigned ShiftKey = 1 << 1;
107 { VK_LEFT, ShiftKey, "MoveLeftAndModifySelection" },
109 { VK_LEFT, AltKey | ShiftKey, "MoveWordLeftAndModifySelection" },
111 { VK_RIGHT, ShiftKey, "MoveRightAndModifySelection" },
113 { VK_RIGHT, AltKey | ShiftKey, "MoveWordRightAndModifySelection" },
115 { VK_UP, ShiftKey, "MoveUpAndModifySelection" },
117 { VK_DOWN, ShiftKey, "MoveDownAndModifySelection" },
120 { VK_BACK, ShiftKey, "ForwardDelete" },
122 { VK_BACK, AltKey | ShiftKey, "DeleteWordForward" },
126 { VK_TAB, ShiftKey, "InsertBacktab" },
129 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" }
134 { '\t', ShiftKey, "InsertBackTab" },
137 { '\r', AltKey | ShiftKey, "InsertNewline" }
159 if (keyEvent->shiftKey())
160 modifiers |= ShiftKey;