X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/7eab308715ea1130166915574e3b691e08eb4482..2c8c2343f6fe05e59a8633b24d565e0fff5c6a3d:/lib/gui/elistbox.cpp diff --git a/lib/gui/elistbox.cpp b/lib/gui/elistbox.cpp index 21394de5..a5d18e6b 100644 --- a/lib/gui/elistbox.cpp +++ b/lib/gui/elistbox.cpp @@ -4,17 +4,14 @@ #include eListbox::eListbox(eWidget *parent) - :eWidget(parent), m_prev_scrollbar_page(-1), m_content_changed(false) - , m_scrollbar_mode(showNever), m_scrollbar(NULL) + :eWidget(parent), m_scrollbar_mode(showNever), m_prev_scrollbar_page(-1) + ,m_content_changed(false), m_top(0), m_selected(0), m_itemheight(25) + ,m_items_per_page(0), m_selection_enabled(1), m_scrollbar(NULL) { setContent(new eListboxStringContent()); ePtr ptr; eActionMap::getInstance(ptr); - - m_itemheight = 25; - m_selection_enabled = 1; - ptr->bindAction("ListboxActions", 0, 0, this); } @@ -159,9 +156,19 @@ void eListbox::moveSelection(int dir) void eListbox::moveSelectionTo(int index) { - m_content->cursorHome(); - m_content->cursorMove(index); - moveSelection(justCheck); + if ( m_content ) + { + m_content->cursorHome(); + m_content->cursorMove(index); + moveSelection(justCheck); + } +} + +int eListbox::getCurrentIndex() +{ + if ( m_content && m_content->cursorValid() ) + return m_content->cursorGet(); + return 0; } void eListbox::updateScrollBar() @@ -271,6 +278,10 @@ void eListbox::recalcSize() m_prev_scrollbar_page=-1; m_content->setSize(eSize(size().width(), m_itemheight)); m_items_per_page = size().height() / m_itemheight; + + if (m_items_per_page < 0) /* TODO: whyever - our size could be invalid, or itemheigh could be wrongly specified. */ + m_items_per_page = 0; + moveSelection(justCheck); }