better fix
[enigma2.git] / lib / gui / elistbox.cpp
1 #include <lib/gui/elistbox.h>
2 #include <lib/gui/elistboxcontent.h>
3 #include <lib/gui/eslider.h>
4 #include <lib/actions/action.h>
5
6 eListbox::eListbox(eWidget *parent)
7         :eWidget(parent), m_prev_scrollbar_page(-1), m_content_changed(false)
8         , m_scrollbar(NULL), m_scrollbar_mode(showNever)
9 {
10         setContent(new eListboxStringContent());
11
12         ePtr<eActionMap> ptr;
13         eActionMap::getInstance(ptr);
14         
15         m_itemheight = 25;
16         m_selection_enabled = 1;
17         
18         ptr->bindAction("ListboxActions", 0, 0, this);
19 }
20
21 eListbox::~eListbox()
22 {
23         ePtr<eActionMap> ptr;
24         eActionMap::getInstance(ptr);
25         ptr->unbindAction(this, 0);
26 }
27
28 void eListbox::setScrollbarMode(int mode)
29 {
30         m_scrollbar_mode = mode;
31         if ( m_scrollbar_mode == showNever && m_scrollbar )
32         {
33                 delete m_scrollbar;
34                 m_scrollbar=0;
35         }
36         else if (!m_scrollbar)
37         {
38                 m_scrollbar = new eSlider(this);
39                 m_scrollbar->hide();
40                 m_scrollbar->setBorderWidth(1);
41                 m_scrollbar->setOrientation(eSlider::orVertical);
42                 m_scrollbar->setRange(0,100);
43         }
44 }
45
46 void eListbox::setContent(iListboxContent *content)
47 {
48         m_content = content;
49         if (content)
50                 m_content->setListbox(this);
51         entryReset();
52 }
53
54 void eListbox::moveSelection(int dir)
55 {
56                 /* refuse to do anything without a valid list. */
57         if (!m_content)
58                 return;
59                 
60                 /* we need the old top/sel to see what we have to redraw */
61         int oldtop = m_top;
62         int oldsel = m_selected;
63         
64                 /* first, move cursor */
65         switch (dir)
66         {
67         case moveUp:
68                 m_content->cursorMove(-1);
69                 break;
70         case moveDown:
71                 m_content->cursorMove(1);
72                         /* ok - we could have reached the end. we just go one back then. */
73                 if (!m_content->cursorValid())
74                         m_content->cursorMove(-1);
75                 break;
76         case pageUp:
77                 if (m_content->cursorGet() >= m_items_per_page)
78                 {
79                         m_content->cursorMove(-m_items_per_page);
80                         m_top -= m_items_per_page;
81                         if (m_top < 0)
82                                 m_top = 0;
83                 } else
84                 {
85                         m_top = 0;
86                         m_content->cursorHome();
87                 }
88                 break;
89         case moveTop:
90                 m_content->cursorHome();
91                 m_top = 0; /* align with top, speeds up process */
92                 break;
93
94         case pageDown:
95                 m_content->cursorMove(m_items_per_page);
96                 if (m_content->cursorValid())
97                         break;
98                                 /* fall through */
99         case moveEnd:
100                         /* move to last existing one ("end" is already invalid) */
101                 m_content->cursorEnd(); m_content->cursorMove(-1); 
102                         /* current selection invisible? */
103                 if (m_top + m_items_per_page <= m_content->cursorGet())
104                 {
105                         m_top = m_content->cursorGet() - m_items_per_page + 1;
106                         if (m_top < 0)
107                                 m_top = 0;
108                 }
109                 break;
110         case justCheck:
111                 break;
112         }
113         
114                 /* note that we could be on an invalid cursor position, but we don't
115                    care. this only happens on empty lists, and should have almost no
116                    side effects. */
117         
118                 /* now, look wether the current selection is out of screen */
119         m_selected = m_content->cursorGet();
120
121         while (m_selected < m_top)
122         {
123                 m_top -= m_items_per_page;
124                 if (m_top < 0)
125                         m_top = 0;
126         }
127         while (m_selected >= m_top + m_items_per_page)
128                 /* m_top should be always valid here as it's selected */
129                 m_top += m_items_per_page;
130
131         if (m_top != oldtop)
132                 invalidate();
133         else if (m_selected != oldsel)
134         {
135                 
136                         /* redraw the old and newly selected */
137                 gRegion inv = eRect(0, m_itemheight * (m_selected-m_top), size().width(), m_itemheight);
138                 inv |= eRect(0, m_itemheight * (oldsel-m_top), size().width(), m_itemheight);
139                 
140                 invalidate(inv);
141         }
142 }
143
144 void eListbox::moveSelectionTo(int index)
145 {
146         m_content->cursorHome();
147         m_content->cursorMove(index);
148         moveSelection(justCheck);
149 }
150
151 void eListbox::updateScrollBar()
152 {
153         int entries = m_content->size();
154         if ( m_content_changed )
155         {
156                 int width = size().width();
157                 int height = size().height();
158                 m_content_changed = false;
159                 if ( entries > m_items_per_page || m_scrollbar_mode == showAlways )
160                 {
161                         int sbarwidth=width/16;
162                         if ( sbarwidth < 18 )
163                                 sbarwidth=18;
164                         if ( sbarwidth > 22 )
165                                 sbarwidth=22;
166                         m_scrollbar->move(ePoint(width-sbarwidth, 0));
167                         m_scrollbar->resize(eSize(sbarwidth, height));
168                         m_content->setSize(eSize(width-sbarwidth-5, m_itemheight));
169                         if ( !m_scrollbar->isVisible() )
170                                 m_scrollbar->show();
171                 }
172                 else if ( m_scrollbar_mode != showAlways )
173                 {
174                         if ( m_scrollbar->isVisible() )
175                         {
176                                 m_content->setSize(eSize(width, m_itemheight));
177                                 m_scrollbar->hide(); // why this hide dont work???
178                         }
179                 }
180         }
181         int curVisiblePage = m_top / m_items_per_page;
182         if ( m_scrollbar->isVisible() &&
183                 m_prev_scrollbar_page != curVisiblePage)
184         {
185                 m_prev_scrollbar_page = curVisiblePage;
186                 int pages = entries / m_items_per_page;
187                 if ( (pages*m_items_per_page) < entries )
188                         ++pages;
189                 int start=(m_top*100)/(pages*m_items_per_page);
190                 int vis=(m_items_per_page*100)/(pages*m_items_per_page);
191                 if (vis < 3)
192                         vis=3;
193                 m_scrollbar->setStartEnd(start,start+vis);
194         }
195 }
196
197 int eListbox::event(int event, void *data, void *data2)
198 {
199         switch (event)
200         {
201         case evtPaint:
202         {
203                 ePtr<eWindowStyle> style;
204                 
205                 if (!m_content)
206                         return eWidget::event(event, data, data2);
207                 assert(m_content);
208                 
209                 getStyle(style);
210                 
211                 if (!m_content)
212                         return 0;
213                 
214                 gPainter &painter = *(gPainter*)data2;
215                 
216                 if (m_scrollbar_mode != showNever)
217                         updateScrollBar();
218                 
219                 m_content->cursorSave();
220                 m_content->cursorMove(m_top - m_selected);
221                 
222                 for (int y = 0, i = 0; i <= m_items_per_page; y += m_itemheight, ++i)
223                 {
224                         m_content->paint(painter, *style, ePoint(0, y), m_selected == m_content->cursorGet() && m_content->size() && m_selection_enabled);
225                         m_content->cursorMove(+1);
226                 }
227
228                 if ( m_scrollbar && m_scrollbar->isVisible() )
229                 {
230                         painter.clip(eRect(m_scrollbar->position() - ePoint(5,0), eSize(5,m_scrollbar->size().height())));
231                         painter.clear();
232                         painter.clippop();
233                 }
234
235                 m_content->cursorRestore();
236
237                 return 0;
238         }
239         case evtChangedSize:
240                 recalcSize();
241                 return eWidget::event(event, data, data2);
242                 
243         case evtAction:
244                 if (isVisible())
245                 {
246                         moveSelection((int)data2);
247                         return 1;
248                 }
249                 return 0;
250         default:
251                 return eWidget::event(event, data, data2);
252         }
253 }
254
255 void eListbox::recalcSize()
256 {
257         m_content_changed=true;
258         m_content->setSize(eSize(size().width(), m_itemheight));
259         m_items_per_page = size().height() / m_itemheight;
260 }
261
262 void eListbox::setItemHeight(int h)
263 {
264         if (h)
265                 m_itemheight = h;
266         else
267                 m_itemheight = 20;
268         recalcSize();
269 }
270
271 void eListbox::setSelectionEnable(int en)
272 {
273         if (m_selection_enabled == en)
274                 return;
275         m_selection_enabled = en;
276         entryChanged(m_selected); /* redraw current entry */
277 }
278
279 void eListbox::entryAdded(int index)
280 {
281                 /* manage our local pointers. when the entry was added before the current position, we have to advance. */
282                 
283                 /* we need to check <= - when the new entry has the (old) index of the cursor, the cursor was just moved down. */
284         if (index <= m_selected)
285                 ++m_selected;
286         if (index <= m_top)
287                 ++m_top;
288                 
289                 /* we have to check wether our current cursor is gone out of the screen. */
290                 /* moveSelection will check for this case */
291         moveSelection(justCheck);
292         
293                 /* now, check if the new index is visible. */
294         if ((m_top <= index) && (index < (m_top + m_items_per_page)))
295         {
296                         /* todo, calc exact invalidation... */
297                 invalidate();
298         }
299 }
300
301 void eListbox::entryRemoved(int index)
302 {
303         if (index == m_selected)
304                 m_selected = m_content->cursorGet();
305
306         moveSelection(justCheck);
307         
308         if ((m_top <= index) && (index < (m_top + m_items_per_page)))
309         {
310                         /* todo, calc exact invalidation... */
311                 invalidate();
312         }
313 }
314
315 void eListbox::entryChanged(int index)
316 {
317         if ((m_top <= index) && (index < (m_top + m_items_per_page)))
318         {
319                 gRegion inv = eRect(0, m_itemheight * (index-m_top), size().width(), m_itemheight);
320                 invalidate(inv);
321         }
322 }
323
324 void eListbox::entryReset()
325 {
326         m_content_changed=true;
327         m_prev_scrollbar_page=-1;
328         if (m_content)
329                 m_content->cursorHome();
330         m_top = 0;
331         m_selected = 0;
332         invalidate();
333 }