-
Notifications
You must be signed in to change notification settings - Fork 0
/
memorycell.cpp
71 lines (58 loc) · 1014 Bytes
/
memorycell.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
#include "memorycell.h"
MemoryCell::MemoryCell(QWidget *parent, const char *name) : QLabel(parent, name)
{
id = 0;
frequency = 0;
mode = 0;
filter_l = -2400;
filter_h = -20;
setMouseTracking( true );
}
void MemoryCell::setID( int i )
{
id = i;
}
void MemoryCell::setMode( int m )
{
mode = m;
}
void MemoryCell::setFilter( int l, int h )
{
filter_l = l;
filter_h = h;
}
void MemoryCell::setFrequency( long long int f )
{
frequency = f;
}
int MemoryCell::getID()
{
return id;
}
int MemoryCell::getMode()
{
return mode;
}
int MemoryCell::getFilter_l()
{
return filter_l;
}
int MemoryCell::getFilter_h()
{
return filter_h;
}
long long int MemoryCell::getFrequency()
{
return frequency;
}
void MemoryCell::mouseReleaseEvent ( QMouseEvent *e )
{
if ( e->state() == LeftButton )
emit read( this );
else if ( e->state() == MidButton )
emit write( this );
}
void MemoryCell::enterEvent( QEvent * )
{
emit display( this );
}