Lines Matching full:case
184 case SKIN_ROTATION_90:
186 case SDLK_LEFT: sym = SDLK_DOWN; break;
187 case SDLK_RIGHT: sym = SDLK_UP; break;
188 case SDLK_UP: sym = SDLK_LEFT; break;
189 case SDLK_DOWN: sym = SDLK_RIGHT; break;
193 case SKIN_ROTATION_180:
195 case SDLK_LEFT: sym = SDLK_RIGHT; break;
196 case SDLK_RIGHT: sym = SDLK_LEFT; break;
197 case SDLK_UP: sym = SDLK_DOWN; break;
198 case SDLK_DOWN: sym = SDLK_UP; break;
202 case SKIN_ROTATION_270:
204 case SDLK_LEFT: sym = SDLK_UP; break;
205 case SDLK_RIGHT: sym = SDLK_DOWN; break;
206 case SDLK_UP: sym = SDLK_RIGHT; break;
207 case SDLK_DOWN: sym = SDLK_LEFT; break;
232 case SDLK_LEFT: code = kKeyCodeDpadLeft; break;
233 case SDLK_RIGHT: code = kKeyCodeDpadRight; break;
234 case SDLK_UP: code = kKeyCodeDpadUp; break;
235 case SDLK_DOWN: code = kKeyCodeDpadDown; break;
278 /* special case for keypad keys, ignore them here if numlock is on */
281 case SDLK_KP0:
282 case SDLK_KP1:
283 case SDLK_KP2:
284 case SDLK_KP3:
285 case SDLK_KP4:
286 case SDLK_KP5:
287 case SDLK_KP6:
288 case SDLK_KP7:
289 case SDLK_KP8:
290 case SDLK_KP9:
291 case SDLK_KP_PLUS:
292 case SDLK_KP_MINUS:
293 case SDLK_KP_MULTIPLY:
294 case SDLK_KP_DIVIDE:
295 case SDLK_KP_EQUALS:
296 case SDLK_KP_PERIOD:
297 case SDLK_KP_ENTER:
322 case SDLK_1: return kKeyCode1;
323 case SDLK_2: return kKeyCode2;
324 case SDLK_3: return kKeyCode3;
325 case SDLK_4: return kKeyCode4;
326 case SDLK_5: return kKeyCode5;
327 case SDLK_6: return kKeyCode6;
328 case SDLK_7: return kKeyCode7;
329 case SDLK_8: return kKeyCode8;
330 case SDLK_9: return kKeyCode9;
331 case SDLK_0: return kKeyCode0;
333 case SDLK_q: return kKeyCodeQ;
334 case SDLK_w: return kKeyCodeW;
335 case SDLK_e: return kKeyCodeE;
336 case SDLK_r: return kKeyCodeR;
337 case SDLK_t: return kKeyCodeT;
338 case SDLK_y: return kKeyCodeY;
339 case SDLK_u: return kKeyCodeU;
340 case SDLK_i: return kKeyCodeI;
341 case SDLK_o: return kKeyCodeO;
342 case SDLK_p: return kKeyCodeP;
343 case SDLK_a: return kKeyCodeA;
344 case SDLK_s: return kKeyCodeS;
345 case SDLK_d: return kKeyCodeD;
346 case SDLK_f: return kKeyCodeF;
347 case SDLK_g: return kKeyCodeG;
348 case SDLK_h: return kKeyCodeH;
349 case SDLK_j: return kKeyCodeJ;
350 case SDLK_k: return kKeyCodeK;
351 case SDLK_l: return kKeyCodeL;
352 case SDLK_z: return kKeyCodeZ;
353 case SDLK_x: return kKeyCodeX;
354 case SDLK_c: return kKeyCodeC;
355 case SDLK_v: return kKeyCodeV;
356 case SDLK_b: return kKeyCodeB;
357 case SDLK_n: return kKeyCodeN;
358 case SDLK_m: return kKeyCodeM;
359 case SDLK_COMMA: return kKeyCodeComma;
360 case SDLK_PERIOD: return kKeyCodePeriod;
361 case SDLK_SPACE: return kKeyCodeSpace;
362 case SDLK_SLASH: return kKeyCodeSlash;
363 case SDLK_RETURN: return kKeyCodeNewline;
364 case SDLK_BACKSPACE: return kKeyCodeDel;
367 case SDLK_TAB: return kKeyCodeTab;
368 case SDLK_BACKQUOTE: return kKeyCodeGrave;
369 case SDLK_MINUS: return kKeyCodeMinus;
370 case SDLK_EQUALS: return kKeyCodeEquals;
371 case SDLK_LEFTBRACKET: return kKeyCodeLeftBracket;
372 case SDLK_RIGHTBRACKET: return kKeyCodeRightBracket;
373 case SDLK_BACKSLASH: return kKeyCodeBackslash;
374 case SDLK_SEMICOLON: return kKeyCodeSemicolon;
375 case SDLK_QUOTE: return kKeyCodeApostrophe;
377 case SDLK_RSHIFT: return kKeyCodeCapRight;
378 case SDLK_LSHIFT: return kKeyCodeCapLeft;
379 case SDLK_RMETA: return kKeyCodeSym;
380 case SDLK_LMETA: return kKeyCodeSym;
381 case SDLK_RALT: return kKeyCodeAltRight;
382 case SDLK_LALT: return kKeyCodeAltLeft;
383 case SDLK_RCTRL: return kKeyCodeSym;
384 case SDLK_LCTRL: return kKeyCodeSym;