#ifndef _X11WINDOW_H #define _X11WINDOW_H #include "GLWindow.h" #if defined HAVE_X11 && HAVE_X11 #include #include #include #include #include #include class X11Window : public GLWindow { public: int screen; Window win; Display *dpy; GLXContext ctx; XSetWindowAttributes attr; Bool fs; Bool doubleBuffered; XF86VidModeModeInfo deskMode; float MValueX, MValueY; virtual void SwapBuffers(); virtual void SetWindowText(const char *text); virtual bool PeekMessages(); virtual void Update(); virtual bool MakeCurrent(); ~X11Window(); X11Window(int _iwidth, int _iheight); }; #else class X11Window : public GLWindow { public: X11Window(int _iwidth, int _iheight) {} }; #endif #endif