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

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 =========================================================================*/
00049 #ifndef __vtkTkImageViewerWidget_h
00050 #define __vtkTkImageViewerWidget_h
00051 
00052 #include "vtkImageViewer.h"
00053 #include "vtkTcl.h"
00054 #include "vtkTk.h"
00055 #ifndef VTK_PYTHON_BUILD
00056 #include "vtkTclUtil.h"
00057 #endif
00058 
00059 struct vtkTkImageViewerWidget
00060 {
00061   Tk_Window  TkWin;             /* Tk window structure */
00062   Tcl_Interp *Interp;           /* Tcl interpreter */
00063   int Width;
00064   int Height;
00065   vtkImageViewer *ImageViewer;
00066   char *IV;
00067 #ifdef _WIN32
00068   WNDPROC OldProc;
00069 #endif
00070 };
00071 
00072 #endif
00073