2 Copyright 2004-2020 Chris Tallon
4 This file is part of VOMP.
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.
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.
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/>.
35 class WSelectList : public Boxx
39 virtual ~WSelectList();
41 void addColumn(int x);
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 int addOption(const std::string& text, void* data, int selected, TVMediaInfo* pict = NULL);
50 void setBackgroundColour(const DrawStyle& colour);
51 void setLinesPerOption(float lines) { linesPerOption = lines; }
60 int getBottomOption(); // actually returns bottom + 1 i.e. the one just past display ?!
61 int getNumOptionsDisplayable();
62 int getCurrentOption();
63 void* getCurrentOptionData();
65 void hintSetCurrent(int index);
66 void hintSetTop(int index);
68 virtual bool mouseMove(int x, int y);
69 virtual bool mouseLBDOWN(int x, int y);
70 virtual bool mouseAndroidScroll(int x, int y, int sx, int sy);
73 void drawOptionLine(char* text, int xpos, int ypos, int width, const DrawStyle& colour, TVMediaInfo* pict);
74 int getMouseLine(int x, int y);
76 DrawStyle backgroundColour;
77 std::vector<wsloption> options;
80 int numOptionsDisplayable{};
84 bool showseloption{true};
86 float linesPerOption{1};