Hi all,

1. From my program I run a thread (QThread).
2. When the thread runs it issues an API for a program called CPLEX (sort of solver).
3. CPLEX is executed and writes info to the terminal as it runs, just like qDebug() does.

Through the API, I can give CPLEX an alternate output buffer. Can I use QTextBlock or QTextEdit to display the contents of the alternate output buffer as CPLEX writes to it? How would I implement this?

Thank you very much!