00001 /*========================================================================= 00002 00003 Program: ParaView 00004 Module: $RCSfile: vtkPVNavigationWindow.h,v $ 00005 00006 Copyright (c) Kitware, Inc. 00007 All rights reserved. 00008 See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00023 #ifndef __vtkPVNavigationWindow_h 00024 #define __vtkPVNavigationWindow_h 00025 00026 #include "vtkPVSourcesNavigationWindow.h" 00027 00028 class vtkKWApplication; 00029 class vtkKWWidget; 00030 class vtkPVSource; 00031 class vtkKWMenu; 00032 00033 class VTK_EXPORT vtkPVNavigationWindow : public vtkPVSourcesNavigationWindow 00034 { 00035 public: 00036 static vtkPVNavigationWindow* New(); 00037 vtkTypeRevisionMacro(vtkPVNavigationWindow,vtkPVSourcesNavigationWindow); 00038 void PrintSelf(ostream& os, vtkIndent indent); 00039 00040 protected: 00041 vtkPVNavigationWindow(); 00042 ~vtkPVNavigationWindow(); 00043 00044 // This method actually does everything 00045 virtual void ChildUpdate(vtkPVSource*); 00046 00047 private: 00048 vtkPVNavigationWindow(const vtkPVNavigationWindow&); // Not implemented 00049 void operator=(const vtkPVNavigationWindow&); // Not Implemented 00050 }; 00051 00052 00053 #endif 00054 00055