/** * Construct a widget * * @param InArgs The declaration describing how the widgets should be constructed. */ void SGraphPanel::Construct( const SGraphPanel::FArguments& InArgs ) { SNodePanel::Construct(); this->OnGetContextMenuFor = InArgs._OnGetContextMenuFor; this->GraphObj = InArgs._GraphObj; this->GraphObjToDiff = InArgs._GraphObjToDiff; this->SelectionManager.OnSelectionChanged = InArgs._OnSelectionChanged; this->IsEditable = InArgs._IsEditable; this->OnNodeDoubleClicked = InArgs._OnNodeDoubleClicked; this->OnDropActor = InArgs._OnDropActor; this->OnDropStreamingLevel = InArgs._OnDropStreamingLevel; this->OnVerifyTextCommit = InArgs._OnVerifyTextCommit; this->OnTextCommitted = InArgs._OnTextCommitted; this->OnSpawnNodeByShortcut = InArgs._OnSpawnNodeByShortcut; this->OnUpdateGraphPanel = InArgs._OnUpdateGraphPanel; this->OnDisallowedPinConnection = InArgs._OnDisallowedPinConnection; this->bPreservePinPreviewConnection = false; this->PinVisibility = SGraphEditor::Pin_Show; CachedAllottedGeometryScaledSize = FVector2D(160, 120); if (InArgs._InitialZoomToFit) { ZoomToFit(/*bOnlySelection=*/ false); bTeleportInsteadOfScrollingWhenZoomingToFit = true; } BounceCurve.AddCurve(0.0f, 1.0f); BounceCurve.Play(); // Register for notifications MyRegisteredGraphChangedDelegate = FOnGraphChanged::FDelegate::CreateSP(this, &SGraphPanel::OnGraphChanged); MyRegisteredGraphChangedDelegateHandle = this->GraphObj->AddOnGraphChangedHandler(MyRegisteredGraphChangedDelegate); ShowGraphStateOverlay = InArgs._ShowGraphStateOverlay; }
void GraphicsWindow::SpaceNavigatorButtonUp(void) { ZoomToFit(false); InvalidateGraphics(); }