blob: 84209c3407566b5e61abb9a0cf2bea74524fae45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef __VIEWGRID_H
#define __VIEWGRID_H
#include "string"
#include "map"
#include "view.h"
#include "../libtemplate/templateviewgrid.h"
using namespace std;
class cViewGrid {
private:
cTemplateViewGrid *tmplGrid;
map < long, cGrid* > grids;
public:
cViewGrid(cTemplateViewGrid *tmplGrid);
virtual ~cViewGrid();
void SetGrid(long gridID, double x, double y, double width, double height, map<string,int> *intTokens, map<string,string> *stringTokens);
void SetCurrent(long gridID, bool current);
void Delete(long gridID);
void Clear(void);
void Render(void);
void Debug(void);
};
#endif //__DISPLAYMENULISTVIEW_H
|