Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound 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 =========================================================================*/
00053 #ifndef __vtkTkImageViewerWidget_h
00054 #define __vtkTkImageViewerWidget_h
00055 
00056 #include "vtkImageViewer.h"
00057 #include <tcl.h>
00058 #include <tk.h>
00059 #ifndef VTK_PYTHON_BUILD
00060 #include "vtkTclUtil.h"
00061 #endif
00062 
00063 struct vtkTkImageViewerWidget
00064 {
00065   Tk_Window  TkWin;             /* Tk window structure */
00066   Tcl_Interp *Interp;           /* Tcl interpreter */
00067   int Width;
00068   int Height;
00069   vtkImageViewer *ImageViewer;
00070   char *IV;
00071 #ifdef _WIN32
00072   WNDPROC OldProc;
00073 #endif
00074 };
00075 
00076 #endif
00077 
00078 
00079 
00080 
00081 
00082 
00083 
00084