org.lwjgl.glfw.GLFW.glfwSetClipboardString()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(104)

本文整理了Java中org.lwjgl.glfw.GLFW.glfwSetClipboardString()方法的一些代码示例,展示了GLFW.glfwSetClipboardString()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。GLFW.glfwSetClipboardString()方法的具体详情如下:
包路径:org.lwjgl.glfw.GLFW
类名称:GLFW
方法名:glfwSetClipboardString

GLFW.glfwSetClipboardString介绍

[英]Sets the system clipboard to the specified, UTF-8 encoded string.

The specified string is copied before this function returns.

Notes:

  • This function must only be called from the main thread.
    [中]将系统剪贴板设置为指定的UTF-8编码字符串。
    在此函数返回之前复制指定的字符串。
    笔记:
    *只能从主线程调用此函数。

代码示例

代码示例来源:origin: libgdx/libgdx

@Override
  public void setContents (String content) {
    GLFW.glfwSetClipboardString(((Lwjgl3Graphics)Gdx.graphics).getWindow().getWindowHandle(), content);
  }
}

代码示例来源:origin: libgdx/libgdx

@Override
  public void setContents (String content) {
    GLFW.glfwSetClipboardString(((Lwjgl3Graphics)Gdx.graphics).getWindow().getWindowHandle(), content);
  }
}

代码示例来源:origin: SpinyOwl/legui

/**
   * Used to set string to clipboard.
   *
   * @param string string to set to clipboard.
   */
  @Override
  public void setClipboardString(String string) {
    GLFW.glfwSetClipboardString(-1, string);
  }
}

代码示例来源:origin: sriharshachilakapati/SilenceEngine

public void setClipboardString(String string)
{
  glfwSetClipboardString(handle, string);
}

代码示例来源:origin: com.badlogicgames.gdx/gdx-backend-lwjgl3

@Override
  public void setContents (String content) {
    GLFW.glfwSetClipboardString(((Lwjgl3Graphics)Gdx.graphics).getWindow().getWindowHandle(), content);
  }
}

相关文章

GLFW类方法