/*========================================================================= Program: Visualization Toolkit Module: vtkRectilinearWipeWidget.cxx Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ #include "vtkRectilinearWipeWidget.h" #include "vtkCallbackCommand.h" #include "vtkCommand.h" #include "vtkEvent.h" #include "vtkMath.h" #include "vtkObjectFactory.h" #include "vtkRectilinearWipeRepresentation.h" #include "vtkRenderWindow.h" #include "vtkRenderWindowInteractor.h" #include "vtkRenderer.h" #include "vtkWidgetCallbackMapper.h" #include "vtkWidgetEvent.h" #include "vtkWidgetEventTranslator.h" vtkStandardNewMacro(vtkRectilinearWipeWidget); //------------------------------------------------------------------------------ vtkRectilinearWipeWidget::vtkRectilinearWipeWidget() { // Establish the initial widget state this->WidgetState = vtkRectilinearWipeWidget::Start; // Define widget events this->CallbackMapper->SetCallbackMethod(vtkCommand::LeftButtonPressEvent, vtkWidgetEvent::Select, this, vtkRectilinearWipeWidget::SelectAction); this->CallbackMapper->SetCallbackMethod(vtkCommand::LeftButtonReleaseEvent, vtkWidgetEvent::EndSelect, this, vtkRectilinearWipeWidget::EndSelectAction); this->CallbackMapper->SetCallbackMethod( vtkCommand::MouseMoveEvent, vtkWidgetEvent::Move, this, vtkRectilinearWipeWidget::MoveAction); } //------------------------------------------------------------------------------ vtkRectilinearWipeWidget::~vtkRectilinearWipeWidget() = default; //------------------------------------------------------------------------------ void vtkRectilinearWipeWidget::SetCursor(int cState) { switch (cState) { case vtkRectilinearWipeRepresentation::MovingHPane: this->RequestCursorShape(VTK_CURSOR_SIZENS); break; case vtkRectilinearWipeRepresentation::MovingVPane: this->RequestCursorShape(VTK_CURSOR_SIZEWE); break; case vtkRectilinearWipeRepresentation::MovingCenter: this->RequestCursorShape(VTK_CURSOR_SIZEALL); break; default: this->RequestCursorShape(VTK_CURSOR_DEFAULT); } } //------------------------------------------------------------------------------ void vtkRectilinearWipeWidget::SelectAction(vtkAbstractWidget* w) { vtkRectilinearWipeWidget* self = reinterpret_cast(w); if (self->WidgetRep->GetInteractionState() == vtkRectilinearWipeRepresentation::Outside) { return; } // We are definitely selected self->WidgetState = vtkRectilinearWipeWidget::Selected; self->GrabFocus(self->EventCallbackCommand); // Get the event position int X = self->Interactor->GetEventPosition()[0]; int Y = self->Interactor->GetEventPosition()[1]; // This is redundant but necessary on some systems (windows) because the // cursor is switched during OS event processing and reverts to the default // cursor. self->SetCursor(self->WidgetRep->GetInteractionState()); // We want to compute an orthogonal vector to the pane that has been selected double eventPos[2]; eventPos[0] = static_cast(X); eventPos[1] = static_cast(Y); self->WidgetRep->StartWidgetInteraction(eventPos); self->EventCallbackCommand->SetAbortFlag(1); self->StartInteraction(); self->InvokeEvent(vtkCommand::StartInteractionEvent, nullptr); } //------------------------------------------------------------------------------ void vtkRectilinearWipeWidget::MoveAction(vtkAbstractWidget* w) { vtkRectilinearWipeWidget* self = reinterpret_cast(w); // compute some info we need for all cases int X = self->Interactor->GetEventPosition()[0]; int Y = self->Interactor->GetEventPosition()[1]; // Set the cursor appropriately if (self->WidgetState != vtkRectilinearWipeWidget::Selected) { self->WidgetRep->ComputeInteractionState(X, Y); self->SetCursor(self->WidgetRep->GetInteractionState()); return; } // Okay, adjust the representation double newEventPosition[2]; newEventPosition[0] = static_cast(X); newEventPosition[1] = static_cast(Y); self->WidgetRep->WidgetInteraction(newEventPosition); // moving something self->EventCallbackCommand->SetAbortFlag(1); self->InvokeEvent(vtkCommand::InteractionEvent, nullptr); self->Render(); } //------------------------------------------------------------------------------ void vtkRectilinearWipeWidget::EndSelectAction(vtkAbstractWidget* w) { vtkRectilinearWipeWidget* self = reinterpret_cast(w); if (self->WidgetState != vtkRectilinearWipeWidget::Selected || self->WidgetRep->GetInteractionState() == vtkRectilinearWipeRepresentation::Outside) { return; } // Return state to not selected self->WidgetState = vtkRectilinearWipeWidget::Start; self->ReleaseFocus(); self->EventCallbackCommand->SetAbortFlag(1); self->EndInteraction(); self->InvokeEvent(vtkCommand::EndInteractionEvent, nullptr); self->WidgetState = vtkRectilinearWipeWidget::Start; } //------------------------------------------------------------------------------ void vtkRectilinearWipeWidget::CreateDefaultRepresentation() { if (!this->WidgetRep) { this->WidgetRep = vtkRectilinearWipeRepresentation::New(); } } //------------------------------------------------------------------------------ void vtkRectilinearWipeWidget::PrintSelf(ostream& os, vtkIndent indent) { // Superclass typedef defined in vtkTypeMacro() found in vtkSetGet.h this->Superclass::PrintSelf(os, indent); }