123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #include <QGraphicsItem>
- #include <QGraphicsLayoutItem>
- #include <QGraphicsLinearLayout>
- #include <QGraphicsSceneMouseEvent>
- #include <QPainter>
- #include <QPointF>
- #include <QGraphicsScene>
- #include <Components/Slots/SlotConnectionPin.h>
- #include <GraphCanvas/Components/SceneBus.h>
- #include <GraphCanvas/Components/Slots/SlotBus.h>
- #include <GraphCanvas/Editor/GraphCanvasProfiler.h>
- #include <GraphCanvas/Styling/definitions.h>
- namespace GraphCanvas
- {
- //////////////////////
- // SlotConnectionPin
- //////////////////////
- SlotConnectionPin::SlotConnectionPin(const AZ::EntityId& slotId)
- : m_slotId(slotId)
- , m_connectionType(ConnectionType::CT_Invalid)
- , m_trackClick(false)
- , m_deletionClick(false)
- {
- setFlags(ItemSendsScenePositionChanges);
- setZValue(1);
- setOwnedByLayout(true);
- }
- SlotConnectionPin::~SlotConnectionPin()
- {
- }
- void SlotConnectionPin::Activate()
- {
- SlotUIRequestBus::Handler::BusConnect(m_slotId);
- SlotNotificationBus::Handler::BusConnect(m_slotId);
- }
- void SlotConnectionPin::Deactivate()
- {
- SlotNotificationBus::Handler::BusDisconnect();
- SlotUIRequestBus::Handler::BusDisconnect();
- }
- void SlotConnectionPin::OnRegisteredToNode(const AZ::EntityId& nodeId)
- {
- StateController<RootGraphicsItemDisplayState>* stateController = nullptr;
- RootGraphicsItemRequestBus::EventResult(stateController, nodeId, &RootGraphicsItemRequests::GetDisplayStateStateController);
- m_nodeDisplayStateStateSetter.AddStateController(stateController);
-
- SlotRequestBus::EventResult(m_connectionType, GetEntityId(), &SlotRequests::GetConnectionType);
- }
- void SlotConnectionPin::RefreshStyle()
- {
- OnRefreshStyle();
- setCacheMode(QGraphicsItem::CacheMode::ItemCoordinateCache);
- }
- QPointF SlotConnectionPin::GetPinCenter() const
- {
- return mapToScene(boundingRect().center());
- }
- QPointF SlotConnectionPin::GetConnectionPoint() const
- {
- qreal padding = m_style.GetAttribute(Styling::Attribute::Padding, 2.0);
- QPointF localPoint = boundingRect().center();
- switch (m_connectionType)
- {
- case ConnectionType::CT_Input:
- localPoint.setX(boundingRect().left() + padding);
- break;
- case ConnectionType::CT_Output:
- localPoint.setX(boundingRect().right() - padding);
- break;
- default:
- break;
- }
- return mapToScene(localPoint);
- }
- QPointF SlotConnectionPin::GetJutDirection() const
- {
- switch (m_connectionType)
- {
- case ConnectionType::CT_Input:
- return QPointF(-1, 0);
- case ConnectionType::CT_Output:
- return QPointF(1, 0);
- default:
- return QPointF(0, 0);
- }
- }
- void SlotConnectionPin::OnSlotClicked()
- {
- }
- QRectF SlotConnectionPin::boundingRect() const
- {
- return{ {0, 0} , geometry().size() };
- }
- void SlotConnectionPin::paint(QPainter* painter, const QStyleOptionGraphicsItem* /*option*/, QWidget* /*widget*/ /*= nullptr*/)
- {
- GRAPH_CANVAS_DETAILED_PROFILE_FUNCTION();
- qreal decorationPadding = m_style.GetAttribute(Styling::Attribute::Padding, 2.);
- qreal borderWidth = m_style.GetBorder().widthF();
- painter->setBrush(m_style.GetBrush(Styling::Attribute::BackgroundColor));
- // determine rect for drawing shape
- qreal margin = decorationPadding + (borderWidth * 0.5);
- QRectF drawRect = boundingRect().marginsRemoved({ margin, margin, margin, margin });
- bool hasConnections = false;
- SlotRequestBus::EventResult(hasConnections, GetEntityId(), &SlotRequests::HasConnections);
- DrawConnectionPin(painter, drawRect, hasConnections);
- }
- void SlotConnectionPin::keyPressEvent(QKeyEvent* keyEvent)
- {
- SlotLayoutItem::keyPressEvent(keyEvent);
- if (m_hovered)
- {
- if (keyEvent->key() == Qt::Key::Key_Alt)
- {
- SlotRequestBus::Event(m_slotId, &SlotRequests::SetConnectionDisplayState, RootGraphicsItemDisplayState::Deletion);
- }
- }
- }
- void SlotConnectionPin::keyReleaseEvent(QKeyEvent* keyEvent)
- {
- SlotLayoutItem::keyReleaseEvent(keyEvent);
- if (m_hovered)
- {
- if (keyEvent->key() == Qt::Key::Key_Alt)
- {
- SlotRequestBus::Event(m_slotId, &SlotRequests::SetConnectionDisplayState, RootGraphicsItemDisplayState::Inspection);
- }
- }
- }
- void SlotConnectionPin::hoverEnterEvent(QGraphicsSceneHoverEvent* hoverEvent)
- {
- OnMouseEnter(hoverEvent->modifiers() & Qt::KeyboardModifier::AltModifier);
- }
- void SlotConnectionPin::hoverLeaveEvent(QGraphicsSceneHoverEvent* /*hoverEvent*/)
- {
- OnMouseLeave();
- }
- void SlotConnectionPin::OnMouseEnter(bool hasAltModifier)
- {
- m_hovered = true;
- if (hasAltModifier)
- {
- SlotRequestBus::Event(m_slotId, &SlotRequests::SetConnectionDisplayState, RootGraphicsItemDisplayState::Deletion);
- }
- else
- {
- SlotRequestBus::Event(m_slotId, &SlotRequests::SetConnectionDisplayState, RootGraphicsItemDisplayState::Inspection);
- }
- m_nodeDisplayStateStateSetter.SetState(RootGraphicsItemDisplayState::Inspection);
- }
- void SlotConnectionPin::OnMouseLeave()
- {
- m_nodeDisplayStateStateSetter.ReleaseState();
- m_hovered = false;
- AZ::EntityId nodeId;
- SlotRequestBus::EventResult(nodeId, m_slotId, &SlotRequests::GetNode);
- SlotRequestBus::Event(m_slotId, &SlotRequests::ReleaseConnectionDisplayState);
- }
- void SlotConnectionPin::mousePressEvent(QGraphicsSceneMouseEvent* event)
- {
- if (event->button() == Qt::LeftButton && boundingRect().contains(event->pos()))
- {
- m_trackClick = true;
- if (event->modifiers() & Qt::KeyboardModifier::AltModifier)
- {
- SlotRequestBus::Event(m_slotId, &SlotRequests::ClearConnections);
- m_deletionClick = true;
- }
- return;
- }
-
- SlotLayoutItem::mousePressEvent(event);
- }
- void SlotConnectionPin::mouseReleaseEvent(QGraphicsSceneMouseEvent* event)
- {
- if (m_trackClick)
- {
- if (!m_deletionClick)
- {
- OnSlotClicked();
- }
- }
- m_deletionClick = false;
- m_trackClick = false;
- SlotLayoutItem::mouseReleaseEvent(event);
- }
- void SlotConnectionPin::mouseMoveEvent(QGraphicsSceneMouseEvent* event)
- {
- if (m_trackClick)
- {
- if (!sceneBoundingRect().contains(event->scenePos()))
- {
- if (!m_deletionClick)
- {
- m_trackClick = false;
- HandleNewConnection();
- }
- else
- {
- m_trackClick = false;
- m_deletionClick = false;
- OnMouseLeave();
- }
- }
- }
- SlotLayoutItem::mouseMoveEvent(event);
- }
- void SlotConnectionPin::setGeometry(const QRectF& rect)
- {
- prepareGeometryChange();
- QGraphicsLayoutItem::setGeometry(rect);
- setPos(rect.topLeft());
- updateGeometry();
- }
- QSizeF SlotConnectionPin::sizeHint(Qt::SizeHint which, const QSizeF& /*constraint*/) const
- {
- const qreal decorationPadding = m_style.GetAttribute(Styling::Attribute::Padding, 2.);
- QSizeF rectSize = m_style.GetSize({ 8., 8. }) + QSizeF{ decorationPadding, decorationPadding } * 2.;
- switch (which)
- {
- case Qt::MinimumSize:
- return m_style.GetMinimumSize(rectSize);
- case Qt::PreferredSize:
- return rectSize;
- case Qt::MaximumSize:
- return m_style.GetMaximumSize();
- case Qt::MinimumDescent:
- default:
- return QSizeF();
- }
- }
- void SlotConnectionPin::HandleNewConnection()
- {
- m_nodeDisplayStateStateSetter.ReleaseState();
- AZ::EntityId nodeId;
- SlotRequestBus::EventResult(nodeId, m_slotId, &SlotRequests::GetNode);
- AZ::EntityId sceneId;
- SceneMemberRequestBus::EventResult(sceneId, nodeId, &SceneMemberRequests::GetScene);
- SceneRequestBus::Event(sceneId, &SceneRequestBus::Events::ClearSelection);
- SlotRequestBus::Event(m_slotId, &SlotRequests::DisplayConnection);
- OnMouseLeave();
- }
- void SlotConnectionPin::DrawConnectionPin(QPainter* painter, QRectF drawRect, bool isConnected)
- {
- painter->setPen(m_style.GetBorder());
- if (isConnected)
- {
- painter->fillRect(drawRect, Qt::BrushStyle::SolidPattern);
- }
- else
- {
- painter->drawRect(drawRect);
- }
- }
- void SlotConnectionPin::OnRefreshStyle()
- {
- m_style.SetStyle(m_slotId, Styling::Elements::ConnectionPin);
- }
- }
|