]> git.tdb.fi Git - libs/gui.git/blobdiff - source/gbase/display.h
Drop Id tags and copyright notices from files
[libs/gui.git] / source / gbase / display.h
index 70efd20627426bed067dbd988b8cac1e1c811c4b..1648fa4c8a9ab0bb25cbe7b4118cf2a06455fd19 100644 (file)
@@ -1,17 +1,9 @@
-/* $Id$
-
-This file is part of libmspgbase
-Copyright © 2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_GBASE_DISPLAY_H_
 #define MSP_GBASE_DISPLAY_H_
 
 #include <list>
 #include <map>
 #include <string>
-#include "types.h"
 
 namespace Msp {
 namespace Graphics {
@@ -30,24 +22,22 @@ struct VideoMode
 
 class Display
 {
+public:
+       struct Private;
+
 private:
-#ifndef WIN32
-       ::Display *display;
-#endif
        std::list<VideoMode> modes;
        VideoMode orig_mode;
-       std::map<WindowHandle, Window *> windows;
+       Private *priv;
 
 public:
        Display(const std::string &disp_name=std::string());
        ~Display();
 
-#ifndef WIN32
-       ::Display *get_display() const { return display; }
-#endif
+       const Private &get_private() const { return *priv; }
 
-       void add_window(Window *);
-       void remove_window(Window *);
+       void add_window(Window &);
+       void remove_window(Window &);
 
        const std::list<VideoMode> &get_modes() const { return modes; }
        void set_mode(const VideoMode &);