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   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00039 #ifndef __vtkTkImageViewerWidget_h
00040 #define __vtkTkImageViewerWidget_h
00041 
00042 #include "vtkImageViewer.h"
00043 #include <tcl.h>
00044 #include <tk.h>
00045 #ifndef VTK_PYTHON_BUILD
00046 #include "vtkTclUtil.h"
00047 #endif
00048 
00049 struct vtkTkImageViewerWidget
00050 {
00051   Tk_Window  TkWin;             /* Tk window structure */
00052   Tcl_Interp *Interp;           /* Tcl interpreter */
00053   int Width;
00054   int Height;
00055   vtkImageViewer *ImageViewer;
00056   char *IV;
00057 #ifdef _WIN32
00058   WNDPROC OldProc;
00059 #endif
00060 };
00061 
00062 #endif
00063 
00064 
00065 
00066 
00067 
00068 
00069 
00070