Home | History | Annotate | Download | only in skin

Lines Matching full:case

206         case SKIN_ROTATION_90:
208 case SDLK_LEFT: sym = SDLK_DOWN; break;
209 case SDLK_RIGHT: sym = SDLK_UP; break;
210 case SDLK_UP: sym = SDLK_LEFT; break;
211 case SDLK_DOWN: sym = SDLK_RIGHT; break;
215 case SKIN_ROTATION_180:
217 case SDLK_LEFT: sym = SDLK_RIGHT; break;
218 case SDLK_RIGHT: sym = SDLK_LEFT; break;
219 case SDLK_UP: sym = SDLK_DOWN; break;
220 case SDLK_DOWN: sym = SDLK_UP; break;
224 case SKIN_ROTATION_270:
226 case SDLK_LEFT: sym = SDLK_UP; break;
227 case SDLK_RIGHT: sym = SDLK_DOWN; break;
228 case SDLK_UP: sym = SDLK_RIGHT; break;
229 case SDLK_DOWN: sym = SDLK_LEFT; break;
254 case SDLK_LEFT: code = kKeyCodeDpadLeft; break;
255 case SDLK_RIGHT: code = kKeyCodeDpadRight; break;
256 case SDLK_UP: code = kKeyCodeDpadUp; break;
257 case SDLK_DOWN: code = kKeyCodeDpadDown; break;
300 /* special case for keypad keys, ignore them here if numlock is on */
303 case SDLK_KP0:
304 case SDLK_KP1:
305 case SDLK_KP2:
306 case SDLK_KP3:
307 case SDLK_KP4:
308 case SDLK_KP5:
309 case SDLK_KP6:
310 case SDLK_KP7:
311 case SDLK_KP8:
312 case SDLK_KP9:
313 case SDLK_KP_PLUS:
314 case SDLK_KP_MINUS:
315 case SDLK_KP_MULTIPLY:
316 case SDLK_KP_DIVIDE:
317 case SDLK_KP_EQUALS:
318 case SDLK_KP_PERIOD:
319 case SDLK_KP_ENTER:
344 case SDLK_1: return kKeyCode1;
345 case SDLK_2: return kKeyCode2;
346 case SDLK_3: return kKeyCode3;
347 case SDLK_4: return kKeyCode4;
348 case SDLK_5: return kKeyCode5;
349 case SDLK_6: return kKeyCode6;
350 case SDLK_7: return kKeyCode7;
351 case SDLK_8: return kKeyCode8;
352 case SDLK_9: return kKeyCode9;
353 case SDLK_0: return kKeyCode0;
355 case SDLK_q: return kKeyCodeQ;
356 case SDLK_w: return kKeyCodeW;
357 case SDLK_e: return kKeyCodeE;
358 case SDLK_r: return kKeyCodeR;
359 case SDLK_t: return kKeyCodeT;
360 case SDLK_y: return kKeyCodeY;
361 case SDLK_u: return kKeyCodeU;
362 case SDLK_i: return kKeyCodeI;
363 case SDLK_o: return kKeyCodeO;
364 case SDLK_p: return kKeyCodeP;
365 case SDLK_a: return kKeyCodeA;
366 case SDLK_s: return kKeyCodeS;
367 case SDLK_d: return kKeyCodeD;
368 case SDLK_f: return kKeyCodeF;
369 case SDLK_g: return kKeyCodeG;
370 case SDLK_h: return kKeyCodeH;
371 case SDLK_j: return kKeyCodeJ;
372 case SDLK_k: return kKeyCodeK;
373 case SDLK_l: return kKeyCodeL;
374 case SDLK_z: return kKeyCodeZ;
375 case SDLK_x: return kKeyCodeX;
376 case SDLK_c: return kKeyCodeC;
377 case SDLK_v: return kKeyCodeV;
378 case SDLK_b: return kKeyCodeB;
379 case SDLK_n: return kKeyCodeN;
380 case SDLK_m: return kKeyCodeM;
381 case SDLK_COMMA: return kKeyCodeComma;
382 case SDLK_PERIOD: return kKeyCodePeriod;
383 case SDLK_SPACE: return kKeyCodeSpace;
384 case SDLK_SLASH: return kKeyCodeSlash;
385 case SDLK_RETURN: return kKeyCodeNewline;
386 case SDLK_BACKSPACE: return kKeyCodeDel;
389 case SDLK_TAB: return kKeyCodeTab;
390 case SDLK_BACKQUOTE: return kKeyCodeGrave;
391 case SDLK_MINUS: return kKeyCodeMinus;
392 case SDLK_EQUALS: return kKeyCodeEquals;
393 case SDLK_LEFTBRACKET: return kKeyCodeLeftBracket;
394 case SDLK_RIGHTBRACKET: return kKeyCodeRightBracket;
395 case SDLK_BACKSLASH: return kKeyCodeBackslash;
396 case SDLK_SEMICOLON: return kKeyCodeSemicolon;
397 case SDLK_QUOTE: return kKeyCodeApostrophe;
399 case SDLK_RSHIFT: return kKeyCodeCapRight;
400 case SDLK_LSHIFT: return kKeyCodeCapLeft;
401 case SDLK_RMETA: return kKeyCodeSym;
402 case SDLK_LMETA: return kKeyCodeSym;
403 case SDLK_RALT: return kKeyCodeAltRight;
404 case SDLK_LALT: return kKeyCodeAltLeft;
405 case SDLK_RCTRL: return kKeyCodeSym;
406 case SDLK_LCTRL: return kKeyCodeSym;