Main Page | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | File Members | Related Pages

vtkObject.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkObject.h,v $
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm 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 =========================================================================*/
00049 #ifndef __vtkObject_h
00050 #define __vtkObject_h
00051 
00052 #include "vtkObjectBase.h"
00053 #include "vtkSetGet.h"
00054 #include "vtkTimeStamp.h"
00055 
00056 class vtkSubjectHelper;
00057 class vtkCommand;
00058 
00059 class VTK_COMMON_EXPORT vtkObject : public vtkObjectBase
00060 {
00061 public:
00062   vtkTypeRevisionMacro(vtkObject,vtkObjectBase);
00063 
00066   static vtkObject *New();
00067 
00068 #ifdef _WIN32
00069   // avoid dll boundary problems
00070   void* operator new( size_t tSize );
00071   void operator delete( void* p );
00072 #endif 
00073   
00075   virtual void DebugOn();
00076 
00078   virtual void DebugOff();
00079   
00081   unsigned char GetDebug();
00082   
00084   void SetDebug(unsigned char debugFlag);
00085   
00088   static void BreakOnError();
00089   
00094   virtual void Modified();
00095   
00097   virtual unsigned long GetMTime();
00098 
00103   virtual void PrintSelf(ostream& os, vtkIndent indent);
00104 
00106 
00108   static void SetGlobalWarningDisplay(int val);
00109   static void GlobalWarningDisplayOn(){vtkObject::SetGlobalWarningDisplay(1);};
00110   static void GlobalWarningDisplayOff() 
00111     {vtkObject::SetGlobalWarningDisplay(0);};
00112   static int  GetGlobalWarningDisplay();
00114 
00116 
00125   unsigned long AddObserver(unsigned long event, vtkCommand *, 
00126                             float priority=0.0);
00127   unsigned long AddObserver(const char *event, vtkCommand *, 
00128                             float priority=0.0);
00129   vtkCommand *GetCommand(unsigned long tag);
00130   void RemoveObserver(vtkCommand*);
00131   void RemoveObservers(unsigned long event, vtkCommand *);
00132   void RemoveObservers(const char *event, vtkCommand *);
00133   int HasObserver(unsigned long event, vtkCommand *);
00134   int HasObserver(const char *event, vtkCommand *);
00135   //ETX
00136   void RemoveObserver(unsigned long tag);
00137   void RemoveObservers(unsigned long event);
00138   void RemoveObservers(const char *event);
00139   int HasObserver(unsigned long event);
00140   int HasObserver(const char *event);
00142 
00153   // This method invokes an event and return whether the event was
00154   // aborted or not. If the event was aborted, the return value is 1,
00155   // otherwise it is 0.  
00156   //BTX
00157   int InvokeEvent(unsigned long event, void *callData);
00158   int InvokeEvent(const char *event, void *callData);
00159   //ETX
00160   int InvokeEvent(unsigned long event) { return this->InvokeEvent(event, NULL); };
00161   int InvokeEvent(const char *event) { return this->InvokeEvent(event, NULL); };
00162   
00163 protected:
00164   vtkObject(); 
00165   virtual ~vtkObject(); 
00166 
00167   // See vtkObjectBase.h.
00168   virtual void RegisterInternal(vtkObjectBase*, int check);
00169   virtual void UnRegisterInternal(vtkObjectBase*, int check);
00170 
00171   unsigned char Debug;     // Enable debug messages
00172   vtkTimeStamp MTime;      // Keep track of modification time
00173   vtkSubjectHelper *SubjectHelper;
00174 
00175 private:
00176   vtkObject(const vtkObject&);  // Not implemented.
00177   void operator=(const vtkObject&);  // Not implemented.
00178 };
00179 
00180 #endif
00181 

Generated on Thu Sep 7 11:42:29 2006 for VTK by  doxygen 1.4.3-20050530