This commit is contained in:
Miodrag Milanovic 2018-06-14 18:53:48 +02:00
parent 4e82ed46d2
commit 064dc13f3d
5 changed files with 6 additions and 7 deletions

View File

@ -17,4 +17,3 @@ void InfoTab::info(std::string str)
plainTextEdit->insertPlainText(str.c_str());
plainTextEdit->moveCursor(QTextCursor::End);
}

View File

@ -1,8 +1,8 @@
#ifndef INFOTAB_H
#define INFOTAB_H
#include "nextpnr.h"
#include <QPlainTextEdit>
#include "nextpnr.h"
// FIXME
USING_NEXTPNR_NAMESPACE

View File

@ -2,12 +2,12 @@
#define MAINWINDOW_H
#include "emb.h"
#include "infotab.h"
#include "nextpnr.h"
#include "pythontab.h"
#include "qtpropertymanager.h"
#include "qttreepropertybrowser.h"
#include "qtvariantproperty.h"
#include "pythontab.h"
#include "infotab.h"
#include <QMainWindow>
#include <QPlainTextEdit>

View File

@ -1,7 +1,7 @@
#include "pythontab.h"
#include <QGridLayout>
#include "emb.h"
#include "pybindings.h"
#include <QGridLayout>
PythonTab::PythonTab(QWidget *parent) : QWidget(parent)
{

View File

@ -1,10 +1,10 @@
#ifndef PYTHONTAB_H
#define PYTHONTAB_H
#include "nextpnr.h"
#include "emb.h"
#include <QLineEdit>
#include <QPlainTextEdit>
#include "emb.h"
#include "nextpnr.h"
// FIXME
USING_NEXTPNR_NAMESPACE