diff options
| author | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-15 11:10:11 +0200 |
|---|---|---|
| committer | David Shah <davey1576@gmail.com> | 2018-06-16 14:44:10 +0200 |
| commit | b569d76996f554991e8d8e8195d370c2dad19f2f (patch) | |
| tree | ccf23d04ce22539a7203551f7d700f437bd5caea /gui/designwidget.h | |
| parent | 32dcf6b3fe02f2338558be1610257605a94b0d38 (diff) | |
| download | nextpnr-b569d76996f554991e8d8e8195d370c2dad19f2f.tar.gz nextpnr-b569d76996f554991e8d8e8195d370c2dad19f2f.tar.bz2 nextpnr-b569d76996f554991e8d8e8195d370c2dad19f2f.zip | |
Propagate signals
Diffstat (limited to 'gui/designwidget.h')
| -rw-r--r-- | gui/designwidget.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gui/designwidget.h b/gui/designwidget.h index e237ec6d..e3f7e622 100644 --- a/gui/designwidget.h +++ b/gui/designwidget.h @@ -23,10 +23,13 @@ class DesignWidget : public QWidget void addProperty(QtVariantProperty *property, const QString &id);
void clearProperties();
+ Q_SIGNALS:
+ void info(std::string text);
+
private Q_SLOTS:
void prepareMenu(const QPoint &pos);
- void selectObject();
void onItemClicked(QTreeWidgetItem *item, int);
+ void selectObject();
private:
Design *design;
|
