]> git.vomp.tv Git - vompclient.git/blob - wselectlist.cc
Screenshot support for vector based osd on raspberry pi
[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   if (pict)
163   {
164           drawTVMedia(*pict, xpos,ypos,0,fontHeight*linesPerOption,TopLeft);
165           taboffset++;
166   }
167
168   if (!numColumns && linesPerOption == 1)
169   {
170
171     drawText(text, xpos, ypos, width, colour);
172   }
173   else
174   {
175     char buffer[200];
176     strncpy(buffer, text, 199);
177     int currentColumn = taboffset;
178     char* pointer;
179
180     pointer = strtok(buffer, "\t\n");
181     while(pointer)
182     {
183       drawText(pointer, xpos + columns[currentColumn], ypos_mod + curline * fontHeight, width - columns[currentColumn], colour);
184
185       pointer = strtok(NULL, "\t\n");
186       if (pointer) {
187           char delimiter = text[pointer - buffer-1];
188           if (delimiter == '\t') currentColumn++;
189           else if (delimiter == '\n' ){
190                   currentColumn = taboffset;
191                   curline++;
192           }
193       }
194       if (curline >= linesPerOption) return;
195
196       if (currentColumn == 10) return;
197     }
198   }
199 }
200
201 void WSelectList::up()
202 {
203   if (selectedOption > 0)
204   {
205     selectedOption--;
206   }
207   else
208   {
209     if (!noLoop) selectedOption = options.size() - 1;
210   }
211 }
212
213 void WSelectList::down()
214 {
215   if (selectedOption < options.size() - 1)
216   {
217     selectedOption++;
218   }
219   else
220   {
221     if (!noLoop) selectedOption = 0;
222   }
223 }
224
225 void WSelectList::pageUp()
226 {
227   topOption -= numOptionsDisplayable;
228   if (topOption < 0) topOption = 0;
229
230   selectedOption = topOption;
231 }
232
233 void WSelectList::pageDown()
234 {
235   if ((topOption + numOptionsDisplayable) >= options.size())
236   {
237     selectedOption = options.size() - 1;
238   }
239   else
240   {
241     topOption += numOptionsDisplayable;
242     selectedOption = topOption;
243   }
244 }
245
246 int WSelectList::getTopOption()
247 {
248   return topOption;
249 }
250
251 int WSelectList::getNumOptions()
252 {
253   return options.size();
254 }
255
256 int WSelectList::getBottomOption()
257 {
258   UINT retval = topOption + numOptionsDisplayable;
259   if (retval > options.size()) return options.size();
260   else return retval;
261 }
262
263 int WSelectList::getCurrentOption()
264 {
265   return selectedOption;
266 }
267
268 ULONG WSelectList::getCurrentOptionData()
269 {
270   if (!options.size()) return 0;
271   return options[selectedOption].data;
272 }
273
274 int WSelectList::getNumOptionsDisplayable()
275 {
276         return numOptionsDisplayable;
277 }
278
279 bool WSelectList::mouseAndroidScroll(int x, int y,int sx, int sy)
280 {
281 /*      int fontHeight = getFontHeight();
282         int movelines= sy/fontHeight;
283
284         int seloption=selectedOption+movelines;
285         if (seloption<0) seloption=0;
286         else if (seloption>options.size()-1) seloption=options.size()-1;
287         selectedOption=seloption;*/
288     return false;
289
290 }
291
292 bool WSelectList::mouseMove(int x, int y)
293 {
294   int ml = getMouseLine(x-getRootBoxOffsetX(), y-getRootBoxOffsetY());
295   if (ml>=0 && ml!=(int)selectedOption)
296   {
297     selectedOption = ml;
298     return true;
299   }
300   return false;
301 }
302
303 bool WSelectList::mouseLBDOWN(int x, int y)
304 {
305   int ml = getMouseLine(x-getRootBoxOffsetX(), y-getRootBoxOffsetY());
306   if (ml == (int)selectedOption)
307   {
308     /* caller should generate a OK message*/
309     return true;
310   }
311   return false;
312 }
313
314 int WSelectList::getMouseLine(int x,int y)
315 {
316   int fontHeight = getFontHeight();
317   int ySeperation = fontHeight + gap;
318
319   if (y<0) return -1;
320   if (x<0 || x>(int)area.w) return -1;
321   if (y>(int)(10+numOptionsDisplayable*ySeperation)) return -1;
322
323   int cy = y - 5;
324
325   int selected=cy/ySeperation;
326   if (y<5) selected=-1;
327   if (selected> ((int)numOptionsDisplayable)) return -1;
328   /* Important: should be the same algorithm used in draw! */
329   if (selectedOption == (topOption + numOptionsDisplayable)) topOption++;
330   if (selectedOption == ((UINT)topOption - 1)) topOption--;
331   // if still not visible...
332   if ((selectedOption < (UINT)topOption) || (selectedOption > (topOption + numOptionsDisplayable)))
333   {
334     topOption = selectedOption - (numOptionsDisplayable / 2);
335   }
336
337   if (topOption < 0) topOption = 0;
338
339   if ((selected+topOption >= (int) options.size()) ||
340       (selected + topOption < 0)) return -1;
341
342   return selected + topOption;
343 }