2018-06-22 22:21:20 +08:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-06-15 02:03:59 +08:00
|
|
|
#ifndef DESIGNWIDGET_H
|
|
|
|
#define DESIGNWIDGET_H
|
|
|
|
|
2018-09-30 22:13:18 +08:00
|
|
|
#include <QMouseEvent>
|
2018-10-20 21:15:23 +08:00
|
|
|
#include <QTabWidget>
|
2018-07-28 21:44:00 +08:00
|
|
|
#include <QTreeView>
|
2018-07-15 15:49:19 +08:00
|
|
|
#include <QVariant>
|
2018-06-15 02:03:59 +08:00
|
|
|
#include "nextpnr.h"
|
2018-07-07 01:19:18 +08:00
|
|
|
#include "qtgroupboxpropertybrowser.h"
|
2018-06-15 02:03:59 +08:00
|
|
|
#include "qtpropertymanager.h"
|
|
|
|
#include "qttreepropertybrowser.h"
|
|
|
|
#include "qtvariantproperty.h"
|
2018-07-28 21:44:00 +08:00
|
|
|
#include "treemodel.h"
|
2018-06-15 02:03:59 +08:00
|
|
|
|
2018-06-22 19:10:27 +08:00
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
2018-06-15 02:03:59 +08:00
|
|
|
|
2018-08-22 23:38:42 +08:00
|
|
|
class TreeView : public QTreeView
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2018-09-30 22:13:18 +08:00
|
|
|
|
2018-08-22 23:38:42 +08:00
|
|
|
public:
|
|
|
|
explicit TreeView(QWidget *parent = 0);
|
|
|
|
~TreeView();
|
|
|
|
void mouseMoveEvent(QMouseEvent *event) override;
|
|
|
|
void leaveEvent(QEvent *event) override;
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void hoverIndexChanged(QModelIndex index);
|
2018-09-30 22:13:18 +08:00
|
|
|
|
2018-08-22 23:38:42 +08:00
|
|
|
private:
|
|
|
|
QModelIndex current;
|
|
|
|
};
|
|
|
|
|
2018-06-15 02:03:59 +08:00
|
|
|
class DesignWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-06-26 21:47:22 +08:00
|
|
|
explicit DesignWidget(QWidget *parent = 0);
|
2018-06-15 02:03:59 +08:00
|
|
|
~DesignWidget();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void clearProperties();
|
2018-07-15 15:49:19 +08:00
|
|
|
QtProperty *addTopLevelProperty(const QString &id);
|
|
|
|
QtProperty *addSubGroup(QtProperty *topItem, const QString &name);
|
|
|
|
void addProperty(QtProperty *topItem, int propertyType, const QString &name, QVariant value,
|
|
|
|
const ElementType &type = ElementType::NONE);
|
|
|
|
QString getElementTypeName(ElementType type);
|
|
|
|
ElementType getElementTypeByName(QString type);
|
2018-10-20 21:15:23 +08:00
|
|
|
TreeModel::Model *getTreeByElementType(ElementType type);
|
|
|
|
int getIndexByElementType(ElementType type);
|
2018-07-15 21:12:31 +08:00
|
|
|
int getElementIndex(ElementType type);
|
2018-07-15 22:20:35 +08:00
|
|
|
void updateButtons();
|
2018-10-20 21:15:23 +08:00
|
|
|
void addToHistory(int tab, QModelIndex item);
|
2018-07-15 23:50:58 +08:00
|
|
|
std::vector<DecalXY> getDecals(ElementType type, IdString value);
|
2018-08-01 09:19:30 +08:00
|
|
|
void updateHighlightGroup(QList<TreeModel::Item *> item, int group);
|
2018-06-15 17:10:11 +08:00
|
|
|
Q_SIGNALS:
|
2018-07-27 09:14:40 +08:00
|
|
|
void selected(std::vector<DecalXY> decal, bool keep);
|
2018-07-15 23:50:58 +08:00
|
|
|
void highlight(std::vector<DecalXY> decal, int group);
|
2018-08-22 23:38:42 +08:00
|
|
|
void hover(DecalXY decal);
|
2018-07-29 21:21:34 +08:00
|
|
|
void zoomSelected();
|
2018-06-15 17:10:11 +08:00
|
|
|
|
2018-06-15 02:03:59 +08:00
|
|
|
private Q_SLOTS:
|
2018-07-15 18:39:19 +08:00
|
|
|
void prepareMenuProperty(const QPoint &pos);
|
2018-10-20 21:15:23 +08:00
|
|
|
void prepareMenuTree(int num, const QPoint &pos);
|
|
|
|
void onSelectionChanged(int num, const QItemSelection &selected, const QItemSelection &deselected);
|
2018-07-15 18:39:19 +08:00
|
|
|
void onItemDoubleClicked(QTreeWidgetItem *item, int column);
|
2018-07-29 21:21:34 +08:00
|
|
|
void onDoubleClicked(const QModelIndex &index);
|
2018-07-31 02:10:36 +08:00
|
|
|
void onSearchInserted();
|
2018-10-20 21:15:23 +08:00
|
|
|
void onHoverIndexChanged(int num, QModelIndex index);
|
2018-08-23 00:37:24 +08:00
|
|
|
void onHoverPropertyChanged(QtBrowserItem *item);
|
2018-06-26 21:47:22 +08:00
|
|
|
public Q_SLOTS:
|
|
|
|
void newContext(Context *ctx);
|
2018-07-06 02:06:12 +08:00
|
|
|
void updateTree();
|
2018-07-27 09:14:40 +08:00
|
|
|
void onClickedBel(BelId bel, bool keep);
|
|
|
|
void onClickedWire(WireId wire, bool keep);
|
2018-07-27 09:28:01 +08:00
|
|
|
void onClickedPip(PipId pip, bool keep);
|
2018-06-15 02:03:59 +08:00
|
|
|
|
|
|
|
private:
|
2018-06-18 20:06:37 +08:00
|
|
|
Context *ctx;
|
2018-06-15 02:03:59 +08:00
|
|
|
|
2018-10-20 21:15:23 +08:00
|
|
|
QTabWidget *tabWidget;
|
|
|
|
|
|
|
|
TreeView *treeView[6];
|
|
|
|
QItemSelectionModel *selectionModel[6];
|
|
|
|
TreeModel::Model *treeModel[6];
|
2018-07-31 02:10:36 +08:00
|
|
|
QLineEdit *searchEdit;
|
2018-06-15 02:03:59 +08:00
|
|
|
QtVariantPropertyManager *variantManager;
|
2018-07-06 02:35:47 +08:00
|
|
|
QtVariantPropertyManager *readOnlyManager;
|
2018-07-06 03:51:17 +08:00
|
|
|
QtGroupPropertyManager *groupManager;
|
2018-06-15 02:03:59 +08:00
|
|
|
QtVariantEditorFactory *variantFactory;
|
|
|
|
QtTreePropertyBrowser *propertyEditor;
|
|
|
|
|
|
|
|
QMap<QtProperty *, QString> propertyToId;
|
2018-07-06 03:51:17 +08:00
|
|
|
QMap<QString, QtProperty *> idToProperty;
|
2018-07-15 21:12:31 +08:00
|
|
|
|
2018-10-21 19:19:44 +08:00
|
|
|
std::vector<std::pair<int, QModelIndex>> history;
|
2018-07-15 22:20:35 +08:00
|
|
|
int history_index;
|
|
|
|
bool history_ignore;
|
2018-07-15 21:12:31 +08:00
|
|
|
|
2018-07-12 00:30:56 +08:00
|
|
|
QAction *actionFirst;
|
|
|
|
QAction *actionPrev;
|
|
|
|
QAction *actionNext;
|
|
|
|
QAction *actionLast;
|
2018-07-18 23:33:04 +08:00
|
|
|
QAction *actionClear;
|
2018-07-15 23:50:58 +08:00
|
|
|
|
|
|
|
QColor highlightColors[8];
|
2018-08-01 09:19:30 +08:00
|
|
|
QMap<TreeModel::Item *, int> highlightSelected;
|
2018-07-31 02:10:36 +08:00
|
|
|
|
|
|
|
QString currentSearch;
|
|
|
|
QList<QModelIndex> currentSearchIndexes;
|
|
|
|
int currentIndex;
|
2018-10-20 21:15:23 +08:00
|
|
|
int currentIndexTab;
|
2018-06-15 02:03:59 +08:00
|
|
|
};
|
|
|
|
|
2018-06-22 19:10:27 +08:00
|
|
|
NEXTPNR_NAMESPACE_END
|
|
|
|
|
2018-06-15 02:03:59 +08:00
|
|
|
#endif // DESIGNWIDGET_H
|