f934ed599264eee959dbef66840b38c072d80b19
[enigma2.git] / lib / gui / elistboxcontent.h
1 #ifndef __lib_gui_elistboxcontent_h
2 #define __lib_gui_elistboxcontent_h
3
4 #include <lib/python/python.h>
5 #include <lib/gui/elistbox.h>
6
7 class eListboxPythonStringContent: public virtual iListboxContent
8 {
9         DECLARE_REF(eListboxPythonStringContent);
10 public:
11         eListboxPythonStringContent();
12         ~eListboxPythonStringContent();
13
14         void setList(SWIG_PYOBJECT(ePyObject) list);
15         PyObject *getCurrentSelection();
16         int getCurrentSelectionIndex() { return m_cursor; }
17         void invalidateEntry(int index);
18         void invalidate();
19         eSize getItemSize() { return m_itemsize; }
20 #ifndef SWIG
21 protected:
22         void cursorHome();
23         void cursorEnd();
24         int cursorMove(int count=1);
25         int cursorValid();
26         int cursorSet(int n);
27         int cursorGet();
28         virtual int currentCursorSelectable();
29                 
30         void cursorSave();
31         void cursorRestore();
32         int size();
33         
34         RESULT connectItemChanged(const Slot0<void> &itemChanged, ePtr<eConnection> &connection);
35         
36         // void setOutputDevice ? (for allocating colors, ...) .. requires some work, though
37         void setSize(const eSize &size);
38         
39                 /* the following functions always refer to the selected item */
40         virtual void paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected);
41         
42         int getItemHeight() { return m_itemheight; }
43
44 protected:
45         ePyObject m_list;
46         int m_cursor, m_saved_cursor;
47         eSize m_itemsize;
48         int m_itemheight;
49 #endif
50 };
51
52 class eListboxPythonConfigContent: public eListboxPythonStringContent
53 {
54 public:
55         void paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected);
56         void setSeperation(int sep) { m_seperation = sep; }
57         int currentCursorSelectable();
58 private:
59         int m_seperation;
60 };
61
62 class eListboxPythonMultiContent: public eListboxPythonStringContent
63 {
64         ePyObject m_buildFunc;
65 public:
66         eListboxPythonMultiContent();
67         ~eListboxPythonMultiContent();
68         enum { TYPE_TEXT, TYPE_PROGRESS, TYPE_PIXMAP, TYPE_PIXMAP_ALPHATEST };
69         void paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected);
70         int currentCursorSelectable();
71         
72         void setFont(int fnt, gFont *fnt);
73         void setBuildFunc(SWIG_PYOBJECT(ePyObject) func);
74         void setItemHeight(int height);
75 private:
76         std::map<int, ePtr<gFont> > m_font;
77 };
78
79 #ifdef SWIG
80 #define RT_HALIGN_LEFT 0
81 #define RT_HALIGN_RIGHT 1
82 #define RT_HALIGN_CENTER 2
83 #define RT_HALIGN_BLOCK 4
84 #define RT_VALIGN_TOP 0
85 #define RT_VALIGN_CENTER 8
86 #define RT_VALIGN_BOTTOM 16
87 #define RT_WRAP 32
88 #endif // SWIG
89
90 #endif