// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-FileCopyrightText: Copyright 2007 Sandia Corporation // SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov // .NAME EasyView - Shows regular way of for linking multiple views. // // .SECTION Description // EasyView shows a way to link various views using vtkAnnotationLink // shared between views. Selection in a particular view will update the // selection in all other views associated. // Other way to get the same functionality is by using vtkEventQtSlotConnect // and providing corresponding QT slot. // .SECTION See Also // CustomLinkView. #ifndef EasyView_H #define EasyView_H #include "vtkSmartPointer.h" // Required for smart pointer internal ivars. #include // Forward Qt class declarations class Ui_EasyView; VTK_ABI_NAMESPACE_BEGIN // Forward VTK class declarations class vtkXMLTreeReader; class vtkGraphLayoutView; class vtkQtTableView; class vtkQtTreeView; VTK_ABI_NAMESPACE_END class EasyView : public QMainWindow { Q_OBJECT public: // Constructor/Destructor EasyView(); ~EasyView() override; public Q_SLOTS: virtual void slotOpenXMLFile(); virtual void slotExit(); protected: protected Q_SLOTS: private: // Methods void SetupAnnotationLink(); // Members vtkSmartPointer XMLReader; vtkSmartPointer GraphView; vtkSmartPointer TreeView; vtkSmartPointer TableView; vtkSmartPointer ColumnView; // Designer form Ui_EasyView* ui; }; #endif // EasyView_H