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

Rendering/vtkTkImageViewerWidget.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkTkImageViewerWidget.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 =========================================================================*/
00035 #ifndef __vtkTkImageViewerWidget_h
00036 #define __vtkTkImageViewerWidget_h
00037 
00038 #include "vtkImageViewer.h"
00039 #include "vtkTcl.h"
00040 #include "vtkTk.h"
00041 #ifndef VTK_PYTHON_BUILD
00042 #include "vtkTclUtil.h"
00043 #endif
00044 
00045 struct vtkTkImageViewerWidget
00046 {
00047   Tk_Window  TkWin;             /* Tk window structure */
00048   Tcl_Interp *Interp;           /* Tcl interpreter */
00049   int Width;
00050   int Height;
00051   vtkImageViewer *ImageViewer;
00052   char *IV;
00053 #ifdef _WIN32
00054   WNDPROC OldProc;
00055 #endif
00056 };
00057 
00058 #endif
00059 
00060 
00061 
00062 
00063 
00064 
00065 
00066