]> git.vomp.tv Git - vompclient-marten.git/blob - wselectlist.h
Fix bug in demuxer widescreen signaling
[vompclient-marten.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 } wsloption;
39
40 class WSelectList : public Boxx
41 {
42   public:
43     WSelectList();
44     virtual ~WSelectList();
45     void clear();
46     void addColumn(int x);
47
48     void setNoLoop();
49     void setShowSelOption(bool set) { showseloption = set; };
50     void setDarkSelOption(bool set) { darkseloption = set; };
51     int addOption(const char* text, ULONG data, int selected);
52     void draw();
53     void setBackgroundColour(const DrawStyle& colour);
54
55     void down();
56     void up();
57     void pageUp();
58     void pageDown();
59
60     int getTopOption();
61     int getNumOptions();
62     int getBottomOption();     // actually returns bottom + 1 i.e. the one just past display ?!
63     int getCurrentOption();
64     ULONG getCurrentOptionData();
65
66     void hintSetCurrent(int index);
67     void hintSetTop(int index);
68
69     virtual bool mouseMove(int x, int y);
70     virtual bool mouseLBDOWN(int x, int y);
71     virtual bool mouseAndroidScroll(int x, int y,int sx, int sy);
72
73   private:
74     void drawOptionLine(char* text, int xpos, int ypos, int width, const DrawStyle& colour);
75     int getMouseLine(int x, int y);
76
77     vector<wsloption> options;
78     UINT selectedOption;
79     int topOption;
80     UINT numOptionsDisplayable;
81     int columns[10];
82     int numColumns;
83     int noLoop;
84     bool showseloption, darkseloption;
85     
86     UINT gap;
87     DrawStyle backgroundColour;
88 };
89
90 #endif