aboutsummaryrefslogtreecommitdiffstats
path: root/gui/basewindow.cc
diff options
context:
space:
mode:
authorSergiusz Bazanski <q3k@q3k.org>2018-07-27 02:28:01 +0100
committerSergiusz Bazanski <q3k@q3k.org>2018-07-27 02:28:01 +0100
commit96608c8d07dd149c033c98172e79d15e7bd2b69c (patch)
tree3b9a5f77c27664aea60cfc1ae283ad1eb1b8dbbf /gui/basewindow.cc
parente1dfbc0241c4442398ef4e97e4567a1129a9d75e (diff)
downloadnextpnr-96608c8d07dd149c033c98172e79d15e7bd2b69c.tar.gz
nextpnr-96608c8d07dd149c033c98172e79d15e7bd2b69c.tar.bz2
nextpnr-96608c8d07dd149c033c98172e79d15e7bd2b69c.zip
gui: allow selecting pips
Diffstat (limited to 'gui/basewindow.cc')
-rw-r--r--gui/basewindow.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/basewindow.cc b/gui/basewindow.cc
index 96799e85..6e997011 100644
--- a/gui/basewindow.cc
+++ b/gui/basewindow.cc
@@ -2,6 +2,7 @@
* nextpnr -- Next Generation Place and Route
*
* Copyright (C) 2018 Miodrag Milanovic <miodrag@symbioticeda.com>
+ * Copyright (C) 2018 Serge Bazanski <q3k@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -84,6 +85,7 @@ BaseMainWindow::BaseMainWindow(std::unique_ptr<Context> context, QWidget *parent
SLOT(onSelectedArchItem(std::vector<DecalXY>, bool)));
connect(fpgaView, SIGNAL(clickedBel(BelId, bool)), designview, SLOT(onClickedBel(BelId, bool)));
connect(fpgaView, SIGNAL(clickedWire(WireId, bool)), designview, SLOT(onClickedWire(WireId, bool)));
+ connect(fpgaView, SIGNAL(clickedPip(PipId, bool)), designview, SLOT(onClickedPip(PipId, bool)));
connect(designview, SIGNAL(highlight(std::vector<DecalXY>, int)), fpgaView,
SLOT(onHighlightGroupChanged(std::vector<DecalXY>, int)));