nextpnr/gui/ice40/mainwindow.h
2018-06-21 15:42:19 +02:00

30 lines
476 B
C++

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "../basewindow.h"
#include "worker.h"
// FIXME
USING_NEXTPNR_NAMESPACE
class MainWindow : public BaseMainWindow
{
Q_OBJECT
public:
explicit MainWindow(Context *ctx, QWidget *parent = 0);
virtual ~MainWindow();
public:
void createMenu();
protected Q_SLOTS:
virtual void open();
virtual bool save();
private:
TaskManager *task;
};
#endif // MAINWINDOW_H