There is a way to print strings to QPlaintextEdit in real time from events that arrive quickly below 500 microseconds
-
There is a way to print strings to QPlaintextEdit in real time from events that arrive quickly below 500 microseconds?
in my GUI so far it manages to print strings on QPlaintextEdit from events that arrive every 3 milliseconds.
but it fails to print strings from events that arrive faster below 500 microseconds .. strings are lost to print on QPlaintextEdit in real time, in fact at each event the string is reset to print on QPlaintexEdit.
is there a method to reduce overwrite times on QPlainTextEdit (with the "appendTextEdit" or "appentHtml" function) ??
if it exists please help me how to reduce overwriting times? Thanks in advance
-
There is a way to print strings to QPlaintextEdit in real time from events that arrive quickly below 500 microseconds?
in my GUI so far it manages to print strings on QPlaintextEdit from events that arrive every 3 milliseconds.
but it fails to print strings from events that arrive faster below 500 microseconds .. strings are lost to print on QPlaintextEdit in real time, in fact at each event the string is reset to print on QPlaintexEdit.
is there a method to reduce overwrite times on QPlainTextEdit (with the "appendTextEdit" or "appentHtml" function) ??
if it exists please help me how to reduce overwriting times? Thanks in advance
-
Hi,
You don't want to use such a widget with fast incoming data.
Using the model view approach should yield better result. It will take less processing to show the latest data.