2016-02-06 09:55:15 +01:00
|
|
|
#ifndef __GRIDELEMENT_H
|
|
|
|
#define __GRIDELEMENT_H
|
|
|
|
|
|
|
|
#include "viewelement.h"
|
|
|
|
|
|
|
|
class cGridElement : public cViewElement {
|
|
|
|
private:
|
|
|
|
int viewId;
|
|
|
|
int plugId;
|
|
|
|
bool current;
|
|
|
|
int indexCurrent;
|
|
|
|
public:
|
|
|
|
cGridElement(void);
|
|
|
|
cGridElement(const cGridElement &other);
|
|
|
|
virtual ~cGridElement(void);
|
|
|
|
void SetPluginId(int plugId) { this->plugId = plugId; };
|
|
|
|
void SetViewId(int viewId) { this->viewId = viewId; };
|
|
|
|
void SetTokenContainer(void);
|
|
|
|
skindesignerapi::cTokenContainer *GetTokenContainer(void) { return tokenContainer; };
|
|
|
|
void Set(skindesignerapi::cTokenContainer *tk);
|
|
|
|
void SetCurrent(bool current);
|
|
|
|
bool Parse(bool forced = true);
|
|
|
|
int Width(void);
|
|
|
|
int Height(void);
|
|
|
|
};
|
|
|
|
|
2016-01-26 18:32:38 +01:00
|
|
|
#endif //__GRIDELEMENT_H
|