nextpnr/gui/mainwindow.h
Miodrag Milanovic 7cb42f4368 Initial GUI work
2018-06-05 21:03:06 +02:00

31 lines
452 B
C++

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "emb.h"
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private:
int executePython(std::string command);
private Q_SLOTS:
void on_lineEdit_returnPressed();
private:
Ui::MainWindow *ui;
emb::stdout_write_type write;
};
#endif // MAINWINDOW_H