predeclare eListbox because it is used by iListboxContent
[enigma2.git] / lib / gui / elistbox.h
1 #ifndef __lib_listbox_h
2 #define __lib_listbox_h
3
4 #include <lib/gui/ewidget.h>
5 #include <connection.h>
6
7 class eListbox;
8 class eSlider;
9
10 class iListboxContent: public iObject
11 {
12 public:
13         virtual ~iListboxContent()=0;
14         
15                 /* indices go from 0 to size().
16                    the end is reached when the cursor is on size(), 
17                    i.e. one after the last entry (this mimics 
18                    stl behaviour)
19                    
20                    cursors never invalidate - they can become invalid
21                    when stuff is removed. Cursors will always try
22                    to stay on the same data, however when the current
23                    item is removed, this won't work. you'll be notified
24                    anyway. */
25 #ifndef SWIG    
26 protected:
27         iListboxContent();
28         friend class eListbox;
29         virtual void cursorHome()=0;
30         virtual void cursorEnd()=0;
31         virtual int cursorMove(int count=1)=0;
32         virtual int cursorValid()=0;
33         virtual int cursorSet(int n)=0;
34         virtual int cursorGet()=0;
35         
36         virtual void cursorSave()=0;
37         virtual void cursorRestore()=0;
38         
39         virtual int size()=0;
40         
41         void setListbox(eListbox *lb);
42         
43         // void setOutputDevice ? (for allocating colors, ...) .. requires some work, though
44         virtual void setSize(const eSize &size)=0;
45         
46                 /* the following functions always refer to the selected item */
47         virtual void paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected)=0;
48         
49         eListbox *m_listbox;
50 #endif
51 };
52
53 class eListbox: public eWidget
54 {
55         void updateScrollBar();
56 public:
57         eListbox(eWidget *parent);
58         ~eListbox();
59
60         enum {
61                 showOnDemand,
62                 showAlways,
63                 showNever
64         };
65         void setScrollbarMode(int mode);
66
67         void setContent(iListboxContent *content);
68         
69 /*      enum Movement {
70                 moveUp,
71                 moveDown,
72                 moveTop,
73                 moveEnd,
74                 justCheck
75         }; */
76
77         int getCurrentIndex();
78         void moveSelection(int how);
79         void moveSelectionTo(int index);
80
81         enum ListboxActions {
82                 moveUp,
83                 moveDown,
84                 moveTop,
85                 moveEnd,
86                 pageUp,
87                 pageDown,
88                 justCheck
89         };
90         
91         void setItemHeight(int h);
92         void setSelectionEnable(int en);
93
94 #ifndef SWIG
95                 /* entryAdded: an entry was added *before* the given index. it's index is the given number. */
96         void entryAdded(int index);
97                 /* entryRemoved: an entry with the given index was removed. */
98         void entryRemoved(int index);
99                 /* entryChanged: the entry with the given index was changed and should be redrawn. */
100         void entryChanged(int index);
101                 /* the complete list changed. you should not attemp to keep the current index. */
102         void entryReset(bool cursorHome=true);
103
104 protected:
105         int event(int event, void *data=0, void *data2=0);
106         void recalcSize();
107
108 private:
109         int m_scrollbar_mode, m_prev_scrollbar_page;
110         bool m_content_changed;
111
112         int m_top, m_selected;
113         int m_itemheight;
114         int m_items_per_page;
115         int m_selection_enabled;
116         ePtr<iListboxContent> m_content;
117         eSlider *m_scrollbar;
118 #endif
119 };
120
121 #endif