check if e2 is currently recording before entering the positioner plugin (and prevent...
[enigma2.git] / lib / gui / ewindowstyle.h
index 08ea0a4179105292471819c8a712a359268ffafe..3c9c805b92ef713ef4a4dabdbaca3f0b46d7b47b 100644 (file)
@@ -18,7 +18,8 @@ public:
                styleLabel,
                styleListboxSelected,
                styleListboxNormal,
-               styleListboxMarked
+               styleListboxMarked,
+               styleListboxMarkedAndSelected
        };
        
        virtual void drawFrame(gPainter &painter, const eRect &frame, int type) = 0;
@@ -41,9 +42,15 @@ public:
 class eWindowStyleManager: public iObject
 {
        DECLARE_REF(eWindowStyleManager);
+#ifdef SWIG
+       eWindowStyleManager();
+       ~eWindowStyleManager();
+#endif
 public:
+#ifndef SWIG
        eWindowStyleManager();
        ~eWindowStyleManager();
+#endif
        void getStyle(ePtr<eWindowStyle> &style);
        void setStyle(eWindowStyle *style);
        static int getInstance(ePtr<eWindowStyleManager> &mgr) { mgr = m_instance; if (!mgr) return -1; return 0; }