yes! ich habs kaputt gemacht! (doesn't compile anymore, doesn't work anymore,
[vuplus_dvbapp] / lib / gdi / glcddc.h
index 9342e5e..d4cfab8 100644 (file)
@@ -4,20 +4,21 @@
 #define __glcddc_h
 
 #include "grc.h"
+#include <lib/gdi/lcd.h>
 
-class eLCD;
-
-class gLCDDC: public gPixmapDC
+class gLCDDC: public gDC
 {
        eLCD *lcd;
        static gLCDDC *instance;
        int update;
        void exec(gOpcode *opcode);
+       gSurface surface;
 public:
        gLCDDC(eLCD *lcd);
        ~gLCDDC();
        void setUpdate(int update);
        static gLCDDC *getInstance();
+       int islocked() { return lcd->islocked(); }
 };