]> git.vomp.tv Git - vompclient.git/blob - wselectlist.h
Remove deprecated max() function
[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 <string>
24 #include <vector>
25
26 #include "defines.h"
27 #include "boxx.h"
28
29 typedef struct
30 {
31   std::string text;
32   void* data;
33   TVMediaInfo* pict;
34 } wsloption;
35
36 class WSelectList : public Boxx
37 {
38   public:
39     WSelectList();
40     virtual ~WSelectList();
41     void clear();
42     void addColumn(int x);
43     int getColumn(int x);
44
45     void setNoLoop();
46     void setShowSelOption(bool set) { showseloption = set; }
47     void setDarkSelOption(bool set) { darkseloption = set; }
48     int addOption(const char* text, void* data, int selected, TVMediaInfo* pict = NULL);
49     int addOption(const std::string& text, void* data, int selected, TVMediaInfo* pict = NULL);
50     void draw();
51     void setBackgroundColour(const DrawStyle& colour);
52     void setLinesPerOption(float lines) { linesPerOption = lines; }
53
54     void down();
55     void up();
56     void pageUp();
57     void pageDown();
58
59     int getTopOption();
60     int getNumOptions();
61     int getBottomOption();     // actually returns bottom + 1 i.e. the one just past display ?!
62     int getNumOptionsDisplayable();
63     int getCurrentOption();
64     void* 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(const std::string& text, int xpos, int ypos, int width, const DrawStyle& colour, TVMediaInfo* pict);
75     int getMouseLine(int x, int y);
76
77     DrawStyle backgroundColour;
78     std::vector<wsloption> options;
79     int selectedOption{};
80     int topOption{};
81     int numOptionsDisplayable{};
82     int columns[10];
83     int numColumns{};
84     int noLoop{};
85     bool showseloption{true};
86     bool darkseloption{};
87     float linesPerOption{1};
88     UINT gap{1};
89 };
90
91 #endif