-
Notifications
You must be signed in to change notification settings - Fork 6
/
RxFrameTable.cpp
225 lines (180 loc) · 5.52 KB
/
RxFrameTable.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
#include "RxFrameTable.h"
#include <QTimer>
#include <QDebug>
#include <QFont>
#include <QBrush>
#include <QSize>
#include <QDateTime>
//m_RxMsgList = new QVector<canalMsg>;
RxFrameTable::RxFrameTable(QObject *parent/*, QVector<canalMsg>& rxmsglist*/) : QAbstractTableModel(parent), /*m_RxCanFrames(rxmsglist),*/ m_timer(new QTimer(this))
{
//m_timer->setInterval(100);
//connect(m_timer, &QTimer::timeout , this, &RxFrameTable::timerHit);
//m_timer->start();
m_RxCanFrames = new QVector<canalMsg>;
}
RxFrameTable::~RxFrameTable()
{
m_RxCanFrames->clear();
m_RxCanFrames->squeeze();
delete m_RxCanFrames;
}
/* QTableItemModel */
QVariant RxFrameTable::headerData(int section, Qt::Orientation orientation, int role) const
{
if (role == Qt::DisplayRole && orientation == Qt::Horizontal)
{
switch (section)
{
case 0:
return QString("Timestamp (us)");
case 1:
return QString("Type");
case 2:
return QString("Id");
case 3:
return QString("Length");
case 4:
return QString("Data");
}
}
if (role == Qt::SizeHintRole && orientation == Qt::Horizontal){
//QSize size(100,10);
//size.shrunkBy()
//return size;
}
// if (role == Qt::BackgroundRole && orientation == Qt::Horizontal){
//return QBrush(Qt::red);
// return ???
// }
/*
if (role == Qt::DisplayRole && orientation == Qt::Vertical)
{
//return QString("%1").arg(section + 1);
return QVariant(section).toString();
}
*/
return QVariant();
}
int RxFrameTable::rowCount(const QModelIndex &parent) const
{
if (parent.isValid())
return 0;
return m_RxCanFrames->size();
//return 1;
}
int RxFrameTable::columnCount(const QModelIndex &parent) const
{
if (parent.isValid())
return 0;
return 5;
}
QVariant RxFrameTable::data(const QModelIndex &index, int role) const
{
int row = index.row();
int col = index.column();
// uint cnt = 0;
/*
typedef struct _CANframe
{
quint32 timestamp;
quint8 flags;
quint32 id;
quint8 sizeData;
quint8 data[64];
} CANframe;
*/
//CANframe canframeFD;
canalMsg canframe;
//canframeFD.sizeData = 64;
//for(int x=0; x<64; x++) canframeFD.data [x] = x;
/*
typedef struct structCanalMsg {
unsigned long flags; // CAN message flags
unsigned long obid; // Used by driver for channel info etc.
unsigned long id; // CAN id (11-bit or 29-bit)
unsigned char sizeData; // Data size 0-8
unsigned char data[8]; // CAN Data
unsigned long timestamp; // Relative time stamp for package in microseconds
} canalMsg;
*/
/********************* Qt::DisplayRole ********************/
if (role == Qt::DisplayRole)
{
QByteArray data_array;
QString data;
if(row < m_RxCanFrames->size())
{
canframe = m_RxCanFrames->at(row);
switch(col)
{
case 0:
return QString("%1").arg(canframe.timestamp,0,10);
case 1:
{
QString flag_string;
if(canframe.flags & CANAL_IDFLAG_EXTENDED)
flag_string = "Ext";
else
flag_string = "Std";
if(canframe.flags & CANAL_IDFLAG_RTR)
flag_string.append(":Rtr");
if(canframe.flags & CANAL_IDFLAG_STATUS)
flag_string = "Status";
return flag_string;
}
case 2:
return QString("0x%1").arg(canframe.id,0,16);
case 3:
return QString("%1").arg(canframe.sizeData,0,10);
case 4:
{
//data_array = QByteArray::fromRawData((const char*) canframeFD.data, canframeFD.sizeData);
data_array = QByteArray::fromRawData((const char*) canframe.data, canframe.sizeData & 0xF);
data = data_array.toHex(' ');
return data;
}
}
}
}
/****************** Qt::TextAlignmentRole *****************/
if( role == Qt::ForegroundRole)
{
if(col == 2)
{
//return QColor(Qt::red);
}
}
/****************** Qt::TextAlignmentRole *****************/
if( role == Qt::TextAlignmentRole)
{
if (col != 4) //change text alignment only for cell(1,1)
return Qt::AlignHCenter + Qt::AlignVCenter;
}
/****************** Qt::SizeHintRole *****************/
if( role == Qt::SizeHintRole )
{
if (col == 4) //change text alignment only for cell(1,1)
{
//QSize size;
//size.setWidth(50);
//return size;
}
}
return QVariant();
}
Qt::ItemFlags RxFrameTable::flags(const QModelIndex &index) const
{
Qt::ItemFlags flags;
flags = QAbstractItemModel::flags(index);
flags |= Qt::ItemIsEditable;
return flags;
}
/**************************** Timer *****************************/
void RxFrameTable::timerHit()
{
//selectR
//ui->RxMsgTableView->scrollToBottom();
//ui->RxMsgTableView->selectRow(RxTableModel->m_RxCanFrames.size()-1);
//ui->RxMsgTableView->setFocus();
}