Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 992713
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T06:18:37+00:00 2026-05-16T06:18:37+00:00

I have a Qt application with an embedded script/jit. Now I’d like to receive

  • 0

I have a Qt application with an embedded script/jit. Now I’d like to receive the output from the script on an QTextEdit (more specific QPlainTextEdit). For this purpose callbacks are being issued. The problem I’m facing is that whatever I try the output to the TextEdit is either delayed until the script has finished or gets stuck after 2-3 seconds (and is delayed then until the script has finished).
I tried to use signals and slots for the update but also direct function calls – neither worked. Also repainting / updating the TextEdit and the parent form as well as even QCoreApplication::flush() did show little/no effect. Seems like I’m doing something fundamentally wrong. Any ideas or examples how to achive the “real time” updates?

Btw, the update routines are being called – debug output to stdout is avaiable in real time.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T06:18:38+00:00Added an answer on May 16, 2026 at 6:18 am

    Just to sketch a soluting using threads, which I have used numerous times for logging purposes and which works as desired:

    Define your thread class:

    class MyThread : public QThread
    {
      Q_OBJECT
    public:
      MyThread(QObject *parent=0) : QThread(parent) {}
    signals:
      void signalLogMessage(const QString &logMessage);
    
    ...
    };
    

    Whenever you want a log message to be shown in the main thread, just use

    emit signalLogMessage("Foo!");

    In your main thread:

    MyThread *thread = new MyThread(this);
    connect(thread, SIGNAL(signalLogMessage(const QString&)), 
            this, SLOT(logMessageFromThread(const QString&)));
    connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
    ...
    thread->start();
    

    where logMessageFromThread does something like myPlainTextEdit->appendPlainText(message).
    This works without any delay or other problems.

    I hope that helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have an embedded application, now it requires its state to be saved and
I have a ipy script that can be called either from an embedded console
I have a GWT application that includes an embedded applet. I would like to
I have an embedded application where an image scanner sends out a stream of
I have application running for hours in embedded Linux, when suddenly the OOM Killer
I have an application that sends an HTML formatted email with embedded images. The
I have an application on the Compact Framework that has some large embedded resources
Currently, I have an application that uses Firebird in embedded mode to connect to
I have a spring application that uses an embedded Jetty instance. Since I am
I have a problem linking an application for an embedded target. I'm developing on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.