]> git.sesse.net Git - ccbs/blobdiff - bigscreen/screen.h
Replace 800x600 width a resolution from a .h file. Lots of positions are still hardco...
[ccbs] / bigscreen / screen.h
index 098a7f08e7a2e93042dd75f1acd0d4a424952070..e519279829c694e012fc478b31f7ce811eefc7e4 100644 (file)
@@ -1,13 +1,18 @@
 #ifndef _SCREEN_H
 #define _SCREEN_H 1
 
-class Screen {
+#include "resolution.h"
+
+// arf, Screen conflicts with X11
+class GenericScreen {
 protected:
-       Screen();
+       GenericScreen();
 
 public:
+       virtual ~GenericScreen();
        virtual bool check_invalidated() = 0;
        virtual void draw(unsigned char *buf) = 0;
+       virtual int get_priority();
 };
 
 #endif /* !defined(_SCREEN_H) */