#include "qt/view/QtGraphView.h" #include #include #include #include #include #include #include #include #include "component/controller/helper/DummyEdge.h" #include "component/controller/helper/DummyNode.h" #include "component/controller/helper/GraphPostprocessor.h" #include "component/view/GraphViewStyle.h" #include "utility/messaging/type/MessageDeactivateEdge.h" #include "utility/ResourcePaths.h" #include "qt/utility/utilityQt.h" #include "qt/graphics/QtGraphicsView.h" #include "qt/view/graphElements/nodeComponents/QtGraphNodeComponentClickable.h" #include "qt/view/graphElements/nodeComponents/QtGraphNodeComponentMoveable.h" #include "qt/view/graphElements/QtGraphEdge.h" #include "qt/view/graphElements/QtGraphNodeAccess.h" #include "qt/view/graphElements/QtGraphNodeBundle.h" #include "qt/view/graphElements/QtGraphNodeData.h" #include "qt/view/graphElements/QtGraphNodeExpandToggle.h" #include "qt/view/QtViewWidgetWrapper.h" #include "settings/ColorScheme.h" QtGraphView::QtGraphView(ViewLayout* viewLayout) : GraphView(viewLayout) , m_rebuildGraphFunctor( std::bind(&QtGraphView::doRebuildGraph, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4)) , m_clearFunctor(std::bind(&QtGraphView::doClear, this)) , m_resizeFunctor(std::bind(&QtGraphView::doResize, this)) , m_refreshFunctor(std::bind(&QtGraphView::doRefreshView, this)) , m_focusInFunctor(std::bind(&QtGraphView::doFocusIn, this, std::placeholders::_1)) , m_focusOutFunctor(std::bind(&QtGraphView::doFocusOut, this, std::placeholders::_1)) { } QtGraphView::~QtGraphView() { } void QtGraphView::createWidgetWrapper() { setWidgetWrapper(std::make_shared(new QFrame())); } void QtGraphView::initView() { QWidget* widget = QtViewWidgetWrapper::getWidgetOfView(this); QBoxLayout* layout = new QBoxLayout(QBoxLayout::TopToBottom); layout->setContentsMargins(0, 0, 0, 0); layout->setSpacing(0); widget->setLayout(layout); QGraphicsScene* scene = new QGraphicsScene(widget); QtGraphicsView* view = new QtGraphicsView(widget); view->setScene(scene); view->setDragMode(QGraphicsView::ScrollHandDrag); view->setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform); view->viewport()->setCursor(Qt::ArrowCursor); widget->layout()->addWidget(view); connect(view, SIGNAL(emptySpaceClicked()), this, SLOT(clickedInEmptySpace())); doRefreshView(); } void QtGraphView::refreshView() { m_refreshFunctor(); } void QtGraphView::rebuildGraph( std::shared_ptr graph, const std::vector>& nodes, const std::vector>& edges, bool animated ){ m_rebuildGraphFunctor(graph, nodes, edges, animated); } void QtGraphView::clear() { m_clearFunctor(); } void QtGraphView::resizeView() { m_resizeFunctor(); } Vec2i QtGraphView::getViewSize() const { QtGraphicsView* view = getView(); float zoomFactor = view->getZoomFactor(); return Vec2i(view->width() / zoomFactor - 80, view->height() / zoomFactor - 80); } void QtGraphView::centerScrollBars() { QGraphicsView* view = getView(); QScrollBar* hb = view->horizontalScrollBar(); QScrollBar* vb = view->verticalScrollBar(); hb->setValue((hb->minimum() + hb->maximum()) / 2); vb->setValue((vb->minimum() + vb->maximum()) / 2); } void QtGraphView::finishedTransition() { QGraphicsView* view = getView(); view->setInteractive(true); switchToNewGraphData(); } void QtGraphView::clickedInEmptySpace() { size_t activeEdgeCount = 0; for (std::shared_ptr edge : m_oldEdges) { if (edge->getIsActive()) { activeEdgeCount++; } } if (activeEdgeCount == 1) { MessageDeactivateEdge().dispatch(); } } void QtGraphView::switchToNewGraphData() { m_oldGraph = m_graph; for (const std::shared_ptr& node : m_oldNodes) { node->hide(); } for (const std::shared_ptr& edge : m_oldEdges) { edge->hide(); } m_oldNodes = m_nodes; m_oldEdges = m_edges; m_nodes.clear(); m_edges.clear(); doResize(); // Manually hover the item below the mouse cursor. QGraphicsView* view = getView(); QPointF point = view->mapToScene(view->mapFromGlobal(QCursor::pos())); QGraphicsItem* item = view->scene()->itemAt(point, QTransform()); if (item) { QtGraphNode* node = dynamic_cast(item->parentItem()); if (node) { node->hoverEnter(); } } // Repaint to make sure all artifacts are removed view->update(); } QtGraphicsView* QtGraphView::getView() const { QWidget* widget = QtViewWidgetWrapper::getWidgetOfView(this); QtGraphicsView* view = widget->findChild(""); if (!view) { LOG_ERROR("Failed to get QGraphicsView"); } return view; } void QtGraphView::doRebuildGraph( std::shared_ptr graph, const std::vector>& nodes, const std::vector>& edges, bool animated ){ if (m_transition && m_transition->currentTime() < m_transition->totalDuration()) { m_transition->stop(); finishedTransition(); } QGraphicsView* view = getView(); size_t activeNodeCount = 0; for (unsigned int i = 0; i < nodes.size(); i++) { activeNodeCount += nodes[i]->getActiveSubNodeCount(); } m_nodes.clear(); for (unsigned int i = 0; i < nodes.size(); i++) { std::shared_ptr node = createNodeRecursive(view, NULL, nodes[i].get(), activeNodeCount > 1); if (node) { m_nodes.push_back(node); } } QPointF center = itemsBoundingRect(m_nodes).center(); Vec2i o = GraphPostprocessor::alignOnRaster(Vec2i(center.x(), center.y())); QPointF offset = QPointF(o.x, o.y); m_sceneRectOffset = offset - center; for (const std::shared_ptr& node : m_nodes) { node->setPos(node->pos() - offset); } m_edges.clear(); for (unsigned int i = 0; i < edges.size(); i++) { std::shared_ptr edge = createEdge(view, edges[i].get()); if (edge) { m_edges.push_back(edge); } } if (graph) { m_graph = graph; } hideOverlay(); if (animated) { createTransition(); } else { switchToNewGraphData(); } } void QtGraphView::doClear() { m_nodes.clear(); m_edges.clear(); m_oldNodes.clear(); m_oldEdges.clear(); m_graph.reset(); m_oldGraph.reset(); } void QtGraphView::doResize() { getView()->setSceneRect(getSceneRect(m_oldNodes)); } void QtGraphView::doRefreshView() { doClear(); doResize(); std::string css = utility::getStyleSheet(ResourcePaths::getGuiPath() + "graph_view/graph_view.css"); getView()->setStyleSheet(css.c_str()); getView()->setAppZoomFactor(GraphViewStyle::getZoomFactor()); } std::shared_ptr QtGraphView::findNodeRecursive(const std::list>& nodes, Id tokenId) { for (const std::shared_ptr& node : nodes) { if (node->getTokenId() == tokenId) { return node; } std::shared_ptr result = findNodeRecursive(node->getSubNodes(), tokenId); if (result != NULL) { return result; } } return std::shared_ptr(); } std::shared_ptr QtGraphView::createNodeRecursive( QGraphicsView* view, std::shared_ptr parentNode, const DummyNode* node, bool multipleActive ){ if (!node->visible) { return NULL; } std::shared_ptr newNode; if (node->isGraphNode()) { newNode = std::make_shared(node->data, node->name, node->hasParent, node->childVisible); } else if (node->isAccessNode()) { newNode = std::make_shared(node->accessType); } else if (node->isExpandToggleNode()) { newNode = std::make_shared(node->isExpanded(), node->invisibleSubNodeCount); } else if (node->isBundleNode()) { newNode = std::make_shared(node->tokenId, node->getBundledNodeCount(), node->name); } newNode->setPosition(node->position); newNode->setSize(node->size); newNode->setIsActive(node->active); newNode->setMultipleActive(multipleActive); newNode->addComponent(std::make_shared(newNode)); view->scene()->addItem(newNode.get()); if (parentNode) { newNode->setParent(parentNode); } else { newNode->addComponent(std::make_shared(newNode)); } for (unsigned int i = 0; i < node->subNodes.size(); i++) { std::shared_ptr subNode = createNodeRecursive(view, newNode, node->subNodes[i].get(), multipleActive); if (subNode) { newNode->addSubNode(subNode); } } newNode->updateStyle(); return newNode; } std::shared_ptr QtGraphView::createEdge(QGraphicsView* view, const DummyEdge* edge) { if (!edge->visible) { return NULL; } std::shared_ptr owner = findNodeRecursive(m_nodes, edge->ownerId); std::shared_ptr target = findNodeRecursive(m_nodes, edge->targetId); if (owner != NULL && target != NULL) { std::shared_ptr qtEdge = std::make_shared(owner, target, edge->data, edge->getWeight(), edge->active, edge->getDirection()); owner->addOutEdge(qtEdge); target->addInEdge(qtEdge); view->scene()->addItem(qtEdge.get()); return qtEdge; } return NULL; } QRectF QtGraphView::itemsBoundingRect(const std::list>& items) const { QRectF boundingRect; for (const std::shared_ptr& item : items) { boundingRect |= item->sceneBoundingRect(); } return boundingRect; } QRectF QtGraphView::getSceneRect(const std::list>& items) const { return itemsBoundingRect(items).adjusted(-25, -25, 25, 25).translated(m_sceneRectOffset); } void QtGraphView::compareNodesRecursive( std::list> newSubNodes, std::list> oldSubNodes, std::list* appearingNodes, std::list* vanishingNodes, std::vector>* remainingNodes ){ for (std::list>::iterator it = newSubNodes.begin(); it != newSubNodes.end(); it++) { bool remains = false; for (std::list>::iterator it2 = oldSubNodes.begin(); it2 != oldSubNodes.end(); it2++) { if (((*it)->isDataNode() && (*it2)->isDataNode() && (*it)->getTokenId() == (*it2)->getTokenId()) || ((*it)->isAccessNode() && (*it2)->isAccessNode() && dynamic_cast((*it).get())->getAccessType() == dynamic_cast((*it2).get())->getAccessType()) || ((*it)->isExpandToggleNode() && (*it2)->isExpandToggleNode()) || ((*it)->isBundleNode() && (*it2)->isBundleNode() && (*it)->getTokenId() == (*it2)->getTokenId())) { remainingNodes->push_back(std::pair((*it).get(), (*it2).get())); compareNodesRecursive((*it)->getSubNodes(), (*it2)->getSubNodes(), appearingNodes, vanishingNodes, remainingNodes); oldSubNodes.erase(it2); remains = true; break; } } if (!remains) { appearingNodes->push_back((*it).get()); } } for (std::shared_ptr& node : oldSubNodes) { vanishingNodes->push_back(node.get()); } } void QtGraphView::createTransition() { std::list appearingNodes; std::list vanishingNodes; std::vector> remainingNodes; compareNodesRecursive(m_nodes, m_oldNodes, &appearingNodes, &vanishingNodes, &remainingNodes); if (!vanishingNodes.size() && !appearingNodes.size()) { bool nodesMoved = false; for (const std::pair& p : remainingNodes) { if (p.first->getPosition() != p.second->getPosition() && p.first->getSize() != p.second->getSize()) { nodesMoved = true; } } if (!nodesMoved) { switchToNewGraphData(); return; } } QGraphicsView* view = getView(); view->setInteractive(false); m_transition = std::make_shared(); // fade out if (vanishingNodes.size() || m_oldEdges.size()) { QParallelAnimationGroup* vanish = new QParallelAnimationGroup(); for (QtGraphNode* node : vanishingNodes) { QPropertyAnimation* anim = new QPropertyAnimation(node, "opacity"); anim->setDuration(300); anim->setStartValue(1.0f); anim->setEndValue(0.0f); vanish->addAnimation(anim); } for (std::shared_ptr edge : m_oldEdges) { QPropertyAnimation* anim = new QPropertyAnimation(edge.get(), "opacity"); anim->setDuration(150); anim->setStartValue(1.0f); anim->setEndValue(0.0f); vanish->addAnimation(anim); } m_transition->addAnimation(vanish); } // move and scale { QParallelAnimationGroup* remain = new QParallelAnimationGroup(); for (std::pair p : remainingNodes) { QtGraphNode* newNode = p.first; QtGraphNode* oldNode = p.second; QPropertyAnimation* anim = new QPropertyAnimation(oldNode, "pos"); anim->setDuration(300); anim->setStartValue(oldNode->pos()); anim->setEndValue(newNode->pos()); remain->addAnimation(anim); connect(anim, SIGNAL(finished()), newNode, SLOT(showNode())); connect(anim, SIGNAL(finished()), oldNode, SLOT(hideNode())); newNode->hide(); anim = new QPropertyAnimation(oldNode, "size"); anim->setDuration(300); anim->setStartValue(oldNode->size()); anim->setEndValue(newNode->size()); remain->addAnimation(anim); if (newNode->isAccessNode() && newNode->getSubNodes().size() == 0 && oldNode->getSubNodes().size() > 0) { dynamic_cast(oldNode)->hideLabel(); } } QPropertyAnimation* anim = new QPropertyAnimation(view, "sceneRect"); anim->setStartValue(view->sceneRect()); anim->setEndValue(getSceneRect(m_nodes)); if (remainingNodes.size()) { anim->setDuration(300); } else { anim->setDuration(300); connect(anim, SIGNAL(finished()), this, SLOT(centerScrollBars())); } remain->addAnimation(anim); m_transition->addAnimation(remain); } // fade in if (appearingNodes.size() || m_edges.size()) { QParallelAnimationGroup* appear = new QParallelAnimationGroup(); for (QtGraphNode* node : appearingNodes) { QPropertyAnimation* anim = new QPropertyAnimation(node, "opacity"); anim->setDuration(300); anim->setStartValue(0.0f); anim->setEndValue(1.0f); appear->addAnimation(anim); connect(anim, SIGNAL(finished()), node, SLOT(blendIn())); node->blendOut(); } for (std::shared_ptr edge : m_edges) { QPropertyAnimation* anim = new QPropertyAnimation(edge.get(), "opacity"); anim->setDuration(150); anim->setStartValue(0.0f); anim->setEndValue(1.0f); appear->addAnimation(anim); edge->setOpacity(0.0f); } m_transition->addAnimation(appear); } connect(m_transition.get(), SIGNAL(finished()), this, SLOT(finishedTransition())); m_transition->start(); } void QtGraphView::focusTokenIds(const std::vector& focusedTokenIds) { m_focusInFunctor(focusedTokenIds); } void QtGraphView::doFocusIn(const std::vector& tokenIds) { for (const Id& tokenId : tokenIds) { std::shared_ptr node = findNodeRecursive(m_oldNodes, tokenId); if (node) { node->focusIn(); continue; } for (std::shared_ptr edge : m_oldEdges) { if (edge->getData() && edge->getData()->getId() == tokenId) { edge->focusIn(); break; } } } } void QtGraphView::defocusTokenIds(const std::vector& defocusedTokenIds) { m_focusOutFunctor(defocusedTokenIds); } void QtGraphView::doFocusOut(const std::vector& tokenIds) { for (const Id& tokenId : tokenIds) { std::shared_ptr node = findNodeRecursive(m_oldNodes, tokenId); if (node && node->isDataNode()) { node->focusOut(); continue; } for (std::shared_ptr edge : m_oldEdges) { if (edge->getData() && edge->getData()->getId() == tokenId) { edge->focusOut(); break; } } } }