2018-06-15 00:53:32 +08:00
|
|
|
#ifndef INFOTAB_H
|
|
|
|
#define INFOTAB_H
|
|
|
|
|
|
|
|
#include <QPlainTextEdit>
|
2018-06-15 00:53:48 +08:00
|
|
|
#include "nextpnr.h"
|
2018-06-15 00:53:32 +08:00
|
|
|
|
|
|
|
// FIXME
|
|
|
|
USING_NEXTPNR_NAMESPACE
|
|
|
|
|
|
|
|
class InfoTab : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit InfoTab(QWidget *parent = 0);
|
|
|
|
void info(std::string str);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QPlainTextEdit *plainTextEdit;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INFOTAB_H
|