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

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

// 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