diff options
author | Juuz <6596629+Juuxel@users.noreply.github.com> | 2021-05-27 22:16:00 +0300 |
---|---|---|
committer | Juuz <6596629+Juuxel@users.noreply.github.com> | 2021-05-27 22:16:00 +0300 |
commit | a0ec39ff209698e3a95d928a4d40ca7db04ea1f2 (patch) | |
tree | b173a2e13806729aea35980fdfce3c554ef57743 /src/main | |
parent | a6907a008a729e8b0a65c66bb6d1dba187df9ba1 (diff) | |
download | LibGui-a0ec39ff209698e3a95d928a4d40ca7db04ea1f2.tar.gz LibGui-a0ec39ff209698e3a95d928a4d40ca7db04ea1f2.tar.bz2 LibGui-a0ec39ff209698e3a95d928a4d40ca7db04ea1f2.zip |
WTextField: Fix #111 properly by using setText everywhere
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/io/github/cottonmc/cotton/gui/widget/WTextField.java | 39 |
1 files changed, 26 insertions, 13 deletions
diff --git a/src/main/java/io/github/cottonmc/cotton/gui/widget/WTextField.java b/src/main/java/io/github/cottonmc/cotton/gui/widget/WTextField.java index 70c0613..a0b05f2 100644 --- a/src/main/java/io/github/cottonmc/cotton/gui/widget/WTextField.java +++ b/src/main/java/io/github/cottonmc/cotton/gui/widget/WTextField.java @@ -25,6 +25,7 @@ import io.github.cottonmc.cotton.gui.widget.data.InputResult; import org.jetbrains.annotations.Nullable; import org.lwjgl.glfw.GLFW; +import java.util.Objects; import java.util.function.Consumer; import java.util.function.Predicate; @@ -69,14 +70,29 @@ public class WTextField extends WWidget { public WTextField(Text suggestion) { this.suggestion = suggestion; } - + + /** + * Sets the text in this text field. + * + * @param s the new text + * @throws NullPointerException if the text is null + */ public void setText(String s) { + Objects.requireNonNull(s, "text"); + if (this.textPredicate==null || this.textPredicate.test(s)) { + String original = this.text; this.text = (s.length()>maxLength) ? s.substring(0,maxLength) : s; - if (onChanged!=null) onChanged.accept(this.text); + if (cursor > text.length()) cursor = text.length(); + if (!original.equals(s) && onChanged!=null) onChanged.accept(this.text); } } + /** + * Gets the text in this text field. + * + * @return the text in this text field + */ public String getText() { return this.text; } @@ -109,6 +125,7 @@ public class WTextField extends WWidget { if (select==cursor) return null; //Tidy some things + // TODO: This tidying doesn't belong here if (select>text.length()) select = text.length(); if (cursor<0) cursor = 0; if (cursor>text.length()) cursor = text.length(); @@ -315,10 +332,9 @@ public class WTextField extends WWidget { if (cursor>this.text.length()) cursor = this.text.length(); String before = this.text.substring(0, cursor); - String after = this.text.substring(cursor, this.text.length()); - this.text = before+ch+after; + String after = this.text.substring(cursor); cursor++; - if (onChanged != null) onChanged.accept(text); + setText(before+ch+after); } } @@ -347,7 +363,7 @@ public class WTextField extends WWidget { String after = this.text.substring(b); String clip = MinecraftClient.getInstance().keyboard.getClipboard(); - text = before+clip+after; + setText(before+clip+after); select = -1; cursor = (before+clip).length(); } else { @@ -355,12 +371,8 @@ public class WTextField extends WWidget { String after = this.text.substring(cursor, this.text.length()); String clip = MinecraftClient.getInstance().keyboard.getClipboard(); - text = before + clip + after; + setText(before + clip + after); cursor += clip.length(); - if (text.length()>this.maxLength) { - text = text.substring(0, maxLength); - if (cursor>text.length()) cursor = text.length(); - } } if (onChanged != null) onChanged.accept(text); @@ -374,6 +386,7 @@ public class WTextField extends WWidget { //System.out.println("Ch: "+ch+", Key: "+key+", Mod: "+modifiers); if (modifiers==0) { + // TODO: Make Del work backwards as it should if (ch==GLFW.GLFW_KEY_DELETE || ch==GLFW.GLFW_KEY_BACKSPACE) { if (text.length()>0 && cursor>0) { if (select>=0 && select!=cursor) { @@ -386,7 +399,7 @@ public class WTextField extends WWidget { } String before = this.text.substring(0, a); String after = this.text.substring(b); - text = before+after; + setText(before+after); if (cursor==b) cursor = a; select = -1; } else { @@ -394,7 +407,7 @@ public class WTextField extends WWidget { String after = this.text.substring(cursor, this.text.length()); before = before.substring(0,before.length()-1); - text = before+after; + setText(before+after); cursor--; } |