aboutsummaryrefslogtreecommitdiffstats
path: root/gui/ice40/worker.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/ice40/worker.h')
-rw-r--r--gui/ice40/worker.h26
1 files changed, 24 insertions, 2 deletions
diff --git a/gui/ice40/worker.h b/gui/ice40/worker.h
index 181fafa3..320dc94c 100644
--- a/gui/ice40/worker.h
+++ b/gui/ice40/worker.h
@@ -15,9 +15,19 @@ class Worker : public QObject
public:
Worker(Context *ctx, TaskManager *parent);
public Q_SLOTS:
- void parsejson(const std::string &filename);
+ void loadfile(const std::string &);
+ void pack();
+ void place();
+ void route();
Q_SIGNALS:
void log(const std::string &text);
+ void loadfile_finished(bool status);
+ void pack_finished(bool status);
+ void place_finished(bool status);
+ void route_finished(bool status);
+ void taskCanceled();
+ void taskStarted();
+ void taskPaused();
private:
Context *ctx;
@@ -41,8 +51,20 @@ class TaskManager : public QObject
void continue_thread();
Q_SIGNALS:
void terminate();
- void parsejson(const std::string &);
+ void loadfile(const std::string &);
+ void pack();
+ void place();
+ void route();
+
+ // redirected signals
void log(const std::string &text);
+ void loadfile_finished(bool status);
+ void pack_finished(bool status);
+ void place_finished(bool status);
+ void route_finished(bool status);
+ void taskCanceled();
+ void taskStarted();
+ void taskPaused();
private:
QMutex mutex;