jumping to an entry beginning with a character works now :)
[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 void eListbox::moveSelectionTo(int index)
125 {
126         printf("Moving to listbox-entry with index %d\n", index);
127         m_content->cursorHome();
128         m_content->cursorMove(index);
129         moveSelection(justCheck);
130 }
131
132 int eListbox::event(int event, void *data, void *data2)
133 {
134         switch (event)
135         {
136         case evtPaint:
137         {
138                 ePtr<eWindowStyle> style;
139                 
140                 if (!m_content)
141                         return eWidget::event(event, data, data2);
142                 assert(m_content);
143                 
144                 getStyle(style);
145                 
146                 if (!m_content)
147                         return 0;
148                 
149                 gPainter &painter = *(gPainter*)data2;
150                 
151                 m_content->cursorSave();
152                 m_content->cursorMove(m_top - m_selected);
153                 
154                 for (int y = 0, i = 0; i <= m_items_per_page; y += m_itemheight, ++i)
155                 {
156                         m_content->paint(painter, *style, ePoint(0, y), m_selected == m_content->cursorGet() && m_content->size() && m_selection_enabled);
157                         m_content->cursorMove(+1);
158                 }
159                 
160                 m_content->cursorRestore();
161                 
162                 return 0;
163         }
164         case evtChangedSize:
165                 recalcSize();
166                 return eWidget::event(event, data, data2);
167                 
168         case evtAction:
169                 if (isVisible())
170                 {
171                         moveSelection((int)data2);
172                         return 1;
173                 }
174                 return 0;
175         default:
176                 return eWidget::event(event, data, data2);
177         }
178 }
179
180 void eListbox::recalcSize()
181 {
182         m_content->setSize(eSize(size().width(), m_itemheight));
183         m_items_per_page = size().height() / m_itemheight;
184 }
185
186 void eListbox::setItemHeight(int h)
187 {
188         if (h)
189                 m_itemheight = h;
190         else
191                 m_itemheight = 20;
192         recalcSize();
193 }
194
195 void eListbox::setSelectionEnable(int en)
196 {
197         if (m_selection_enabled == en)
198                 return;
199         m_selection_enabled = en;
200         entryChanged(m_selected); /* redraw current entry */
201 }
202
203 void eListbox::entryAdded(int index)
204 {
205                 /* manage our local pointers. when the entry was added before the current position, we have to advance. */
206                 
207                 /* we need to check <= - when the new entry has the (old) index of the cursor, the cursor was just moved down. */
208         if (index <= m_selected)
209                 ++m_selected;
210         if (index <= m_top)
211                 ++m_top;
212                 
213                 /* we have to check wether our current cursor is gone out of the screen. */
214                 /* moveSelection will check for this case */
215         moveSelection(justCheck);
216         
217                 /* now, check if the new index is visible. */
218         if ((m_top <= index) && (index < (m_top + m_items_per_page)))
219         {
220                         /* todo, calc exact invalidation... */
221                 invalidate();
222         }
223 }
224
225 void eListbox::entryRemoved(int index)
226 {
227         if (index == m_selected)
228                 m_selected = m_content->cursorGet();
229
230         moveSelection(justCheck);
231         
232         if ((m_top <= index) && (index < (m_top + m_items_per_page)))
233         {
234                         /* todo, calc exact invalidation... */
235                 invalidate();
236         }
237 }
238
239 void eListbox::entryChanged(int index)
240 {
241         if ((m_top <= index) && (index < (m_top + m_items_per_page)))
242         {
243                 gRegion inv = eRect(0, m_itemheight * (index-m_top), size().width(), m_itemheight);
244                 invalidate(inv);
245         }
246 }
247
248 void eListbox::entryReset()
249 {
250         if (m_content)
251                 m_content->cursorHome();
252         m_top = 0;
253         m_selected = 0;
254         invalidate();
255 }