Hello all,
For an application I am working on, I have to have to visualize a .txt log file in my program. Because everything that happens is written directly into this file, the QTextBrowser has to be reloaded constantly. I am looking for the best way to do this.
Currently I have a QTimer that triggers a QTextBrowser::reload() event every 500ms. Every time this event triggers, a "busy" mouse-pointer pops up, which is really annoying. Also, the scrollbars are restored everytime, so I can't scroll through the file properly ...
I have tried using a QThread but I got some error, and I also think the scrolling problem would nog be solved (which is my biggest concern ATM). Can anyone point me in the right direction?
Thanks alot!
Pieter-Jan