aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/ClipboardUtils.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/util/ClipboardUtils.kt')
-rw-r--r--src/main/kotlin/util/ClipboardUtils.kt24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/kotlin/util/ClipboardUtils.kt b/src/main/kotlin/util/ClipboardUtils.kt
new file mode 100644
index 0000000..7b9b836
--- /dev/null
+++ b/src/main/kotlin/util/ClipboardUtils.kt
@@ -0,0 +1,24 @@
+
+
+package moe.nea.firmament.util
+
+import moe.nea.firmament.Firmament
+
+object ClipboardUtils {
+ fun setTextContent(string: String) {
+ try {
+ MC.keyboard.clipboard = string.ifEmpty { " " }
+ } catch (e: Exception) {
+ Firmament.logger.error("Could not write clipboard", e)
+ }
+ }
+
+ fun getTextContents(): String {
+ try {
+ return MC.keyboard.clipboard ?: ""
+ } catch (e: Exception) {
+ Firmament.logger.error("Could not read clipboard", e)
+ return ""
+ }
+ }
+}