本文整理匯總了Java中java.awt.event.KeyEvent.VK_G屬性的典型用法代碼示例。如果您正苦於以下問題:Java KeyEvent.VK_G屬性的具體用法?Java KeyEvent.VK_G怎麽用?Java KeyEvent.VK_G使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類java.awt.event.KeyEvent
的用法示例。
在下文中一共展示了KeyEvent.VK_G屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: setKeyInput
private static boolean setKeyInput(int iCount) {
boolean inputSet = true;
switch(iCount) {
case 0:
// Input Korean q (#12610) /(#47)
expectedResults = new int[]{ 12610, 47 };
inKeyCodes = new int[][] { {KeyEvent.VK_Q},
{KeyEvent.VK_SLASH}
};
break;
case 1:
// Input Korean q (#12610) /(#47) gh (#54840) \(#92)
expectedResults = new int[]{ 12610, 47, 54840, 92 };
inKeyCodes = new int[][] { {KeyEvent.VK_Q},
{KeyEvent.VK_SLASH},
{KeyEvent.VK_G},
{KeyEvent.VK_H},
{KeyEvent.VK_BACK_SLASH}
};
break;
case 2:
// Input Korean q (#12610) /(#47) ghq (#54857) \(#92)
expectedResults = new int[]{ 12610, 47, 54857, 92 };
inKeyCodes = new int[][] { {KeyEvent.VK_Q},
{KeyEvent.VK_SLASH},
{KeyEvent.VK_G},
{KeyEvent.VK_H},
{KeyEvent.VK_Q},
{KeyEvent.VK_BACK_SLASH}
};
break;
case 3:
// Input Korean q (#12610) /(#47) gh (#54840) \(#92)
expectedResults = new int[]{ 12610, 47, 54840, 92 };
inKeyCodes = new int[][] { {KeyEvent.VK_Q},
{KeyEvent.VK_SLASH},
{KeyEvent.VK_G},
{KeyEvent.VK_H},
{KeyEvent.VK_Q},
{KeyEvent.VK_BACK_SPACE},
{KeyEvent.VK_BACK_SLASH}
};
break;
case 4:
// Input Korean q (#12610) /(#47) g (#12622) \(#92)
expectedResults = new int[]{ 12610, 47, 12622, 92 };
inKeyCodes = new int[][] { {KeyEvent.VK_Q},
{KeyEvent.VK_SLASH},
{KeyEvent.VK_G},
{KeyEvent.VK_H},
{KeyEvent.VK_Q},
{KeyEvent.VK_BACK_SPACE},
{KeyEvent.VK_BACK_SPACE},
{KeyEvent.VK_BACK_SLASH}
};
break;
default:
inputSet = false;
break;
}
return inputSet;
}
示例2: getKeyCode
private int getKeyCode(char alpha) {
switch (alpha) {
case 'a':
return KeyEvent.VK_A;
case 'b':
return KeyEvent.VK_B;
case 'c':
return KeyEvent.VK_C;
case 'd':
return KeyEvent.VK_D;
case 'e':
return KeyEvent.VK_E;
case 'f':
return KeyEvent.VK_F;
case 'g':
return KeyEvent.VK_G;
case 'h':
return KeyEvent.VK_H;
case 'i':
return KeyEvent.VK_I;
case 'j':
return KeyEvent.VK_J;
case 'k':
return KeyEvent.VK_K;
case 'l':
return KeyEvent.VK_L;
case 'm':
return KeyEvent.VK_M;
case 'n':
return KeyEvent.VK_N;
case 'o':
return KeyEvent.VK_O;
case 'p':
return KeyEvent.VK_P;
case 'q':
return KeyEvent.VK_Q;
case 'r':
return KeyEvent.VK_R;
case 's':
return KeyEvent.VK_S;
case 't':
return KeyEvent.VK_T;
case 'u':
return KeyEvent.VK_U;
case 'v':
return KeyEvent.VK_V;
case 'w':
return KeyEvent.VK_W;
case 'x':
return KeyEvent.VK_X;
case 'y':
return KeyEvent.VK_Y;
case 'z':
return KeyEvent.VK_Z;
case '1':
return KeyEvent.VK_1;
case '2':
return KeyEvent.VK_2;
case '3':
return KeyEvent.VK_3;
case '4':
return KeyEvent.VK_4;
case '5':
return KeyEvent.VK_5;
case '6':
return KeyEvent.VK_6;
case '7':
return KeyEvent.VK_7;
case '8':
return KeyEvent.VK_8;
case '9':
return KeyEvent.VK_9;
case '0':
return KeyEvent.VK_0;
case ',':
return KeyEvent.VK_COMMA;
case ' ':
return KeyEvent.VK_SPACE;
}
return KeyEvent.VK_SPACE;
}