aboutsummaryrefslogtreecommitdiffstats
path: root/gui/treemodel.h
diff options
context:
space:
mode:
authorEddie Hung <eddieh@ece.ubc.ca>2018-07-29 08:48:08 -0700
committerEddie Hung <eddieh@ece.ubc.ca>2018-07-29 08:48:08 -0700
commit9ce91f97cc81628ff82d9b34c0471751071099a0 (patch)
tree252bea78318f91bca1771f81431b0d87a74c4644 /gui/treemodel.h
parent52cc146a67346f8a797d1ea133c7757a7330992d (diff)
parent91227b775326784f7b36daa560445074ff5669c7 (diff)
downloadnextpnr-9ce91f97cc81628ff82d9b34c0471751071099a0.tar.gz
nextpnr-9ce91f97cc81628ff82d9b34c0471751071099a0.tar.bz2
nextpnr-9ce91f97cc81628ff82d9b34c0471751071099a0.zip
Merge remote-tracking branch 'origin/master' into redist_slack
Diffstat (limited to 'gui/treemodel.h')
-rw-r--r--gui/treemodel.h93
1 files changed, 93 insertions, 0 deletions
diff --git a/gui/treemodel.h b/gui/treemodel.h
new file mode 100644
index 00000000..a85c290a
--- /dev/null
+++ b/gui/treemodel.h
@@ -0,0 +1,93 @@
+/*
+ * nextpnr -- Next Generation Place and Route
+ *
+ * Copyright (C) 2018 Miodrag Milanovic <miodrag@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
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ */
+
+#ifndef TREEMODEL_H
+#define TREEMODEL_H
+
+#include <QAbstractItemModel>
+#include "nextpnr.h"
+
+NEXTPNR_NAMESPACE_BEGIN
+
+enum class ElementType
+{
+ NONE,
+ BEL,
+ WIRE,
+ PIP,
+ NET,
+ CELL,
+ GROUP
+};
+
+class ContextTreeItem
+{
+ public:
+ ContextTreeItem();
+ ContextTreeItem(QString name);
+ ContextTreeItem(IdString id, ElementType type, QString name);
+ ~ContextTreeItem();
+
+ void addChild(ContextTreeItem *item);
+ int indexOf(ContextTreeItem *n) const { return children.indexOf(n); }
+ ContextTreeItem *at(int idx) const { return children.at(idx); }
+ int count() const { return children.count(); }
+ ContextTreeItem *parent() const { return parentNode; }
+ IdString id() const { return itemId; }
+ ElementType type() const { return itemType; }
+ QString name() const { return itemName; }
+ void sort();
+ private:
+ ContextTreeItem *parentNode;
+ QList<ContextTreeItem *> children;
+ IdString itemId;
+ ElementType itemType;
+ QString itemName;
+};
+
+class ContextTreeModel : public QAbstractItemModel
+{
+ public:
+ ContextTreeModel(QObject *parent = nullptr);
+ ~ContextTreeModel();
+
+ void loadData(Context *ctx);
+ void updateData(Context *ctx);
+ ContextTreeItem *nodeFromIndex(const QModelIndex &idx) const;
+ QModelIndex indexFromNode(ContextTreeItem *node);
+ ContextTreeItem *nodeForIdType(const ElementType type, const QString name) const;
+ // Override QAbstractItemModel methods
+ int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
+ int columnCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
+ QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
+ QModelIndex parent(const QModelIndex &child) const Q_DECL_OVERRIDE;
+ QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
+ QVariant headerData(int section, Qt::Orientation orientation, int role) const Q_DECL_OVERRIDE;
+ Qt::ItemFlags flags(const QModelIndex &index) const Q_DECL_OVERRIDE;
+
+ private:
+ ContextTreeItem *root;
+ QMap<QString, ContextTreeItem *> nameToItem[6];
+ ContextTreeItem *nets_root;
+ ContextTreeItem *cells_root;
+};
+
+NEXTPNR_NAMESPACE_END
+
+#endif // TREEMODEL_H