()
| 594 | * gets the current clipboard (as a string); |
| 595 | */ |
| 596 | public String getCurrentClipboard() { |
| 597 | return glfwGetClipboardString(window); |
| 598 | } |
| 599 | |
| 600 | /** |
| 601 | * sets the current clipboard (as a string); |
| 602 | */ |
| 603 | public void setCurrentClipboard(String s) { |
| 604 | glfwSetClipboardString(window, s); |
| 605 | } |
| 606 | |
| 607 | /** |
| 608 | * returns the internal glfw window handle for this window. You'll only need this if you are going to do GLFW stuff to this window) |
| 609 | */ |
| 610 | public long getGLFWWindowReference() { |
| 611 | return window; |
| 612 | } |
| 613 | |
| 614 | /** |
| 615 | * returns the last seen mouse state |
| 616 | */ |
| 617 | public MouseState getCurrentMouseState() { |
| 618 | return mouseState; |
| 619 | } |
| 620 |
no test coverage detected