]> git.tdb.fi Git - libs/gui.git/blobdiff - source/gbase/drawcontext.h
Drop Id tags and copyright notices from files
[libs/gui.git] / source / gbase / drawcontext.h
index b21ac3cde57714bbdc8c05d75bf594a718ff808f..27174793edb063c04b6217c0f3f9774c3d6d088f 100644 (file)
@@ -1,18 +1,6 @@
-/* $Id$
-
-This file is part of libmspgbase
-Copyright © 2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_GBASE_DRAWCONTEXT_H_
 #define MSP_GBASE_DRAWCONTEXT_H_
 
-#ifndef WIN32
-#include <X11/Xlib.h>
-#include <X11/extensions/XShm.h>
-#endif
-
 namespace Msp {
 namespace Graphics {
 
@@ -22,13 +10,11 @@ class Window;
 class DrawContext
 {
 private:
+       struct Private;
+
        Display &display;
        Window &window;
-#ifndef WIN32
-       XImage *image;
-       bool use_shm;
-       XShmSegmentInfo shminfo;
-#endif
+       Private *priv;
 
 public:
        DrawContext(Window &);