-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdecodertab.h
39 lines (32 loc) · 897 Bytes
/
decodertab.h
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
#ifndef DECODERTAB_H
#define DECODERTAB_H
#include <QWidget>
class QLabel;
class DecoderTab : public QWidget
{
Q_OBJECT
public:
explicit DecoderTab(QWidget *parent = 0);
signals:
public slots:
void inputByteCount(quint32);
void candidatePayloadCount(quint32);
void overLengthMessageCount(quint32);
void lengthOddCount(quint32);
void manchesterInvalidCount(quint32);
void checkSumErrorCount(quint32);
void validMessageCount(quint32);
void seventyCount(quint32);
void collisionCount(quint32);
private:
QLabel *numInputBytesLabel;
QLabel *numCandidateMessagesLabel;
QLabel *numOverLengthMessagesLabel;
QLabel *numLengthOddPayloadsLabel;
QLabel *numManchesterInvalidLabel;
QLabel *numCheckSumErrorsLabel;
QLabel *numValidMessagesLabel;
QLabel *numSeventyLabel;
QLabel *numCollisionLabel;
};
#endif // DECODERTAB_H