| 11 | void draw(); |
| 12 | GPButton* setSize(uint16_t sizeX, uint16_t sizeY) { this->_sizeX = sizeX; this->_sizeY = sizeY; return this; } |
| 13 | GPButton* setInputMask(int16_t inputMask) { this->_inputMask = inputMask; return this; } |
| 14 | GPButton* setInputDirection(bool inputDirection) { this->_inputDirection = inputDirection; return this; } |
| 15 | GPButton* setInputType(GPElement inputType) { this->_inputType = inputType; return this; } |
| 16 | GPButton* setAngle(double angle) { this->_angle = angle; return this; } |