nextpnr/gui/designwidget.h

81 lines
2.3 KiB
C
Raw Normal View History

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
#include <QTreeWidget>
#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-06-22 19:10:27 +08:00
NEXTPNR_NAMESPACE_BEGIN
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:
2018-07-06 03:51:17 +08:00
void addProperty(QtProperty *property, const QString &id);
2018-06-15 02:03:59 +08:00
void clearProperties();
2018-06-15 17:10:11 +08:00
Q_SIGNALS:
void info(std::string text);
2018-06-15 02:03:59 +08:00
private Q_SLOTS:
void prepareMenu(const QPoint &pos);
void onItemClicked(QTreeWidgetItem *item, int);
2018-06-15 17:10:11 +08:00
void selectObject();
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-06-15 02:03:59 +08:00
private:
Context *ctx;
2018-06-15 02:03:59 +08:00
QTreeWidget *treeWidget;
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;
QTreeWidgetItem *itemContextMenu;
QMap<QtProperty *, QString> propertyToId;
2018-07-06 03:51:17 +08:00
QMap<QString, QtProperty *> idToProperty;
2018-07-06 02:06:12 +08:00
QTreeWidgetItem *nets_root;
QTreeWidgetItem *cells_root;
QAction *actionFirst;
QAction *actionPrev;
QAction *actionNext;
QAction *actionLast;
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