nextpnr/gui/ice40/mainwindow.h

31 lines
491 B
C
Raw Normal View History

2018-06-21 19:41:16 +08:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "../basewindow.h"
#include "worker.h"
2018-06-21 19:41:16 +08:00
2018-06-22 19:10:27 +08:00
NEXTPNR_NAMESPACE_BEGIN
2018-06-21 19:41:16 +08:00
class MainWindow : public BaseMainWindow
{
Q_OBJECT
public:
explicit MainWindow(Context *ctx, QWidget *parent = 0);
virtual ~MainWindow();
2018-06-21 19:41:16 +08:00
public:
void createMenu();
protected Q_SLOTS:
virtual void open();
virtual bool save();
private:
TaskManager *task;
2018-06-21 19:41:16 +08:00
};
2018-06-22 19:10:27 +08:00
NEXTPNR_NAMESPACE_END
2018-06-21 19:41:16 +08:00
#endif // MAINWINDOW_H