mirror of https://github.com/adamdruppe/arsd.git
fix #363 - dialog box stopped working for strings because the change event never fired with the new text system
This commit is contained in:
parent
079cf341a9
commit
918268356a
19
minigui.d
19
minigui.d
|
@ -11754,6 +11754,19 @@ class TextDisplayHelper : Widget {
|
||||||
return ctx;
|
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() {
|
void undo() {
|
||||||
if(undoStack.length) {
|
if(undoStack.length) {
|
||||||
auto state = undoStack[$-1];
|
auto state = undoStack[$-1];
|
||||||
|
@ -12347,9 +12360,9 @@ abstract class EditableTextWidget : EditableTextWidgetParent {
|
||||||
else
|
else
|
||||||
return null;
|
return null;
|
||||||
} else version(custom_widgets) {
|
} else version(custom_widgets) {
|
||||||
version(use_new_text_system)
|
version(use_new_text_system) {
|
||||||
return textLayout.getTextString();
|
return textLayout.getTextString();
|
||||||
else
|
} else
|
||||||
return textLayout.getPlainText();
|
return textLayout.getPlainText();
|
||||||
} else static assert(false);
|
} else static assert(false);
|
||||||
}
|
}
|
||||||
|
@ -12505,10 +12518,8 @@ abstract class EditableTextWidget : EditableTextWidgetParent {
|
||||||
}
|
}
|
||||||
else static assert(false);
|
else static assert(false);
|
||||||
|
|
||||||
|
|
||||||
version(trash_text) {
|
version(trash_text) {
|
||||||
|
|
||||||
|
|
||||||
version(custom_widgets)
|
version(custom_widgets)
|
||||||
override void defaultEventHandler_mousedown(MouseDownEvent ev) {
|
override void defaultEventHandler_mousedown(MouseDownEvent ev) {
|
||||||
super.defaultEventHandler_mousedown(ev);
|
super.defaultEventHandler_mousedown(ev);
|
||||||
|
|
|
@ -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.
|
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) {
|
Selection replaceContent(scope const(char)[] newText, TextLayouter.StyleHandle style = TextLayouter.StyleHandle.init) {
|
||||||
|
layouter.wasMutated_ = true;
|
||||||
|
|
||||||
if(style == TextLayouter.StyleHandle.init)
|
if(style == TextLayouter.StyleHandle.init)
|
||||||
style = layouter.getInsertionStyleAt(impl.focus);
|
style = layouter.getInsertionStyleAt(impl.focus);
|
||||||
|
@ -1068,6 +1069,19 @@ class TextLayouter {
|
||||||
WrappedAround = 2
|
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.
|
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.
|
Appends text at the end, without disturbing user selection.
|
||||||
+/
|
+/
|
||||||
public void appendText(scope const(char)[] text, StyleHandle style = StyleHandle.init) {
|
public void appendText(scope const(char)[] text, StyleHandle style = StyleHandle.init) {
|
||||||
|
wasMutated_ = true;
|
||||||
auto before = this.text;
|
auto before = this.text;
|
||||||
this.text.length += text.length;
|
this.text.length += text.length;
|
||||||
this.text[before.length-1 .. before.length-1 + text.length] = text[];
|
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)
|
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) {
|
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
|
||||||
}
|
}
|
||||||
|
|
||||||
/++
|
/++
|
||||||
|
|
Loading…
Reference in New Issue