dont show display contrast setting in display setup when a oled is detected
[enigma2.git] / lib / gdi / lcd.h
index 567d06494273dd46b0700e1a385ed290b0ed3119..e45d88b210289848973a72196dcbe035e59c3250 100644 (file)
@@ -1,5 +1,3 @@
-#ifndef DISABLE_LCD
-
 #ifndef __lcd_h
 #define __lcd_h
 
 #ifndef __lcd_h
 #define __lcd_h
 
 
 class eLCD
 {
 
 class eLCD
 {
+#ifdef SWIG
+       eLCD(eSize size);
+       ~eLCD();
+#else
 protected:
        eSize res;
        unsigned char *_buffer;
        int lcdfd;
        int _stride;
        int locked;
 protected:
        eSize res;
        unsigned char *_buffer;
        int lcdfd;
        int _stride;
        int locked;
+#endif
 public:
        int lock();
        void unlock();
 public:
        int lock();
        void unlock();
-
+       int islocked() { return locked; }
+#ifndef SWIG
        eLCD(eSize size);
        virtual ~eLCD();
        eLCD(eSize size);
        virtual ~eLCD();
-
        __u8 *buffer() { return (__u8*)_buffer; }
        int stride() { return _stride; }
        eSize size() { return res; }
        
        virtual void update()=0;
        __u8 *buffer() { return (__u8*)_buffer; }
        int stride() { return _stride; }
        eSize size() { return res; }
        
        virtual void update()=0;
+#endif
 };
 
 class eDBoxLCD: public eLCD
 {
        static eDBoxLCD *instance;
        unsigned char inverted;
 };
 
 class eDBoxLCD: public eLCD
 {
        static eDBoxLCD *instance;
        unsigned char inverted;
+       int is_oled;
+#ifdef SWIG
+       eDBoxLCD();
+       ~eDBoxLCD();
+#endif
 public:
 public:
-       static eDBoxLCD *getInstance();
-       int switchLCD(int state);
-       int setLCDParameter(int brightness, int contrast);
-       void setInverted( unsigned char );
+#ifndef SWIG
        eDBoxLCD();
        ~eDBoxLCD();
        eDBoxLCD();
        ~eDBoxLCD();
+#endif
+       static eDBoxLCD *getInstance();
+       int setLCDContrast(int contrast);
+       int setLCDBrightness(int brightness);
+       void setInverted( unsigned char );
+       bool isOled() const { return !!is_oled; }
        void update();
 };
 
 #endif
        void update();
 };
 
 #endif
-
-#endif //DISABLE_LCD