-
Notifications
You must be signed in to change notification settings - Fork 24
/
GLCDCheckBox.cpp
124 lines (91 loc) · 3.39 KB
/
GLCDCheckBox.cpp
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
Project: 1Sheeld Library
File: GLCDCheckBox.cpp
Version: 7.0
Compiler: Arduino avr-gcc 4.3.2
Author: Integreight
Date: 2015.7
*/
#define FROM_ONESHEELD_LIBRARY
#include "OneSheeld.h"
#include "GLCDCheckBox.h"
GLCDCheckBox::GLCDCheckBox(int x , int y, char * _dataString): ShapeClass(GLCD_CHECK_BOX_TYPE,x,y)
{
dataStringLength = strlen(_dataString)+1;
dataString = NULL;
dataMalloced=false;
if(dataStringLength!=0)
{
dataString = (char *) malloc(sizeof(char)*(dataStringLength));
memcpy(dataString,_dataString,dataStringLength);
dataMalloced=true;
}
value = false;
isCallbackAssigned = false;
isInteractiveShape = true;
}
void GLCDCheckBox::draw()
{
byte xPositionArray[2] ;
xPositionArray[1] = (xposition >> 8) & 0xFF;
xPositionArray[0] = xposition & 0xFF;
byte yPositionArray[2] ;
yPositionArray[1] = (yposition >> 8) & 0xFF;
yPositionArray[0] = yposition & 0xFF;
byte shapeIdArray[2] ;
shapeIdArray[1] = (shapeID >> 8) & 0xFF;
shapeIdArray[0] = shapeID & 0xFF;
byte functionId = SHAPE_DRAW;
OneSheeld.sendShieldFrame(GLCD_ID,0,GLCD_CHECK_BOX_TYPE,5,new FunctionArg(1,&functionId),new FunctionArg(2,shapeIdArray)
,new FunctionArg(2,xPositionArray)
,new FunctionArg(2,yPositionArray)
,new FunctionArg(strlen(dataString),(byte *)dataString));
}
bool GLCDCheckBox::isSelected()
{
return value;
}
void GLCDCheckBox::setText(char * dataString)
{
byte shapeIdArray[2] ;
shapeIdArray[1] = (shapeID >> 8) & 0xFF;
shapeIdArray[0] = shapeID & 0xFF;
byte functionId = GLCD_CHECK_BOX_SET_TEXT;
OneSheeld.sendShieldFrame(GLCD_ID,0,GLCD_CHECK_BOX_TYPE,3,new FunctionArg(1,&functionId),new FunctionArg(2,shapeIdArray)
,new FunctionArg(strlen(dataString),(byte *)dataString));
}
void GLCDCheckBox::setSize(byte size)
{
byte shapeIdArray[2] ;
shapeIdArray[1] = (shapeID >> 8) & 0xFF;
shapeIdArray[0] = shapeID & 0xFF;
byte functionId = GLCD_CHECK_BOX_SET_SIZE;
OneSheeld.sendShieldFrame(GLCD_ID,0,GLCD_CHECK_BOX_TYPE,3,new FunctionArg(1,&functionId),new FunctionArg(2,shapeIdArray)
,new FunctionArg(1,&size));
}
void GLCDCheckBox::select()
{
byte shapeIdArray[2] ;
shapeIdArray[1] = (shapeID >> 8) & 0xFF;
shapeIdArray[0] = shapeID & 0xFF;
byte functionId = GLCD_CHECK_BOX_SELECT;
OneSheeld.sendShieldFrame(GLCD_ID,0,GLCD_CHECK_BOX_TYPE,2,new FunctionArg(1,&functionId),new FunctionArg(2,shapeIdArray));
}
void GLCDCheckBox::deselect()
{
byte shapeIdArray[2] ;
shapeIdArray[1] = (shapeID >> 8) & 0xFF;
shapeIdArray[0] = shapeID & 0xFF;
byte functionId = GLCD_CHECK_BOX_UNSELECT;
OneSheeld.sendShieldFrame(GLCD_ID,0,GLCD_CHECK_BOX_TYPE,2,new FunctionArg(1,&functionId),new FunctionArg(2,shapeIdArray));
}
void GLCDCheckBox::setOnChange(void (*userFunction)(bool))
{
isCallbackAssigned = true;
onChangeCallback = userFunction;
}
GLCDCheckBox::~GLCDCheckBox()
{
if(dataMalloced)
free(dataString);
}