00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00051 #ifndef __vtkOpenGLImageWindow_h
00052 #define __vtkOpenGLImageWindow_h
00053
00054 #include <stdlib.h>
00055 #include <X11/X.h>
00056 #include <X11/Xlib.h>
00057 #include <X11/Xutil.h>
00058 #include "vtkXImageWindow.h"
00059 #include "GL/glx.h"
00060
00061
00062 class VTK_EXPORT vtkOpenGLImageWindow : public vtkXImageWindow
00063 {
00064 public:
00065 static vtkOpenGLImageWindow *New();
00066 vtkTypeMacro(vtkOpenGLImageWindow,vtkXImageWindow);
00067 void PrintSelf(ostream& os, vtkIndent indent);
00068
00070 virtual void MakeDefaultWindow();
00071
00073 void SwapBuffers();
00074
00076 void Frame();
00077
00079 void Render();
00080
00082 virtual void *GetGenericDisplayId() {return (void *)this->DisplayId;};
00083 virtual void *GetGenericWindowId() {return (void *)this->WindowId;};
00084 virtual void *GetGenericParentId() {return (void *)this->ParentId;};
00085 virtual void *GetGenericContext();
00086 virtual void *GetGenericDrawable() {return (void *)this->WindowId;};
00087
00089 virtual Colormap GetDesiredColormap();
00090 virtual Visual *GetDesiredVisual();
00091 XVisualInfo *GetDesiredVisualInfo();
00092 virtual int GetDesiredDepth();
00093
00095 virtual unsigned char *GetPixelData(int x,int y,int x2,int y2,int front);
00096 virtual void SetPixelData(int x,int y,int x2,int y2,unsigned char *,
00097 int front);
00098
00100 virtual float *GetRGBAPixelData(int x,int y,int x2,int y2,int front);
00101 virtual void SetRGBAPixelData(int x,int y,int x2,int y2,float *,int front,
00102 int blend=0);
00103
00105 void MakeCurrent();
00106
00108 virtual void EraseWindow() {this->vtkImageWindow::EraseWindow();};
00109
00110 GLXContext ContextId;
00111
00112 protected:
00113 vtkOpenGLImageWindow();
00114 ~vtkOpenGLImageWindow();
00115 vtkOpenGLImageWindow(const vtkOpenGLImageWindow&) {};
00116 void operator=(const vtkOpenGLImageWindow&) {};
00117 };
00118
00119
00120 #endif
00121