Description
I'm working on a project that involves integrating the ExprEditor
class into another application's UI, and I need to know when the expression text has changed in any way in order to dispatch change notifications to the host.
Currently, there seems to be no consistent signal emitted to indicate that the expression text has changed in some way; the only way to get a reliable notification is to manually hit Ctrl + Return
.
A fairly straightforward (but possibly naive) approach to addressing this would be to call sendApply()
from inside of exprChanged
, but I wanted to solicit some more educated opinions here before going that route. Also, I think it might make to consider giving the signal a more self-documenting naming like exprChanged
.
Any thoughts?
Thanks.