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