diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-13 12:38:28 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-13 12:38:28 +0200 |
commit | 145c849596bdcd24f3b4e617eeb4ee06e1b93452 (patch) | |
tree | 243d63251d31498f4e92bfdae3ae0d0f087f9957 /gui/mainwindow.h | |
parent | 4d7f18dd98a7ef9540a279a8e27cb9dbef355af7 (diff) | |
parent | de0918c28758b09f638e02ffc04fad989321da1b (diff) | |
download | nextpnr-145c849596bdcd24f3b4e617eeb4ee06e1b93452.tar.gz nextpnr-145c849596bdcd24f3b4e617eeb4ee06e1b93452.tar.bz2 nextpnr-145c849596bdcd24f3b4e617eeb4ee06e1b93452.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
Diffstat (limited to 'gui/mainwindow.h')
-rw-r--r-- | gui/mainwindow.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gui/mainwindow.h b/gui/mainwindow.h index 6f3e515f..27918486 100644 --- a/gui/mainwindow.h +++ b/gui/mainwindow.h @@ -3,6 +3,9 @@ #include "emb.h" #include "nextpnr.h" +#include "qtpropertymanager.h" +#include "qttreepropertybrowser.h" +#include "qtvariantproperty.h" #include <QMainWindow> @@ -27,11 +30,16 @@ class MainWindow : public QMainWindow private Q_SLOTS: void on_lineEdit_returnPressed(); + void prepareMenu(const QPoint &pos); + void selectObject(QTreeWidgetItem *item); private: Ui::MainWindow *ui; emb::stdout_write_type write; Design *design; + QtVariantPropertyManager *variantManager; + QtVariantEditorFactory *variantFactory; + QtTreePropertyBrowser *variantEditor; }; #endif // MAINWINDOW_H |