5a9ee4d6f3a5c5e35236b653978be331ef88de8a
[enigma2.git] / lib / gui / elistbox.cpp
1 #include <lib/gui/elistbox.h>
2 #include <lib/gui/elistboxcontent.h>
3
4 eListbox::eListbox(eWidget *parent): eWidget(parent)
5 {
6         setContent(new eListboxStringContent());
7 }
8
9 void eListbox::setContent(iListboxContent *content)
10 {
11         m_content = content;
12         invalidate();
13         if (m_content)
14                 m_content->cursorHome();
15         m_top = 0;
16         m_selected = 0;
17 }
18
19 void eListbox::moveSelection(int dir)
20 {
21                 /* we need the old top/sel to see what we have to redraw */
22         int oldtop = m_top;
23         int oldsel = m_selected;
24         
25                 /* first, move cursor */
26         switch (dir)
27         {
28         case moveUp:
29                 m_content->cursorMove(-1);
30                 break;
31         case moveDown:
32                 m_content->cursorMove(1);
33                         /* ok - we could have reached the end. we just go one back then. */
34                 if (!m_content->cursorValid())
35                         m_content->cursorMove(-1);
36                 break;
37         case moveTop:
38                 m_content->cursorHome();
39                 m_top = 0; /* align with top, speeds up process */
40                 break;
41         case moveEnd:
42                         /* move to last existing one ("end" is already invalid) */
43                 m_content->cursorEnd(); m_content->cursorMove(-1); 
44                 
45                 m_top = m_content->cursorGet() - m_items_per_page + 1;
46                 if (m_top < 0)
47                         m_top = 0;
48                 break;
49         }
50         
51                 /* note that we could be on an invalid cursor position, but we don't
52                    care. this only happens on empty lists, and should have almost no
53                    side effects. */
54         
55                 /* now, look wether the current selection is out of screen */
56         m_selected = m_content->cursorGet();
57         if (m_selected < m_top)
58         {
59                 m_top -= m_items_per_page;
60                 if (m_top < 0)
61                         m_top = 0;
62         } else if (m_selected >= m_top + m_items_per_page)
63         {
64                         /* m_top should be always valid here as it's selected */
65                 m_top += m_items_per_page;
66         }
67         
68         if (m_top != oldtop)
69                 invalidate();
70         else
71         {
72                         /* redraw the old and newly selected */
73                 gRegion inv = eRect(0, m_itemheight * (m_selected-m_top), size().width(), m_itemheight);
74                 inv |= eRect(0, m_itemheight * (oldsel-m_top), size().width(), m_itemheight);
75                 
76                 invalidate(inv);
77         }
78 }
79
80 int eListbox::event(int event, void *data, void *data2)
81 {
82         switch (event)
83         {
84         case evtPaint:
85         {
86                 ePtr<eWindowStyle> style;
87                 
88                 assert(m_content);
89                 recalcSize(); // move to event
90                 
91                 getStyle(style);
92                 
93                 if (!m_content)
94                         return 0;
95                 
96                 gPainter &painter = *(gPainter*)data2;
97                 
98                 m_content->cursorSave();
99                 m_content->cursorMove(m_top - m_selected);
100                 
101                 for (int y = 0, i = 0; i < m_items_per_page; y += m_itemheight, ++i)
102                 {
103                         m_content->paint(painter, *style, ePoint(0, y), m_selected == m_content->cursorGet());
104                         m_content->cursorMove(+1);
105                 }
106                 
107                 m_content->cursorRestore();
108                 
109                 return 0;
110         }
111         default:
112                 return eWidget::event(event, data, data2);
113         }
114 }
115
116 void eListbox::recalcSize()
117 {
118         m_itemheight = 20;
119         m_content->setSize(eSize(size().width(), m_itemheight));
120         m_items_per_page = size().height() / m_itemheight;
121 }