listbox: add ability to disable selection highlight
[vuplus_dvbapp] / lib / gui / elistbox.cpp
1 #include <lib/gui/elistbox.h>
2 #include <lib/gui/elistboxcontent.h>
3 #include <lib/actions/action.h>
4
5 eListbox::eListbox(eWidget *parent): eWidget(parent)
6 {
7         setContent(new eListboxStringContent());
8
9         ePtr<eActionMap> ptr;
10         eActionMap::getInstance(ptr);
11         
12         m_itemheight = 25;
13         m_selection_enabled = 1;
14         
15         ptr->bindAction("ListboxActions", 0, 0, this);
16 }
17
18 eListbox::~eListbox()
19 {
20         ePtr<eActionMap> ptr;
21         eActionMap::getInstance(ptr);
22         ptr->unbindAction(this, 0);
23 }
24
25 void eListbox::setContent(iListboxContent *content)
26 {
27         m_content = content;
28         if (content)
29                 m_content->setListbox(this);
30         entryReset();
31 }
32
33 void eListbox::moveSelection(int dir)
34 {
35                 /* refuse to do anything without a valid list. */
36         if (!m_content)
37                 return;
38                 
39                 /* we need the old top/sel to see what we have to redraw */
40         int oldtop = m_top;
41         int oldsel = m_selected;
42         
43                 /* first, move cursor */
44         switch (dir)
45         {
46         case moveUp:
47                 m_content->cursorMove(-1);
48                 break;
49         case moveDown:
50                 m_content->cursorMove(1);
51                         /* ok - we could have reached the end. we just go one back then. */
52                 if (!m_content->cursorValid())
53                         m_content->cursorMove(-1);
54                 break;
55         case pageUp:
56                 if (m_content->cursorGet() >= m_items_per_page)
57                 {
58                         m_content->cursorMove(-m_items_per_page);
59                         m_top -= m_items_per_page;
60                         if (m_top < 0)
61                                 m_top = 0;
62                 } else
63                 {
64                         m_top = 0;
65                         m_content->cursorHome();
66                 }
67                 break;
68         case moveTop:
69                 m_content->cursorHome();
70                 m_top = 0; /* align with top, speeds up process */
71                 break;
72
73         case pageDown:
74                 m_content->cursorMove(m_items_per_page);
75                 if (m_content->cursorValid())
76                         break;
77                                 /* fall through */
78         case moveEnd:
79                         /* move to last existing one ("end" is already invalid) */
80                 m_content->cursorEnd(); m_content->cursorMove(-1); 
81                         /* current selection invisible? */
82                 if (m_top + m_items_per_page <= m_content->cursorGet())
83                 {
84                         m_top = m_content->cursorGet() - m_items_per_page + 1;
85                         if (m_top < 0)
86                                 m_top = 0;
87                 }
88                 break;
89         case justCheck:
90                 break;
91         }
92         
93                 /* note that we could be on an invalid cursor position, but we don't
94                    care. this only happens on empty lists, and should have almost no
95                    side effects. */
96         
97                 /* now, look wether the current selection is out of screen */
98         m_selected = m_content->cursorGet();
99         
100         if (m_selected < m_top)
101         {
102                 m_top -= m_items_per_page;
103                 if (m_top < 0)
104                         m_top = 0;
105         } else if (m_selected >= m_top + m_items_per_page)
106         {
107                         /* m_top should be always valid here as it's selected */
108                 m_top += m_items_per_page;
109         }
110
111         if (m_top != oldtop)
112                 invalidate();
113         else if (m_selected != oldsel)
114         {
115                 
116                         /* redraw the old and newly selected */
117                 gRegion inv = eRect(0, m_itemheight * (m_selected-m_top), size().width(), m_itemheight);
118                 inv |= eRect(0, m_itemheight * (oldsel-m_top), size().width(), m_itemheight);
119                 
120                 invalidate(inv);
121         }
122 }
123
124 int eListbox::event(int event, void *data, void *data2)
125 {
126         switch (event)
127         {
128         case evtPaint:
129         {
130                 ePtr<eWindowStyle> style;
131                 
132                 if (!m_content)
133                         return eWidget::event(event, data, data2);
134                 assert(m_content);
135                 
136                 getStyle(style);
137                 
138                 if (!m_content)
139                         return 0;
140                 
141                 gPainter &painter = *(gPainter*)data2;
142                 
143                 m_content->cursorSave();
144                 m_content->cursorMove(m_top - m_selected);
145                 
146                 for (int y = 0, i = 0; i <= m_items_per_page; y += m_itemheight, ++i)
147                 {
148                         m_content->paint(painter, *style, ePoint(0, y), m_selected == m_content->cursorGet() && m_content->size() && m_selection_enabled);
149                         m_content->cursorMove(+1);
150                 }
151                 
152                 m_content->cursorRestore();
153                 
154                 return 0;
155         }
156         case evtChangedSize:
157                 recalcSize();
158                 return eWidget::event(event, data, data2);
159                 
160         case evtAction:
161                 if (isVisible())
162                 {
163                         moveSelection((int)data2);
164                         return 1;
165                 }
166                 return 0;
167         default:
168                 return eWidget::event(event, data, data2);
169         }
170 }
171
172 void eListbox::recalcSize()
173 {
174         m_content->setSize(eSize(size().width(), m_itemheight));
175         m_items_per_page = size().height() / m_itemheight;
176 }
177
178 void eListbox::setItemHeight(int h)
179 {
180         if (h)
181                 m_itemheight = h;
182         else
183                 m_itemheight = 20;
184         recalcSize();
185 }
186
187 void eListbox::setSelectionEnable(int en)
188 {
189         if (m_selection_enabled == en)
190                 return;
191         m_selection_enabled = en;
192         entryChanged(m_selected); /* redraw current entry */
193 }
194
195 void eListbox::entryAdded(int index)
196 {
197                 /* manage our local pointers. when the entry was added before the current position, we have to advance. */
198                 
199                 /* we need to check <= - when the new entry has the (old) index of the cursor, the cursor was just moved down. */
200         if (index <= m_selected)
201                 ++m_selected;
202         if (index <= m_top)
203                 ++m_top;
204                 
205                 /* we have to check wether our current cursor is gone out of the screen. */
206                 /* moveSelection will check for this case */
207         moveSelection(justCheck);
208         
209                 /* now, check if the new index is visible. */
210         if ((m_top <= index) && (index < (m_top + m_items_per_page)))
211         {
212                         /* todo, calc exact invalidation... */
213                 invalidate();
214         }
215 }
216
217 void eListbox::entryRemoved(int index)
218 {
219         if (index == m_selected)
220                 m_selected = m_content->cursorGet();
221
222         moveSelection(justCheck);
223         
224         if ((m_top <= index) && (index < (m_top + m_items_per_page)))
225         {
226                         /* todo, calc exact invalidation... */
227                 invalidate();
228         }
229 }
230
231 void eListbox::entryChanged(int index)
232 {
233         if ((m_top <= index) && (index < (m_top + m_items_per_page)))
234         {
235                 gRegion inv = eRect(0, m_itemheight * (index-m_top), size().width(), m_itemheight);
236                 invalidate(inv);
237         }
238 }
239
240 void eListbox::entryReset()
241 {
242         if (m_content)
243                 m_content->cursorHome();
244         m_top = 0;
245         m_selected = 0;
246         invalidate();
247 }