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_RENDERING_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
00083 virtual void *GetGenericDisplayId() {return (void *)this->DisplayId;};
00084 virtual void *GetGenericWindowId() {return (void *)this->WindowId;};
00085 virtual void *GetGenericParentId() {return (void *)this->ParentId;};
00086 virtual void *GetGenericContext();
00087 virtual void *GetGenericDrawable() {return (void *)this->WindowId;};
00089
00091
00092 virtual Colormap GetDesiredColormap();
00093 virtual Visual *GetDesiredVisual();
00094 XVisualInfo *GetDesiredVisualInfo();
00095 virtual int GetDesiredDepth();
00097
00099
00100 virtual unsigned char *GetPixelData(int x,int y,int x2,int y2,int front);
00101 virtual void SetPixelData(int x,int y,int x2,int y2,unsigned char *,
00102 int front);
00104
00106
00107 virtual float *GetRGBAPixelData(int x,int y,int x2,int y2,int front);
00108 virtual void SetRGBAPixelData(int x,int y,int x2,int y2,float *,int front,
00109 int blend=0);
00111
00113 void MakeCurrent();
00114
00116 virtual void EraseWindow() {this->vtkImageWindow::EraseWindow();};
00117
00118 GLXContext ContextId;
00119
00120 protected:
00121 vtkOpenGLImageWindow();
00122 ~vtkOpenGLImageWindow();
00123 private:
00124 vtkOpenGLImageWindow(const vtkOpenGLImageWindow&);
00125 void operator=(const vtkOpenGLImageWindow&);
00126 };
00127
00128
00129 #endif
00130