How does your thread look like? Add in *.h file
Qt Code:
  1. Q_SIGNALS:
  2. void currentEquitation(QString);
To copy to clipboard, switch view to plain text mode 
In the cpp, where you calculate a new equation simple do
Qt Code:
  1. Q_EMIT currentEquitation("Equitation foo");
To copy to clipboard, switch view to plain text mode 
And then in your GUI class where you start your thread (assuming it is called thread and you have a QLabel called label):
Qt Code:
  1. QObject::connect(thread, SIGNAL(currentEquitation(QString)), label, SLOT(setText(QString)));
To copy to clipboard, switch view to plain text mode 
That's all.