fix #363 - dialog box stopped working for strings because the change event never fired with the new text system

This commit is contained in:
Adam D. Ruppe 2023-02-05 21:43:20 -05:00
parent 079cf341a9
commit 918268356a
2 changed files with 31 additions and 5 deletions

View File

@ -11754,6 +11754,19 @@ class TextDisplayHelper : Widget {
return ctx;
}
override void defaultEventHandler_blur(Event ev) {
super.defaultEventHandler_blur(ev);
if(l.wasMutated()) {
auto evt = new ChangeEvent!string(this, &this.content);
evt.dispatch();
l.clearWasMutatedFlag();
}
}
private string content() {
return l.getTextString();
}
void undo() {
if(undoStack.length) {
auto state = undoStack[$-1];
@ -12347,9 +12360,9 @@ abstract class EditableTextWidget : EditableTextWidgetParent {
else
return null;
} else version(custom_widgets) {
version(use_new_text_system)
version(use_new_text_system) {
return textLayout.getTextString();
else
} else
return textLayout.getPlainText();
} else static assert(false);
}
@ -12505,10 +12518,8 @@ abstract class EditableTextWidget : EditableTextWidgetParent {
}
else static assert(false);
version(trash_text) {
version(custom_widgets)
override void defaultEventHandler_mousedown(MouseDownEvent ev) {
super.defaultEventHandler_mousedown(ev);

View File

@ -474,6 +474,7 @@ public struct Selection {
FIXME: what if i want to replace it with some multiply styled text? Could probably call it in sequence actually.
+/
Selection replaceContent(scope const(char)[] newText, TextLayouter.StyleHandle style = TextLayouter.StyleHandle.init) {
layouter.wasMutated_ = true;
if(style == TextLayouter.StyleHandle.init)
style = layouter.getInsertionStyleAt(impl.focus);
@ -1068,6 +1069,19 @@ class TextLayouter {
WrappedAround = 2
}
private bool wasMutated_ = false;
/++
The layouter maintains a flag to tell if the content has been changed.
+/
public bool wasMutated() {
return wasMutated_;
}
/// ditto
public void clearWasMutatedFlag() {
wasMutated_ = false;
}
/++
Represents a possible registered style for a segment of text.
+/
@ -1090,6 +1104,7 @@ class TextLayouter {
Appends text at the end, without disturbing user selection.
+/
public void appendText(scope const(char)[] text, StyleHandle style = StyleHandle.init) {
wasMutated_ = true;
auto before = this.text;
this.text.length += text.length;
this.text[before.length-1 .. before.length-1 + text.length] = text[];
@ -1117,7 +1132,7 @@ class TextLayouter {
FIXME: have some kind of index stuff so you can select some text found in here (think regex search)
+/
void getText(scope void delegate(scope const(char)[] segment, TextStyle style) handler) {
handler(text, null);
handler(text[0 .. $-1], null); // cut off the null terminator
}
/++