blob: 0fc11f68c050ef10d86abfdd748a3e8c229bd815 (
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
27
28
|
#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 Hide(void);
void Show(void);
void Debug(void);
};
#endif //__DISPLAYMENULISTVIEW_H
|