]> git.vomp.tv Git - vompclient.git/blob - wselectlist.h
Fix text corruption in channel number display on live tv
[vompclient.git] / wselectlist.h
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 #ifndef WSELECTLIST_H
22 #define WSELECTLIST_H
23
24 #include <stdio.h>
25 #include <string.h>
26
27 #include <vector>
28
29 #include "defines.h"
30 #include "boxx.h"
31
32 using namespace std;
33
34 typedef struct
35 {
36   char* text;
37   ULONG data;
38   TVMediaInfo *pict;
39 } wsloption;
40
41 class WSelectList : public Boxx
42 {
43   public:
44     WSelectList();
45     virtual ~WSelectList();
46     void clear();
47     void addColumn(int x);
48     int getColumn(int x);
49
50     void setNoLoop();
51     void setShowSelOption(bool set) { showseloption = set; };
52     void setDarkSelOption(bool set) { darkseloption = set; };
53     int addOption(const char* text, ULONG data, int selected, TVMediaInfo * pict=NULL);
54     void draw();
55     void setBackgroundColour(const DrawStyle& colour);
56     void setLinesPerOption(float lines) {linesPerOption=lines;};
57
58     void down();
59     void up();
60     void pageUp();
61     void pageDown();
62
63     int getTopOption();
64     int getNumOptions();
65     int getBottomOption();     // actually returns bottom + 1 i.e. the one just past display ?!
66     int getNumOptionsDisplayable();
67     int getCurrentOption();
68     ULONG getCurrentOptionData();
69
70     void hintSetCurrent(int index);
71     void hintSetTop(int index);
72
73     virtual bool mouseMove(int x, int y);
74     virtual bool mouseLBDOWN(int x, int y);
75     virtual bool mouseAndroidScroll(int x, int y,int sx, int sy);
76
77   private:
78     void drawOptionLine(char* text, int xpos, int ypos, int width, const DrawStyle& colour, TVMediaInfo* pict);
79     int getMouseLine(int x, int y);
80
81     vector<wsloption> options;
82     UINT selectedOption;
83     int topOption;
84     UINT numOptionsDisplayable;
85     int columns[10];
86     int numColumns;
87     int noLoop;
88     bool showseloption, darkseloption;
89     float linesPerOption;
90     
91     UINT gap;
92     DrawStyle backgroundColour;
93 };
94
95 #endif