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