]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Video.hh
refactoring needed for win32 crash
[chaz/yoink] / src / Moof / Video.hh
index bb1fdd48db9b168a086be687c6cc2f51fe55a284..0199bc51dc43e3a38508fae9da2d81149b4a7ac0 100644 (file)
 
 #include <SDL/SDL.h>
 
+#include <Moof/Core.hh>
+
 
 namespace Mf {
 
 
+class Video;
+typedef boost::shared_ptr<Video> VideoP;
+
+
 class Video
 {
 public:
+
        struct Attributes
        {
                // OpenGL attributes
@@ -67,11 +74,21 @@ public:
                bool            cursorGrab;
 
                Attributes();
+
+       private:
+
+               Backend         backend;
        };
 
+
+       static VideoP alloc(const std::string& caption, const std::string& icon)
+       {
+               return VideoP(new Video(caption, icon));
+       }
+
        Video();
        explicit Video(const Attributes& attribs);
-       explicit Video(const std::string& caption, const std::string& icon);
+       Video(const std::string& caption, const std::string& icon);
        ~Video();
 
        void setVideoMode(const long mode[3]);
@@ -83,6 +100,8 @@ public:
        void setCaption(const std::string& caption);
        std::string getCaption() const;
 
+       const std::string& getIcon() const;
+
        void setFull(bool full);
        void toggleFull();
        bool isFull() const;
@@ -99,17 +118,13 @@ public:
        void toggleCursorGrab();
        bool isCursorGrab() const;
 
-       void makeActive();
        void swap();
 
-
-       struct Exception : public std::runtime_error
-       {
-               explicit Exception(const std::string& what_arg) :
-                       std::runtime_error(what_arg) {}
-       };
+       int getWidth() const;
+       int getHeight() const;
 
 private:
+
        void init(const Attributes& attribs);
 
        void recreateContext();
@@ -117,12 +132,15 @@ private:
 
        void setIcon();
 
-       SDL_Surface* context_;
-       unsigned flags_;
-       Attributes attribs_;
+       // TODO this implementation should be hidden
+
+       SDL_Surface*    mContext;
+       unsigned                mFlags;
+       Attributes              mAttribs;
 };
 
-typedef boost::shared_ptr<Video> VideoPtr;
+
+extern Video* video;
 
 
 } // namespace Mf
This page took 0.022899 seconds and 4 git commands to generate.