00001 /*========================================================================= 00002 00003 Program: ParaView 00004 Module: $RCSfile: vtkPVInformationGUI.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 __vtkPVInformationGUI_h 00024 #define __vtkPVInformationGUI_h 00025 00026 00027 #include "vtkKWFrameWithScrollbar.h" 00028 00029 class vtkPVSource; 00030 class vtkKWFrame; 00031 class vtkKWFrameWithLabel; 00032 class vtkKWLabel; 00033 class vtkKWBoundsDisplay; 00034 class vtkKWMultiColumnList; 00035 00036 class VTK_EXPORT vtkPVInformationGUI : public vtkKWFrameWithScrollbar 00037 { 00038 public: 00039 static vtkPVInformationGUI* New(); 00040 vtkTypeRevisionMacro(vtkPVInformationGUI, vtkKWFrameWithScrollbar); 00041 void PrintSelf(ostream& os, vtkIndent indent); 00042 00044 void Create(vtkKWApplication* app); 00045 00049 void Update(vtkPVSource* source); 00050 00058 virtual void UpdateEnableState(); 00059 00060 protected: 00061 vtkPVInformationGUI(); 00062 ~vtkPVInformationGUI(); 00063 00064 vtkKWFrameWithLabel *StatsFrame; 00065 00066 vtkKWFrame *CompositeDataFrame; 00067 vtkKWLabel *TypeLabel; 00068 vtkKWLabel *NumBlocksLabel; 00069 vtkKWLabel *NumDataSetsLabel; 00070 vtkKWLabel *NumCellsLabel; 00071 vtkKWLabel *NumPointsLabel; 00072 vtkKWLabel *MemorySizeLabel; 00073 00074 vtkKWBoundsDisplay *BoundsDisplay; 00075 vtkKWBoundsDisplay *ExtentDisplay; 00076 00077 vtkKWFrameWithLabel *ArrayInformationFrame; 00078 vtkKWMultiColumnList *ArrayInformationList; 00079 00080 vtkPVInformationGUI(const vtkPVInformationGUI&); // Not implemented 00081 void operator=(const vtkPVInformationGUI&); // Not implemented 00082 }; 00083 00084 #endif