fixed refcount of eListboxPythonStringContent
[enigma2.git] / lib / gdi / glcddc.h
index 9342e5e226c91fbe5f239769707d27a4ba6acab5..d4cfab82aad40f80af397191a13cc02d13ce5686 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(); }
 };