blob: 13ac5df8fce84da048ea81e949fef6afeabcd14b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/****************************************************************
**
** Qt threading tutorial
** (c) 2012 Timothy Pearson <kb9vqf@pearsoncomputing.net>
**
** This tutorial is released into the Public Domain and
** can therefore be modified and/or used for any purpose
**
****************************************************************/
#ifndef _MAIN_H_
#define _MAIN_H_
#include <qapplication.h>
#include <qobject.h>
#include <qpushbutton.h>
#include <qthread.h>
class MainObject;
class WorkerObject : public QObject
{
Q_OBJECT
public slots:
void run();
void timerHandler();
signals:
void displayMessage(QString, QString);
public:
QString threadFriendlyName;
};
class MainObject : public QObject
{
Q_OBJECT
public slots:
void emitMessage(QString, QString);
void buttonClicked();
};
#endif // _MAIN_H_
|