fix bug: last char in removeDVBChars was removed
[enigma2.git] / lib / gui / elistboxcontent.h
index 0c4cb00120b6fc6e06311accf7a6f0e1f37ee15f..11a9d080f5525cea7af91fd88b360eb4c0090c2f 100644 (file)
@@ -83,6 +83,8 @@ public:
        void setList(PyObject *list);
        PyObject *getCurrentSelection();
        int getCurrentSelectionIndex() { return m_cursor; }
+       void invalidateEntry(int index);
+       void invalidate();
 #ifndef SWIG
 protected:
        void cursorHome();
@@ -115,10 +117,19 @@ class eListboxPythonConfigContent: public eListboxPythonStringContent
 {
 public:
        void paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected);
-       void invalidateEntry(int index);
        void setSeperation(int sep) { m_seperation = sep; }
 private:
        int m_seperation;
 };
 
+class eListboxPythonMultiContent: public eListboxPythonStringContent
+{
+public:
+       void paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected);
+       
+       void setFont(int fnt, gFont *fnt);
+private:
+       std::map<int, ePtr<gFont> > m_font;
+};
+
 #endif