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

vtkKWTopLevel Class Reference

toplevel superclass More...

#include <vtkKWTopLevel.h>

Inheritance diagram for vtkKWTopLevel:

Inheritance graph
[legend]
Collaboration diagram for vtkKWTopLevel:

Collaboration graph
[legend]
List of all members.

[NOHEADER]

enum  {
  DisplayPositionDefault = 0, DisplayPositionMasterWindowCenter = 1, DisplayPositionMasterWindowCenterFirst = 2, DisplayPositionScreenCenter = 3,
  DisplayPositionScreenCenterFirst = 4, DisplayPositionPointer = 5
}
virtual void SetDisplayPosition (int)
virtual int GetDisplayPosition ()
virtual void SetDisplayPositionToDefault ()
virtual void SetDisplayPositionToMasterWindowCenter ()
virtual void SetDisplayPositionToMasterWindowCenterFirst ()
virtual void SetDisplayPositionToScreenCenter ()
virtual void SetDisplayPositionToScreenCenterFirst ()
virtual void SetDisplayPositionToPointer ()

Public Types


Public Member Functions

 vtkTypeRevisionMacro (vtkKWTopLevel, vtkKWCoreWidget)
void PrintSelf (ostream &os, vtkIndent indent)
virtual void Create (vtkKWApplication *app)
virtual void Display ()
virtual void Withdraw ()
virtual void DeIconify ()
virtual void Raise ()
vtkKWMenuGetMenu ()
virtual void SetIconName (const char *name)
virtual void SetResizable (int w, int h)
virtual void UpdateEnableState ()
virtual void SetWindowClass (const char *)
virtual char * GetWindowClass ()
virtual void SetMasterWindow (vtkKWWidget *win)
virtual vtkKWWidgetGetMasterWindow ()
virtual void SetModal (int)
virtual void ModalOn ()
virtual void ModalOff ()
virtual int GetModal ()
virtual void SetTitle (const char *)
virtual char * GetTitle ()
virtual int SetPosition (int x, int y)
virtual int GetPosition (int *x, int *y)
virtual int SetSize (int w, int h)
virtual int GetSize (int *w, int *h)
virtual int GetWidth ()
virtual int GetHeight ()
virtual int SetMinimumSize (int w, int h)
virtual int GetMinimumSize (int *w, int *h)
virtual int SetGeometry (const char *)
virtual const char * GetGeometry ()
virtual void SetHideDecoration (int)
virtual int GetHideDecoration ()
virtual void HideDecorationOn ()
virtual void HideDecorationOff ()
virtual void SetDeleteWindowProtocolCommand (vtkObject *obj, const char *command)

Static Public Member Functions

vtkKWTopLevelNew ()

Protected Member Functions

 vtkKWTopLevel ()
 ~vtkKWTopLevel ()
virtual int ComputeDisplayPosition (int *x, int *y)
virtual void PostCreate ()
virtual int GetRequestedWidth ()
virtual int GetRequestedHeight ()

Protected Attributes

vtkKWWidgetMasterWindow
vtkKWMenuMenu
char * Title
char * WindowClass
int HideDecoration
int Modal
int DisplayPosition

Detailed Description

toplevel superclass

A generic superclass for toplevel.

Definition at line 27 of file vtkKWTopLevel.h.


Member Enumeration Documentation

anonymous enum
 

Set/Get the position this toplevel should be centered at when Display() is called. The default setting, Default, is to not set/change the position at all and let the user or the window manager place the toplevel. If set to MasterWindowCenter, the toplevel is centered inside its master window ; if the MasterWindow ivar is not set, it is centered on the screen, which is similar to the ScreenCenter setting. If set to Pointer, the toplevel is centered at the current mouse position. On some sytem, the default setting can lead the window manager to place the window at the upper left corner (0, 0) the first time it is displayed. Since this can be fairly annoying, the MasterWindowCenterFirst and ScreenCenterFirst can be used to center the toplevel relative to the master window or the screen only the first time it is displayed (after that, the toplevel will be displayed wherever it was left). BTX

Enumeration values:
DisplayPositionDefault 
DisplayPositionMasterWindowCenter 
DisplayPositionMasterWindowCenterFirst 
DisplayPositionScreenCenter 
DisplayPositionScreenCenterFirst 
DisplayPositionPointer 

Definition at line 91 of file vtkKWTopLevel.h.


Constructor & Destructor Documentation

vtkKWTopLevel::vtkKWTopLevel  )  [protected]
 

vtkKWTopLevel::~vtkKWTopLevel  )  [protected]
 


Member Function Documentation

vtkKWTopLevel* vtkKWTopLevel::New  )  [static]
 

Reimplemented from vtkKWCoreWidget.

Reimplemented in vtkKWDialog, vtkKWLoadSaveDialog, vtkKWMessageDialog, vtkKWSaveImageDialog, vtkKWSimpleEntryDialog, vtkKWSplashScreen, vtkKWTclInteractor, vtkKWTkcon, vtkKWWindow, vtkKWWindowBase, vtkPVComparativeVisDialog, vtkPVComparativeVisManagerGUI, vtkPVComparativeVisProgressDialog, vtkPVConnectDialog, vtkPVErrorLogDisplay, vtkPVGhostLevelDialog, vtkPVLookmarkManager, vtkPVSaveBatchScriptDialog, vtkPVSelectCustomReader, vtkPVServerFileDialog, vtkPVTimerLogDisplay, vtkPVTraceFileDialog, and vtkPVWindow.

vtkKWTopLevel::vtkTypeRevisionMacro vtkKWTopLevel  ,
vtkKWCoreWidget 
 

void vtkKWTopLevel::PrintSelf ostream &  os,
vtkIndent  indent
 

Reimplemented from vtkKWCoreWidget.

Reimplemented in vtkKWDialog, vtkKWLoadSaveDialog, vtkKWMessageDialog, vtkKWSaveImageDialog, vtkKWSimpleEntryDialog, vtkKWSplashScreen, vtkKWTclInteractor, vtkKWTkcon, vtkKWWindow, vtkKWWindowBase, vtkPVComparativeVisDialog, vtkPVComparativeVisManagerGUI, vtkPVComparativeVisProgressDialog, vtkPVConnectDialog, vtkPVErrorLogDisplay, vtkPVGhostLevelDialog, vtkPVLookmarkManager, vtkPVSaveBatchScriptDialog, vtkPVSelectCustomReader, vtkPVServerFileDialog, vtkPVTimerLogDisplay, vtkPVTraceFileDialog, and vtkPVWindow.

virtual void vtkKWTopLevel::SetWindowClass const char *   )  [virtual]
 

Class of the window. Used to group several windows under the same class (they will, for example, de-iconify together). Make sure you set it before a call to Create().

virtual char* vtkKWTopLevel::GetWindowClass  )  [virtual]
 

Class of the window. Used to group several windows under the same class (they will, for example, de-iconify together). Make sure you set it before a call to Create().

virtual void vtkKWTopLevel::SetMasterWindow vtkKWWidget win  )  [virtual]
 

Set the widget/window to which this toplevel will be slave. If set, this toplevel will always be on top of the master window and will minimize with it (assuming that the windowing system supports this). For convenience purposes, the MasterWindow does not have to be a toplevel, it can be a plain widget (its toplevel will be found at runtime). Has to be called before Create().

virtual vtkKWWidget* vtkKWTopLevel::GetMasterWindow  )  [virtual]
 

Set the widget/window to which this toplevel will be slave. If set, this toplevel will always be on top of the master window and will minimize with it (assuming that the windowing system supports this). For convenience purposes, the MasterWindow does not have to be a toplevel, it can be a plain widget (its toplevel will be found at runtime). Has to be called before Create().

virtual void vtkKWTopLevel::Create vtkKWApplication app  )  [virtual]
 

Create the widget. Make sure WindowClass is set before calling this method (if needed). If MasterWindow is set and is a vtkKWTopLevel, its class will be used to set our own WindowClass. Withdraw() is called at the end of the creation.

Reimplemented from vtkKWCoreWidget.

Reimplemented in vtkKWDialog, vtkKWLoadSaveDialog, vtkKWMessageDialog, vtkKWSaveImageDialog, vtkKWSimpleEntryDialog, vtkKWSplashScreen, vtkKWTclInteractor, vtkKWTkcon, vtkKWWindow, vtkKWWindowBase, vtkPVComparativeVisDialog, vtkPVComparativeVisManagerGUI, vtkPVComparativeVisProgressDialog, vtkPVConnectDialog, vtkPVErrorLogDisplay, vtkPVGhostLevelDialog, vtkPVLookmarkManager, vtkPVSaveBatchScriptDialog, vtkPVServerFileDialog, vtkPVTimerLogDisplay, vtkPVTraceFileDialog, and vtkPVWindow.

virtual void vtkKWTopLevel::Display  )  [virtual]
 

Display the toplevel. Hide it with the Withdraw() method. This also call DeIconify(), Focus() and Raise()

Reimplemented in vtkKWDialog, vtkKWSplashScreen, vtkPVLookmarkManager, and vtkPVTimerLogDisplay.

virtual void vtkKWTopLevel::Withdraw  )  [virtual]
 

Arranges for window to be withdrawn from the screen. This causes the window to be unmapped and forgotten about by the window manager.

Reimplemented in vtkPVLookmarkManager.

virtual void vtkKWTopLevel::SetModal int   )  [virtual]
 

Inform the window manager that this toplevel should be modal. If it is set, Display() will bring up the toplevel and grab it. Withdraw() will bring down the toplevel, and release the grab.

virtual void vtkKWTopLevel::ModalOn  )  [virtual]
 

Inform the window manager that this toplevel should be modal. If it is set, Display() will bring up the toplevel and grab it. Withdraw() will bring down the toplevel, and release the grab.

virtual void vtkKWTopLevel::ModalOff  )  [virtual]
 

Inform the window manager that this toplevel should be modal. If it is set, Display() will bring up the toplevel and grab it. Withdraw() will bring down the toplevel, and release the grab.

virtual int vtkKWTopLevel::GetModal  )  [virtual]
 

Inform the window manager that this toplevel should be modal. If it is set, Display() will bring up the toplevel and grab it. Withdraw() will bring down the toplevel, and release the grab.

virtual void vtkKWTopLevel::SetDisplayPosition int   )  [virtual]
 

Set/Get the position this toplevel should be centered at when Display() is called. The default setting, Default, is to not set/change the position at all and let the user or the window manager place the toplevel. If set to MasterWindowCenter, the toplevel is centered inside its master window ; if the MasterWindow ivar is not set, it is centered on the screen, which is similar to the ScreenCenter setting. If set to Pointer, the toplevel is centered at the current mouse position. On some sytem, the default setting can lead the window manager to place the window at the upper left corner (0, 0) the first time it is displayed. Since this can be fairly annoying, the MasterWindowCenterFirst and ScreenCenterFirst can be used to center the toplevel relative to the master window or the screen only the first time it is displayed (after that, the toplevel will be displayed wherever it was left). BTX

virtual int vtkKWTopLevel::GetDisplayPosition  )  [virtual]
 

Set/Get the position this toplevel should be centered at when Display() is called. The default setting, Default, is to not set/change the position at all and let the user or the window manager place the toplevel. If set to MasterWindowCenter, the toplevel is centered inside its master window ; if the MasterWindow ivar is not set, it is centered on the screen, which is similar to the ScreenCenter setting. If set to Pointer, the toplevel is centered at the current mouse position. On some sytem, the default setting can lead the window manager to place the window at the upper left corner (0, 0) the first time it is displayed. Since this can be fairly annoying, the MasterWindowCenterFirst and ScreenCenterFirst can be used to center the toplevel relative to the master window or the screen only the first time it is displayed (after that, the toplevel will be displayed wherever it was left). BTX

virtual void vtkKWTopLevel::SetDisplayPositionToDefault  )  [inline, virtual]
 

Set/Get the position this toplevel should be centered at when Display() is called. The default setting, Default, is to not set/change the position at all and let the user or the window manager place the toplevel. If set to MasterWindowCenter, the toplevel is centered inside its master window ; if the MasterWindow ivar is not set, it is centered on the screen, which is similar to the ScreenCenter setting. If set to Pointer, the toplevel is centered at the current mouse position. On some sytem, the default setting can lead the window manager to place the window at the upper left corner (0, 0) the first time it is displayed. Since this can be fairly annoying, the MasterWindowCenterFirst and ScreenCenterFirst can be used to center the toplevel relative to the master window or the screen only the first time it is displayed (after that, the toplevel will be displayed wherever it was left). BTX

Definition at line 105 of file vtkKWTopLevel.h.

References DisplayPositionDefault.

virtual void vtkKWTopLevel::SetDisplayPositionToMasterWindowCenter  )  [inline, virtual]
 

Set/Get the position this toplevel should be centered at when Display() is called. The default setting, Default, is to not set/change the position at all and let the user or the window manager place the toplevel. If set to MasterWindowCenter, the toplevel is centered inside its master window ; if the MasterWindow ivar is not set, it is centered on the screen, which is similar to the ScreenCenter setting. If set to Pointer, the toplevel is centered at the current mouse position. On some sytem, the default setting can lead the window manager to place the window at the upper left corner (0, 0) the first time it is displayed. Since this can be fairly annoying, the MasterWindowCenterFirst and ScreenCenterFirst can be used to center the toplevel relative to the master window or the screen only the first time it is displayed (after that, the toplevel will be displayed wherever it was left). BTX

Definition at line 108 of file vtkKWTopLevel.h.

References DisplayPositionMasterWindowCenter.

virtual void vtkKWTopLevel::SetDisplayPositionToMasterWindowCenterFirst  )  [inline, virtual]
 

Set/Get the position this toplevel should be centered at when Display() is called. The default setting, Default, is to not set/change the position at all and let the user or the window manager place the toplevel. If set to MasterWindowCenter, the toplevel is centered inside its master window ; if the MasterWindow ivar is not set, it is centered on the screen, which is similar to the ScreenCenter setting. If set to Pointer, the toplevel is centered at the current mouse position. On some sytem, the default setting can lead the window manager to place the window at the upper left corner (0, 0) the first time it is displayed. Since this can be fairly annoying, the MasterWindowCenterFirst and ScreenCenterFirst can be used to center the toplevel relative to the master window or the screen only the first time it is displayed (after that, the toplevel will be displayed wherever it was left). BTX

Definition at line 111 of file vtkKWTopLevel.h.

References DisplayPositionMasterWindowCenterFirst.

virtual void vtkKWTopLevel::SetDisplayPositionToScreenCenter  )  [inline, virtual]
 

Set/Get the position this toplevel should be centered at when Display() is called. The default setting, Default, is to not set/change the position at all and let the user or the window manager place the toplevel. If set to MasterWindowCenter, the toplevel is centered inside its master window ; if the MasterWindow ivar is not set, it is centered on the screen, which is similar to the ScreenCenter setting. If set to Pointer, the toplevel is centered at the current mouse position. On some sytem, the default setting can lead the window manager to place the window at the upper left corner (0, 0) the first time it is displayed. Since this can be fairly annoying, the MasterWindowCenterFirst and ScreenCenterFirst can be used to center the toplevel relative to the master window or the screen only the first time it is displayed (after that, the toplevel will be displayed wherever it was left). BTX

Definition at line 114 of file vtkKWTopLevel.h.

References DisplayPositionScreenCenter.

virtual void vtkKWTopLevel::SetDisplayPositionToScreenCenterFirst  )  [inline, virtual]
 

Set/Get the position this toplevel should be centered at when Display() is called. The default setting, Default, is to not set/change the position at all and let the user or the window manager place the toplevel. If set to MasterWindowCenter, the toplevel is centered inside its master window ; if the MasterWindow ivar is not set, it is centered on the screen, which is similar to the ScreenCenter setting. If set to Pointer, the toplevel is centered at the current mouse position. On some sytem, the default setting can lead the window manager to place the window at the upper left corner (0, 0) the first time it is displayed. Since this can be fairly annoying, the MasterWindowCenterFirst and ScreenCenterFirst can be used to center the toplevel relative to the master window or the screen only the first time it is displayed (after that, the toplevel will be displayed wherever it was left). BTX

Definition at line 117 of file vtkKWTopLevel.h.

References DisplayPositionScreenCenterFirst.

virtual void vtkKWTopLevel::SetDisplayPositionToPointer  )  [inline, virtual]
 

Set/Get the position this toplevel should be centered at when Display() is called. The default setting, Default, is to not set/change the position at all and let the user or the window manager place the toplevel. If set to MasterWindowCenter, the toplevel is centered inside its master window ; if the MasterWindow ivar is not set, it is centered on the screen, which is similar to the ScreenCenter setting. If set to Pointer, the toplevel is centered at the current mouse position. On some sytem, the default setting can lead the window manager to place the window at the upper left corner (0, 0) the first time it is displayed. Since this can be fairly annoying, the MasterWindowCenterFirst and ScreenCenterFirst can be used to center the toplevel relative to the master window or the screen only the first time it is displayed (after that, the toplevel will be displayed wherever it was left). BTX

Definition at line 120 of file vtkKWTopLevel.h.

References DisplayPositionPointer.

virtual void vtkKWTopLevel::DeIconify  )  [virtual]
 

Arrange for the toplevel to be displayed in normal (non-iconified) form. This is done by mapping the window.

virtual void vtkKWTopLevel::Raise  )  [virtual]
 

Arranges for window to be displayed above all of its siblings in the stacking order.

virtual void vtkKWTopLevel::SetTitle const char *   )  [virtual]
 

Set the title of the toplevel.

virtual char* vtkKWTopLevel::GetTitle  )  [virtual]
 

Set the title of the toplevel.

Reimplemented in vtkKWWindowBase.

virtual int vtkKWTopLevel::SetPosition int  x,
int  y
[virtual]
 

Convenience method to set/get the window position in screen pixel coordinates. No effect if called before Create() Return 1 on success, 0 otherwise.

virtual int vtkKWTopLevel::GetPosition int *  x,
int *  y
[virtual]
 

Convenience method to set/get the window position in screen pixel coordinates. No effect if called before Create() Return 1 on success, 0 otherwise.

virtual int vtkKWTopLevel::SetSize int  w,
int  h
[virtual]
 

Convenience method to set/get the window size in pixels No effect if called before Create() This will in turn call GetWidget() and GetHeight() Return 1 on success, 0 otherwise.

virtual int vtkKWTopLevel::GetSize int *  w,
int *  h
[virtual]
 

Convenience method to set/get the window size in pixels No effect if called before Create() This will in turn call GetWidget() and GetHeight() Return 1 on success, 0 otherwise.

virtual int vtkKWTopLevel::GetWidth  )  [virtual]
 

Convenience method to guess the width/height of the toplevel.

virtual int vtkKWTopLevel::GetHeight  )  [virtual]
 

Convenience method to guess the width/height of the toplevel.

virtual int vtkKWTopLevel::SetMinimumSize int  w,
int  h
[virtual]
 

Convenience method to set/get the minimum window size. For gridded windows the dimensions are specified in grid units; otherwise they are specified in pixel units. The window manager will restrict the window's dimensions to be greater than or equal to width and height. No effect if called before Create() Return 1 on success, 0 otherwise.

virtual int vtkKWTopLevel::GetMinimumSize int *  w,
int *  h
[virtual]
 

Convenience method to set/get the minimum window size. For gridded windows the dimensions are specified in grid units; otherwise they are specified in pixel units. The window manager will restrict the window's dimensions to be greater than or equal to width and height. No effect if called before Create() Return 1 on success, 0 otherwise.

virtual int vtkKWTopLevel::SetGeometry const char *   )  [virtual]
 

Convenience method to set/get the window size and position in screen pixel coordinates as a geometry format wxh+x+y (ex: 800x700+20+50). No effect if called before Create() SetGeometry will return 1 on success, 0 otherwise. GetGeometry will return the geometry in a temporary buffer on success (copy the value to another string buffer as soon as possible), or NULL otherwise

virtual const char* vtkKWTopLevel::GetGeometry  )  [virtual]
 

Convenience method to set/get the window size and position in screen pixel coordinates as a geometry format wxh+x+y (ex: 800x700+20+50). No effect if called before Create() SetGeometry will return 1 on success, 0 otherwise. GetGeometry will return the geometry in a temporary buffer on success (copy the value to another string buffer as soon as possible), or NULL otherwise

virtual void vtkKWTopLevel::SetHideDecoration int   )  [virtual]
 

Set/Get if the toplevel should be displayed without decorations (i.e. ignored by the window manager). Default to 0. If not decorated, the toplevel will usually be displayed without a title bar, resizing handles, etc.

virtual int vtkKWTopLevel::GetHideDecoration  )  [virtual]
 

Set/Get if the toplevel should be displayed without decorations (i.e. ignored by the window manager). Default to 0. If not decorated, the toplevel will usually be displayed without a title bar, resizing handles, etc.

virtual void vtkKWTopLevel::HideDecorationOn  )  [virtual]
 

Set/Get if the toplevel should be displayed without decorations (i.e. ignored by the window manager). Default to 0. If not decorated, the toplevel will usually be displayed without a title bar, resizing handles, etc.

virtual void vtkKWTopLevel::HideDecorationOff  )  [virtual]
 

Set/Get if the toplevel should be displayed without decorations (i.e. ignored by the window manager). Default to 0. If not decorated, the toplevel will usually be displayed without a title bar, resizing handles, etc.

vtkKWMenu* vtkKWTopLevel::GetMenu  ) 
 

Get the menu associated to this toplevel. Note that this menu is created on the fly to lower the footprint of this object.

virtual void vtkKWTopLevel::SetDeleteWindowProtocolCommand vtkObject *  obj,
const char *  command
[virtual]
 

Convenience method to set the command used to manage window manage protocol WM_DELETE_WINDOW. Called when the user closes the window using the window manager. The first argument is the object that will have the method called on it. The second is the name of the method to be called and any arguments in string form.

virtual void vtkKWTopLevel::SetIconName const char *  name  )  [virtual]
 

Convenience method to set the name inside the icon associated to this window/toplevel.

virtual void vtkKWTopLevel::SetResizable int  w,
int  h
[virtual]
 

Set whether or not the user may interactively resize the toplevel window. The parameters are boolean values that determine whether the width and height of the window may be modified by the user. No effect if called before Create()

virtual void vtkKWTopLevel::UpdateEnableState  )  [virtual]
 

Update the "enable" state of the object and its internal parts. Depending on different Ivars (this->Enabled, the application's Limited Edition Mode, etc.), the "enable" state of the object is updated and propagated to its internal parts/subwidgets. This will, for example, enable/disable parts of the widget UI, enable/disable the visibility of 3D widgets, etc.

Reimplemented from vtkKWWidget.

Reimplemented in vtkKWSplashScreen, vtkKWTclInteractor, vtkKWTkcon, vtkKWWindow, vtkKWWindowBase, vtkPVComparativeVisManagerGUI, vtkPVLookmarkManager, vtkPVTimerLogDisplay, and vtkPVWindow.

virtual int vtkKWTopLevel::GetRequestedWidth  )  [protected, virtual]
 

Convenience method to get the width/height of the toplevel as requested by the window manager. Not exposed in public since it is so Tk related. Is is usually used to get the geometry of a window before it is mapped to screen, as requested by the geometry manager.

Reimplemented in vtkKWSplashScreen.

virtual int vtkKWTopLevel::GetRequestedHeight  )  [protected, virtual]
 

Convenience method to get the width/height of the toplevel as requested by the window manager. Not exposed in public since it is so Tk related. Is is usually used to get the geometry of a window before it is mapped to screen, as requested by the geometry manager.

Reimplemented in vtkKWSplashScreen.

virtual int vtkKWTopLevel::ComputeDisplayPosition int *  x,
int *  y
[protected, virtual]
 

Compute the display position (centered or at pointer) Return 1 on success, 0 otherwise

virtual void vtkKWTopLevel::PostCreate  )  [protected, virtual]
 

Setup transient, protocol, title and other settings right after the widget has been created. This can be used by subclass that really need to create the toplevel manually, but want to have the ivar setup properly


Member Data Documentation

vtkKWWidget* vtkKWTopLevel::MasterWindow [protected]
 

Definition at line 229 of file vtkKWTopLevel.h.

vtkKWMenu* vtkKWTopLevel::Menu [protected]
 

Definition at line 230 of file vtkKWTopLevel.h.

char* vtkKWTopLevel::Title [protected]
 

Definition at line 232 of file vtkKWTopLevel.h.

char* vtkKWTopLevel::WindowClass [protected]
 

Definition at line 233 of file vtkKWTopLevel.h.

int vtkKWTopLevel::HideDecoration [protected]
 

Definition at line 235 of file vtkKWTopLevel.h.

int vtkKWTopLevel::Modal [protected]
 

Definition at line 236 of file vtkKWTopLevel.h.

int vtkKWTopLevel::DisplayPosition [protected]
 

Definition at line 237 of file vtkKWTopLevel.h.


The documentation for this class was generated from the following file:
Generated on Tue May 30 12:45:57 2006 for ParaView by doxygen 1.3.5