]> git.vomp.tv Git - vompclient.git/blob - wselectlist.cc
Support for epgimages
[vompclient.git] / wselectlist.cc
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #include "wselectlist.h"
22
23 #include "colour.h"
24 #include "log.h"
25
26 #include <math.h>
27
28 WSelectList::WSelectList():
29 backgroundColour(DrawStyle::VIEWBACKGROUND)
30 {
31   selectedOption = 0;
32   topOption = 0;
33   numOptionsDisplayable = 0;
34   numColumns = 0;
35   noLoop = 0;
36   gap = 1;
37   showseloption = true;
38   darkseloption = false;
39   linesPerOption = 1;
40
41 }
42
43 WSelectList::~WSelectList()
44 {
45   clear();
46 }
47
48 void WSelectList::clear()
49 {
50   int vsize = options.size();
51   for (int i = 0; i < vsize; i++)
52   {
53     delete[] options[i].text;
54     if (options[i].pict) delete options[i].pict;
55   }
56   options.clear();
57
58   selectedOption = 0;
59   topOption = 0;
60   numOptionsDisplayable = 0;
61   numColumns = 0;
62 }
63
64 void WSelectList::setNoLoop()
65 {
66   noLoop = 1;
67 }
68
69 void WSelectList::setBackgroundColour(const DrawStyle& colour)
70 {
71   backgroundColour = colour;
72 }
73
74 void WSelectList::hintSetCurrent(int idx)
75 {
76   selectedOption = idx;
77   if (selectedOption >= options.size()) selectedOption = options.size() - 1;
78 }
79
80 void WSelectList::hintSetTop(int idx)
81 {
82   topOption = idx;
83 }
84
85 int WSelectList::addOption(const char* text, ULONG data, int selected, TVMediaInfo * pict)
86 {
87   int thisNewOption = options.size();
88
89   wsloption wslo;
90   wslo.text = new char[strlen(text) + 1];
91   strcpy(wslo.text, text);
92   wslo.data = data;
93   wslo.pict = pict;
94   options.push_back(wslo);
95   if (selected) selectedOption = thisNewOption;
96   return thisNewOption;
97 }
98
99 void WSelectList::draw()
100 {
101   int fontHeight = getFontHeight();
102   int ySeperation = fontHeight * linesPerOption + gap;
103
104   numOptionsDisplayable = (area.h - 5) / ySeperation;
105
106   if (selectedOption == (topOption + numOptionsDisplayable)) topOption++;
107   if (selectedOption == ((UINT)topOption - 1)) topOption--;
108   // if still not visible...
109   if ((selectedOption < (UINT)topOption) || (selectedOption > (topOption + numOptionsDisplayable)))
110   {
111     topOption = selectedOption - (numOptionsDisplayable / 2);
112   }
113
114   if (topOption < 0) topOption = 0;
115
116
117   fillColour(backgroundColour);
118
119   UINT ypos = 5;
120   for (UINT i = topOption; i < (topOption + numOptionsDisplayable); i++)
121   {
122     if (i == options.size()) return;
123     if ((ypos + ySeperation) > area.h) break;
124
125     if (i == selectedOption && showseloption)
126     {
127
128       rectangle(0, ypos, area.w, fontHeight * linesPerOption-1, darkseloption ? DrawStyle::SELECTDARKHIGHLIGHT: DrawStyle::SELECTHIGHLIGHT);
129
130       drawOptionLine(options[i].text, 5, ypos, area.w - 5, DrawStyle::DARKTEXT, options[i].pict);
131     }
132     else
133     {
134         rectangle(0, ypos, area.w, fontHeight * linesPerOption-1, DrawStyle::SELECTBACKGROUND);
135
136         drawOptionLine(options[i].text, 5, ypos, area.w - 5, DrawStyle::LIGHTTEXT, options[i].pict);
137     }
138     ypos += ySeperation;
139   }
140
141 }
142
143 void WSelectList::addColumn(int x)
144 {
145   if (numColumns == 10) return;
146   columns[numColumns++] = x;
147 }
148
149 int WSelectList::getColumn(int x)
150 {
151         if (x>= numColumns) return 0;
152         return  columns[x];
153 }
154
155 void WSelectList::drawOptionLine(char* text, int xpos, int ypos, int width, const DrawStyle& colour, TVMediaInfo* pict)
156 {
157   UINT curline = 0;
158   UINT taboffset = 0;
159   int fontHeight = getFontHeight();
160   float ypos_mod= ypos + (linesPerOption-floor(linesPerOption))*((float)fontHeight)*0.5f;
161
162   int imagewidth=0;
163   if (numColumns>1) imagewidth=columns[1]-columns[0];
164   if (pict)
165   {
166           drawTVMedia(*pict, xpos,ypos,imagewidth,fontHeight*linesPerOption,TopLeftLimited);
167           taboffset++;
168   }
169
170   if (!numColumns && linesPerOption == 1)
171   {
172
173     drawText(text, xpos, ypos, width, colour);
174   }
175   else
176   {
177     char buffer[200];
178     strncpy(buffer, text, 199);
179     int currentColumn = taboffset;
180     char* pointer;
181
182     pointer = strtok(buffer, "\t\n");
183     while(pointer)
184     {
185       drawText(pointer, xpos + columns[currentColumn], ypos_mod + curline * fontHeight, width - columns[currentColumn], colour);
186
187       pointer = strtok(NULL, "\t\n");
188       if (pointer) {
189           char delimiter = text[pointer - buffer-1];
190           if (delimiter == '\t') currentColumn++;
191           else if (delimiter == '\n' ){
192                   currentColumn = taboffset;
193                   curline++;
194           }
195       }
196       if (curline >= linesPerOption) return;
197
198       if (currentColumn == 10) return;
199     }
200   }
201 }
202
203 void WSelectList::up()
204 {
205   if (selectedOption > 0)
206   {
207     selectedOption--;
208   }
209   else
210   {
211     if (!noLoop) selectedOption = options.size() - 1;
212   }
213 }
214
215 void WSelectList::down()
216 {
217   if (selectedOption < options.size() - 1)
218   {
219     selectedOption++;
220   }
221   else
222   {
223     if (!noLoop) selectedOption = 0;
224   }
225 }
226
227 void WSelectList::pageUp()
228 {
229   topOption -= numOptionsDisplayable;
230   if (topOption < 0) topOption = 0;
231
232   selectedOption = topOption;
233 }
234
235 void WSelectList::pageDown()
236 {
237   if ((topOption + numOptionsDisplayable) >= options.size())
238   {
239     selectedOption = options.size() - 1;
240   }
241   else
242   {
243     topOption += numOptionsDisplayable;
244     selectedOption = topOption;
245   }
246 }
247
248 int WSelectList::getTopOption()
249 {
250   return topOption;
251 }
252
253 int WSelectList::getNumOptions()
254 {
255   return options.size();
256 }
257
258 int WSelectList::getBottomOption()
259 {
260   UINT retval = topOption + numOptionsDisplayable;
261   if (retval > options.size()) return options.size();
262   else return retval;
263 }
264
265 int WSelectList::getCurrentOption()
266 {
267   return selectedOption;
268 }
269
270 ULONG WSelectList::getCurrentOptionData()
271 {
272   if (!options.size()) return 0;
273   return options[selectedOption].data;
274 }
275
276 int WSelectList::getNumOptionsDisplayable()
277 {
278         return numOptionsDisplayable;
279 }
280
281 bool WSelectList::mouseAndroidScroll(int x, int y,int sx, int sy)
282 {
283 /*      int fontHeight = getFontHeight();
284         int movelines= sy/fontHeight;
285
286         int seloption=selectedOption+movelines;
287         if (seloption<0) seloption=0;
288         else if (seloption>options.size()-1) seloption=options.size()-1;
289         selectedOption=seloption;*/
290     return false;
291
292 }
293
294 bool WSelectList::mouseMove(int x, int y)
295 {
296   int ml = getMouseLine(x-getRootBoxOffsetX(), y-getRootBoxOffsetY());
297   if (ml>=0 && ml!=(int)selectedOption)
298   {
299     selectedOption = ml;
300     return true;
301   }
302   return false;
303 }
304
305 bool WSelectList::mouseLBDOWN(int x, int y)
306 {
307   int ml = getMouseLine(x-getRootBoxOffsetX(), y-getRootBoxOffsetY());
308   if (ml == (int)selectedOption)
309   {
310     /* caller should generate a OK message*/
311     return true;
312   }
313   return false;
314 }
315
316 int WSelectList::getMouseLine(int x,int y)
317 {
318   int fontHeight = getFontHeight();
319   int ySeperation = fontHeight + gap;
320
321   if (y<0) return -1;
322   if (x<0 || x>(int)area.w) return -1;
323   if (y>(int)(10+numOptionsDisplayable*ySeperation)) return -1;
324
325   int cy = y - 5;
326
327   int selected=cy/ySeperation;
328   if (y<5) selected=-1;
329   if (selected> ((int)numOptionsDisplayable)) return -1;
330   /* Important: should be the same algorithm used in draw! */
331   if (selectedOption == (topOption + numOptionsDisplayable)) topOption++;
332   if (selectedOption == ((UINT)topOption - 1)) topOption--;
333   // if still not visible...
334   if ((selectedOption < (UINT)topOption) || (selectedOption > (topOption + numOptionsDisplayable)))
335   {
336     topOption = selectedOption - (numOptionsDisplayable / 2);
337   }
338
339   if (topOption < 0) topOption = 0;
340
341   if ((selected+topOption >= (int) options.size()) ||
342       (selected + topOption < 0)) return -1;
343
344   return selected + topOption;
345 }