1 #include <lib/gui/elistbox.h>
2 #include <lib/gui/elistboxcontent.h>
3 #include <lib/gui/eslider.h>
4 #include <lib/actions/action.h>
6 eListbox::eListbox(eWidget *parent) :
7 eWidget(parent), m_scrollbar_mode(showNever), m_prev_scrollbar_page(-1),
8 m_content_changed(false), m_enabled_wrap_around(false), m_top(0), m_selected(0), m_itemheight(25),
9 m_items_per_page(0), m_selection_enabled(1), m_scrollbar(NULL)
11 memset(&m_style, 0, sizeof(m_style));
12 // setContent(new eListboxStringContent());
15 eActionMap::getInstance(ptr);
16 ptr->bindAction("ListboxActions", 0, 0, this);
25 eActionMap::getInstance(ptr);
26 ptr->unbindAction(this, 0);
29 void eListbox::setScrollbarMode(int mode)
31 m_scrollbar_mode = mode;
34 if (m_scrollbar_mode == showNever)
42 m_scrollbar = new eSlider(this);
44 m_scrollbar->setBorderWidth(1);
45 m_scrollbar->setOrientation(eSlider::orVertical);
46 m_scrollbar->setRange(0,100);
50 void eListbox::setWrapAround(bool state)
52 m_enabled_wrap_around = state;
55 void eListbox::setContent(iListboxContent *content)
59 m_content->setListbox(this);
63 bool eListbox::atBegin()
65 if (m_content && !m_selected)
70 bool eListbox::atEnd()
72 if (m_content && m_content->size() == m_selected+1)
77 void eListbox::moveToEnd()
81 /* move to last existing one ("end" is already invalid) */
82 m_content->cursorEnd(); m_content->cursorMove(-1);
83 /* current selection invisible? */
84 if (m_top + m_items_per_page <= m_content->cursorGet())
86 int rest = m_content->size() % m_items_per_page;
88 m_top = m_content->cursorGet() - rest + 1;
90 m_top = m_content->cursorGet() - m_items_per_page + 1;
96 void eListbox::moveSelection(long dir)
98 /* refuse to do anything without a valid list. */
101 /* if our list does not have one entry, don't do anything. */
102 if (!m_items_per_page)
104 /* we need the old top/sel to see what we have to redraw */
106 int oldsel = m_selected;
107 /* first, move cursor */
112 m_content->cursorMove(-1);
113 if (m_enabled_wrap_around && oldsel == m_content->cursorGet()) // must wrap around ?
118 m_content->cursorMove(1);
119 /* ok - we could have reached the end. So we do wrap around. */
120 if (!m_content->cursorValid())
122 if (m_enabled_wrap_around)
125 m_content->cursorHome();
128 m_content->cursorMove(-1);
132 if (m_content->cursorGet() >= m_items_per_page)
134 m_content->cursorMove(-m_items_per_page);
135 m_top -= m_items_per_page;
141 m_content->cursorHome();
145 m_content->cursorHome();
146 m_top = 0; /* align with top, speeds up process */
149 m_content->cursorMove(m_items_per_page);
150 if (m_content->cursorValid())
160 if (m_content->cursorValid() && !m_content->currentCursorSelectable())
162 /* ok, our cursor position is valid (i.e. in list), but not selectable. */
164 /* when moving up, continue until we found a valid position. */
165 if ((dir == moveUp) || (dir == pageDown))
167 while (m_content->cursorGet())
169 m_content->cursorMove(-1);
170 if (m_content->currentCursorSelectable())
178 while (m_content->cursorValid())
180 m_content->cursorMove(+1);
181 if (m_content->currentCursorSelectable())
187 if (!m_content->cursorValid())
188 m_content->cursorMove(-1);
191 if (!m_content->currentCursorSelectable())
192 m_content->cursorSet(oldsel);
195 /* note that we could be on an invalid cursor position, but we don't
196 care. this only happens on empty lists, and should have almost no
199 /* now, look wether the current selection is out of screen */
200 m_selected = m_content->cursorGet();
201 while (m_selected < m_top)
203 m_top -= m_items_per_page;
207 while (m_selected >= m_top + m_items_per_page)
208 /* m_top should be always valid here as it's selected */
209 m_top += m_items_per_page;
211 if (oldsel != m_selected)
212 /* emit */ selectionChanged();
218 else if (m_selected != oldsel)
220 /* redraw the old and newly selected */
221 gRegion inv = eRect(0, m_itemheight * (m_selected-m_top), size().width(), m_itemheight);
222 inv |= eRect(0, m_itemheight * (oldsel-m_top), size().width(), m_itemheight);
227 void eListbox::moveSelectionTo(int index)
231 m_content->cursorHome();
232 m_content->cursorMove(index);
233 moveSelection(justCheck);
237 int eListbox::getCurrentIndex()
239 if (m_content && m_content->cursorValid())
240 return m_content->cursorGet();
244 void eListbox::updateScrollBar()
246 if (!m_content || m_scrollbar_mode == showNever )
248 int entries = m_content->size();
249 if (m_content_changed)
251 int width = size().width();
252 int height = size().height();
253 m_content_changed = false;
254 if (entries > m_items_per_page || m_scrollbar_mode == showAlways)
256 int sbarwidth=width/16;
261 m_scrollbar->move(ePoint(width-sbarwidth, 0));
262 m_scrollbar->resize(eSize(sbarwidth, height));
263 m_content->setSize(eSize(width-sbarwidth-5, m_itemheight));
268 m_content->setSize(eSize(width, m_itemheight));
272 if (m_items_per_page && entries)
274 int curVisiblePage = m_top / m_items_per_page;
275 if (m_prev_scrollbar_page != curVisiblePage)
277 m_prev_scrollbar_page = curVisiblePage;
278 int pages = entries / m_items_per_page;
279 if ((pages*m_items_per_page) < entries)
281 int start=(m_top*100)/(pages*m_items_per_page);
282 int vis=(m_items_per_page*100+pages*m_items_per_page-1)/(pages*m_items_per_page);
285 m_scrollbar->setStartEnd(start,start+vis);
290 int eListbox::getEntryTop()
292 return (m_selected - m_top) * m_itemheight;
295 int eListbox::event(int event, void *data, void *data2)
301 ePtr<eWindowStyle> style;
304 return eWidget::event(event, data, data2);
312 gPainter &painter = *(gPainter*)data2;
314 m_content->cursorSave();
315 m_content->cursorMove(m_top - m_selected);
317 gRegion entryrect = eRect(0, 0, size().width(), m_itemheight);
318 const gRegion &paint_region = *(gRegion*)data;
320 for (int y = 0, i = 0; i <= m_items_per_page; y += m_itemheight, ++i)
322 gRegion entry_clip_rect = paint_region & entryrect;
324 if (!entry_clip_rect.empty())
325 m_content->paint(painter, *style, ePoint(0, y), m_selected == m_content->cursorGet() && m_content->size() && m_selection_enabled);
327 /* (we could clip with entry_clip_rect, but
328 this shouldn't change the behavior of any
329 well behaving content, so it would just
330 degrade performance without any gain.) */
332 m_content->cursorMove(+1);
333 entryrect.moveBy(ePoint(0, m_itemheight));
336 // clear/repaint empty/unused space between scrollbar and listboxentrys
337 if (m_scrollbar && m_scrollbar->isVisible())
339 style->setStyle(painter, eWindowStyle::styleListboxNormal);
340 painter.clip(eRect(m_scrollbar->position() - ePoint(5,0), eSize(5,m_scrollbar->size().height())));
345 m_content->cursorRestore();
352 return eWidget::event(event, data, data2);
357 moveSelection((long)data2);
362 return eWidget::event(event, data, data2);
366 void eListbox::recalcSize()
368 m_content_changed=true;
369 m_prev_scrollbar_page=-1;
371 m_content->setSize(eSize(size().width(), m_itemheight));
372 m_items_per_page = size().height() / m_itemheight;
374 if (m_items_per_page < 0) /* TODO: whyever - our size could be invalid, or itemheigh could be wrongly specified. */
375 m_items_per_page = 0;
377 moveSelection(justCheck);
380 void eListbox::setItemHeight(int h)
389 void eListbox::setSelectionEnable(int en)
391 if (m_selection_enabled == en)
393 m_selection_enabled = en;
394 entryChanged(m_selected); /* redraw current entry */
397 void eListbox::entryAdded(int index)
399 if (m_content && (m_content->size() % m_items_per_page) == 1)
400 m_content_changed=true;
401 /* manage our local pointers. when the entry was added before the current position, we have to advance. */
403 /* we need to check <= - when the new entry has the (old) index of the cursor, the cursor was just moved down. */
404 if (index <= m_selected)
409 /* we have to check wether our current cursor is gone out of the screen. */
410 /* moveSelection will check for this case */
411 moveSelection(justCheck);
413 /* now, check if the new index is visible. */
414 if ((m_top <= index) && (index < (m_top + m_items_per_page)))
416 /* todo, calc exact invalidation... */
421 void eListbox::entryRemoved(int index)
423 if (m_content && !(m_content->size() % m_items_per_page))
424 m_content_changed=true;
426 if (index == m_selected && m_content)
427 m_selected = m_content->cursorGet();
429 if (m_content && m_content->cursorGet() >= m_content->size())
430 moveSelection(moveUp);
432 moveSelection(justCheck);
434 if ((m_top <= index) && (index < (m_top + m_items_per_page)))
436 /* todo, calc exact invalidation... */
441 void eListbox::entryChanged(int index)
443 if ((m_top <= index) && (index < (m_top + m_items_per_page)))
445 gRegion inv = eRect(0, m_itemheight * (index-m_top), size().width(), m_itemheight);
450 void eListbox::entryReset(bool selectionHome)
452 m_content_changed = true;
453 m_prev_scrollbar_page = -1;
459 m_content->cursorHome();
464 if (m_content && (m_selected >= m_content->size()))
466 if (m_content->size())
467 m_selected = m_content->size() - 1;
470 m_content->cursorSet(m_selected);
474 moveSelection(justCheck);
475 /* if oldsel != m_selected, selectionChanged was already
476 emitted in moveSelection. we want it in any case, so otherwise,
478 if (oldsel == m_selected)
479 /* emit */ selectionChanged();
483 void eListbox::setBackgroundColor(gRGB &col)
485 m_style.m_background_color = col;
486 m_style.m_background_color_set = 1;
489 void eListbox::setBackgroundColorSelected(gRGB &col)
491 m_style.m_background_color_selected = col;
492 m_style.m_background_color_selected_set = 1;
495 void eListbox::setForegroundColor(gRGB &col)
497 m_style.m_foreground_color = col;
498 m_style.m_foreground_color_set = 1;
501 void eListbox::setForegroundColorSelected(gRGB &col)
503 m_style.m_foreground_color_selected = col;
504 m_style.m_foreground_color_selected_set = 1;
507 void eListbox::setBackgroundPicture(ePtr<gPixmap> &pm)
509 m_style.m_background = pm;
512 void eListbox::setSelectionPicture(ePtr<gPixmap> &pm)
514 m_style.m_selection = pm;
517 void eListbox::invalidate(const gRegion ®ion)
521 m_content->updateClip(tmp);
522 eWidget::invalidate(tmp);
525 struct eListboxStyle *eListbox::getLocalStyle(void)
527 /* transparency is set directly in the widget */
528 m_style.m_transparent_background = isTransparent();