本文整理汇总了Java中org.lwjgl.glfw.GLFW.GLFW_KEY_ESCAPE属性的典型用法代码示例。如果您正苦于以下问题:Java GLFW.GLFW_KEY_ESCAPE属性的具体用法?Java GLFW.GLFW_KEY_ESCAPE怎么用?Java GLFW.GLFW_KEY_ESCAPE使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.lwjgl.glfw.GLFW
的用法示例。
在下文中一共展示了GLFW.GLFW_KEY_ESCAPE属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onKeyPressed
@Override
public boolean onKeyPressed(IGameInstance game, int button){
if(this.isSelected){
if(button == GLFW.GLFW_KEY_BACKSPACE){
if(!this.text.isEmpty()){
this.text = this.text.substring(0, this.text.length()-1);
if(this.consumer != null){
this.consumer.accept(this.text);
}
}
return true;
}
else if(button == GLFW.GLFW_KEY_ESCAPE){
if(this.selectable){
this.isSelected = false;
return true;
}
}
else{
IInputHandler input = game.getInput();
if(input.isKeyDown(GLFW.GLFW_KEY_LEFT_CONTROL) || input.isKeyDown(GLFW.GLFW_KEY_RIGHT_CONTROL)){
if(button == GLFW.GLFW_KEY_V){
if(this.text.length() < this.maxLength){
try{
this.text += (String)Toolkit.getDefaultToolkit().getSystemClipboard().getData(DataFlavor.stringFlavor);
}
catch(Exception ignored){
}
if(this.text.length() > this.maxLength){
this.text = this.text.substring(0, this.maxLength);
}
if(this.consumer != null){
this.consumer.accept(this.text);
}
return true;
}
return false;
}
}
}
}
return false;
}
示例2: keyPressed
@Override
public void keyPressed(int keycode) {
if(keycode == GLFW.GLFW_KEY_ESCAPE)
System.exit(0);
}