2018-06-21 13:41:16 +02:00
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
|
|
#include "../basewindow.h"
|
|
|
|
|
|
2018-06-22 13:10:27 +02:00
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
2018-06-21 13:41:16 +02:00
|
|
|
|
|
|
|
|
class MainWindow : public BaseMainWindow
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit MainWindow(Context *ctx, QWidget *parent = 0);
|
2018-06-21 15:41:40 +02:00
|
|
|
virtual ~MainWindow();
|
2018-06-21 13:41:16 +02:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
void createMenu();
|
2018-06-21 15:41:40 +02:00
|
|
|
|
|
|
|
|
protected Q_SLOTS:
|
|
|
|
|
virtual void open();
|
2018-06-21 17:44:18 +02:00
|
|
|
virtual bool save();
|
2018-06-21 13:41:16 +02:00
|
|
|
};
|
|
|
|
|
|
2018-06-22 13:10:27 +02:00
|
|
|
NEXTPNR_NAMESPACE_END
|
|
|
|
|
|
2018-06-21 13:41:16 +02:00
|
|
|
#endif // MAINWINDOW_H
|