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);
49 void setBackgroundColour(const DrawStyle& colour);
50 void setLinesPerOption(float lines) { linesPerOption = lines; }
59 int getBottomOption(); // actually returns bottom + 1 i.e. the one just past display ?!
60 int getNumOptionsDisplayable();
61 int getCurrentOption();
62 void* getCurrentOptionData();
64 void hintSetCurrent(int index);
65 void hintSetTop(int index);
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);
72 void drawOptionLine(char* text, int xpos, int ypos, int width, const DrawStyle& colour, TVMediaInfo* pict);
73 int getMouseLine(int x, int y);
75 DrawStyle backgroundColour;
76 std::vector<wsloption> options;
77 UINT selectedOption{};
79 UINT numOptionsDisplayable{};
83 bool showseloption{true};
85 float linesPerOption{1};