aboutsummaryrefslogtreecommitdiffstats
path: root/gui/ice40/worker.h
blob: 5dc25d89aa269a574a2fe6d7861c9cd08491aca4 (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
#ifndef WORKER_H
#define WORKER_H

#include "nextpnr.h"
#include <QThread>

// FIXME
USING_NEXTPNR_NAMESPACE

class Worker : public QObject
{
    Q_OBJECT
public:
    Worker(Context *ctx);
public Q_SLOTS:
    void parsejson(const std::string &filename);
Q_SIGNALS:
    void log(const std::string &text);
private:
    Context *ctx;
};

class TaskManager : public QObject
{
    Q_OBJECT
    QThread workerThread;
public:
    TaskManager(Context *ctx);
    ~TaskManager();
public Q_SLOTS:
    void info(const std::string &text);
Q_SIGNALS:
    void parsejson(const std::string &);
    void log(const std::string &text);
};

#endif // WORKER_H