do not activate repeated timers first time when the start time is before now time
[vuplus_dvbapp] / lib / gui / elistboxcontent.h
index acf6525..f7e5d2b 100644 (file)
@@ -58,12 +58,16 @@ private:
 
 class eListboxPythonMultiContent: public eListboxPythonStringContent
 {
+       PyObject *m_buildFunc;
 public:
+       eListboxPythonMultiContent();
+       ~eListboxPythonMultiContent();
        enum { TYPE_TEXT, TYPE_PROGRESS, TYPE_PIXMAP, TYPE_PIXMAP_ALPHATEST };
        void paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected);
        int currentCursorSelectable();
        
        void setFont(int fnt, gFont *fnt);
+       void setBuildFunc(PyObject *func);
 private:
        std::map<int, ePtr<gFont> > m_font;
 };