forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMonitorDataModel.cpp
467 lines (399 loc) · 9.27 KB
/
MonitorDataModel.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/*
*
*
* Distributed under the OpenDDS License.
* See: http://www.opendds.org/license.html
*/
#include "MonitorDataModel.h"
#include "TreeNode.h"
// Tell GCC to ignore implicitly declared copy methods as long as
// Qt is not compliant.
#ifdef __GNUC__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wdeprecated-copy"
#endif
#include <QtCore/QStringList>
#include <QtWidgets/QTreeView>
#ifdef __GNUC__
# pragma GCC diagnostic pop
#endif
namespace Monitor {
MonitorDataModel::MonitorDataModel( QObject* parent)
: QAbstractItemModel( parent)
{
// Tree view header values are invariant for this model.
QList< QVariant> list;
list << QString( "Element")
<< QString( "Value");
this->root_ = new TreeNode( list);
}
MonitorDataModel::~MonitorDataModel()
{
// Cascade delete through the tree data.
delete this->root_;
}
void
MonitorDataModel::newRoot( TreeNode* root)
{
beginResetModel();
delete root_;
root_ = root;
endResetModel();
}
void
MonitorDataModel::updated(
TreeNode* left, int lcol,
TreeNode* right, int rcol
)
{
QModelIndex topLeft = this->index( left, lcol);
QModelIndex bottomRight = this->index( right, rcol);
emit dataChanged( topLeft, bottomRight);
}
void
MonitorDataModel::updated( TreeNode* node, int column)
{
QModelIndex index = this->index( node, column);
emit dataChanged( index, index);
}
void
MonitorDataModel::changed()
{
emit layoutChanged();
}
QModelIndex
MonitorDataModel::index( TreeNode* node, int column) const
{
// Treat null nodes as the root.
if( !node) node = this->root_;
// We have to reach the root before we can start forming indices.
// Retain the row information for the entire path as we traverse it.
QList<int> list;
for( ; node->parent(); node = node->parent()) {
list.append( node->row());
}
// Form the index of the tree root to start from. Use the topmost
// non-null node that we found as the root.
QModelIndex index = this->QAbstractItemModel::createIndex( 0, column, node);
// Now we can form index values all the way back to the node of
// interest.
while( !list.isEmpty()) {
index = this->index( list.takeLast(), column, index);
}
return index;
}
TreeNode*
MonitorDataModel::getNode( const QModelIndex &index, bool defaultToRoot) const
{
if( index.isValid()) {
TreeNode* node = static_cast< TreeNode*>( index.internalPointer());
if( node) {
return node;
}
}
if (defaultToRoot) {
return this->root_;
} else {
return NULL;
}
}
QModelIndex
MonitorDataModel::index(
int row,
int column,
const QModelIndex& parent
) const
{
if( false == this->hasIndex( row, column, parent)) {
return QModelIndex();
}
TreeNode* parentNode = this->getNode( parent);
TreeNode* childNode = (*parentNode)[ row];
if( childNode) {
return this->QAbstractItemModel::createIndex( row, column, childNode);
} else {
return QModelIndex();
}
}
QModelIndex
MonitorDataModel::parent( const QModelIndex& index) const
{
if( false == index.isValid()) {
return QModelIndex();
}
TreeNode* childNode = this->getNode( index);
TreeNode* parentNode = childNode->parent();
if( parentNode == this->root_ || parentNode == 0) {
return QModelIndex();
}
return this->QAbstractItemModel::createIndex( parentNode->row(), 0, parentNode);
}
QVariant
MonitorDataModel::data( const QModelIndex& index, int role) const
{
if( false == index.isValid()) {
return QVariant();
}
switch( role) {
case Qt::DisplayRole:
return this->getNode( index)->column( index.column());
// for checkboxes in tree view
// case Qt::CheckStateRole:
// return Qt::Checked;
case Qt::ToolTipRole:
case Qt::StatusTipRole:
case Qt::WhatsThisRole:
default:
return QVariant();
case Qt::BackgroundRole:
{
QVariant value = this->getNode( index)->color( index.column());
if( value.value<QColor>().isValid()) {
return value;
} else {
return QVariant();
}
}
}
}
Qt::ItemFlags
MonitorDataModel::flags( const QModelIndex& index) const
{
if( false == index.isValid()) {
return Qt::ItemFlags();
}
return this->QAbstractItemModel::flags( index)
| Qt::ItemIsEnabled
| Qt::ItemIsSelectable
// | Qt::ItemIsUserCheckable // checkboxes in tree view
// | Qt::ItemIsEditable
// | Qt::ItemIsDragEnabled
// | Qt::ItemIsDropEnabled
;
}
QVariant
MonitorDataModel::headerData(
int section,
Qt::Orientation /* orientation */,
int role
) const
{
if( role == Qt::DisplayRole) {
return this->root_->column( section);
}
return QVariant();
}
int
MonitorDataModel::rowCount( const QModelIndex& parent) const
{
if( parent.column() > 0) {
return 0;
}
return this->getNode( parent)->size();
}
int
MonitorDataModel::columnCount( const QModelIndex& parent) const
{
return this->getNode( parent)->width();
}
bool
MonitorDataModel::setData(
const QModelIndex& index,
const QVariant& value,
int role
)
{
switch( role) {
// case Qt::EditRole:
// if( index.column() == 0) return false;
// break;
case Qt::DisplayRole:
this->getNode( index)->setData( index.column(), value);
break;
case Qt::BackgroundRole:
// QColor(255,191,191);
this->getNode( index)->setColor( index.column(), value);
break;
default: return false;
}
emit dataChanged( index, index);
return true;
}
bool
MonitorDataModel::setHeaderData(
int section,
Qt::Orientation /* orientation */,
const QVariant& value,
int role
)
{
switch( role) {
case Qt::DisplayRole:
this->root_->setData( section, value);
// this->getNode( index)->setColor( section, QColor(255,255,255));
break;
case Qt::BackgroundRole:
this->root_->setColor( section, value);
break;
default: return false;
}
emit
dataChanged( QModelIndex(), QModelIndex());
return true;
}
bool
MonitorDataModel::insertRows(
int row,
int count,
const QModelIndex& parent
)
{
bool success;
beginInsertRows( parent, row, row+count-1);
success = this->getNode( parent)->insertChildren(
row,
count,
this->root_->width()
);
endInsertRows();
emit layoutChanged();
return success;
}
bool
MonitorDataModel::removeRows(
int row,
int count,
const QModelIndex& parent
)
{
bool success;
beginRemoveRows( parent, row, row+count-1);
success = this->getNode( parent)->removeChildren( row, count);
endRemoveRows();
emit layoutChanged();
return success;
}
bool
MonitorDataModel::insertColumns(
int column,
int count,
const QModelIndex& parent
)
{
return this->QAbstractItemModel::insertColumns( column, count, parent);
}
bool
MonitorDataModel::removeColumns(
int column,
int count,
const QModelIndex& parent
)
{
return this->QAbstractItemModel::removeColumns( column, count, parent);
}
void
MonitorDataModel::sort(
int column,
Qt::SortOrder order
)
{
this->doSort( column, order);
}
void
MonitorDataModel::doSort(
int column,
Qt::SortOrder order,
const QModelIndex& index
)
{
TreeNode* node = this->getNode( index);
if( !node) {
node = this->root_;
}
node->sort( column, order);
emit layoutChanged();
}
QMimeData*
MonitorDataModel::mimeData( const QModelIndexList& indexes) const
{
return this->QAbstractItemModel::mimeData( indexes);
}
bool
MonitorDataModel::setItemData(
const QModelIndex& index,
const QMap<int, QVariant>& roles
)
{
return this->QAbstractItemModel::setItemData( index, roles);
}
Qt::DropActions
MonitorDataModel::supportedDropActions() const
{
return this->QAbstractItemModel::supportedDropActions();
}
QStringList
MonitorDataModel::mimeTypes() const
{
return this->QAbstractItemModel::mimeTypes();
}
bool
MonitorDataModel::dropMimeData(
const QMimeData* data,
Qt::DropAction action,
int row,
int column,
const QModelIndex& parent
)
{
return this->QAbstractItemModel::dropMimeData(
data,
action,
row,
column,
parent
);
}
bool
MonitorDataModel::removeRow(
int row,
const QModelIndex& parent
)
{
return this->QAbstractItemModel::removeRow( row, parent);
}
bool
MonitorDataModel::removeColumn(
int column,
const QModelIndex& parent
)
{
return this->QAbstractItemModel::removeColumn( column, parent);
}
bool
MonitorDataModel::hasChildren(
const QModelIndex& parent
) const
{
return this->getNode( parent)->size() > 0;
}
bool
MonitorDataModel::canFetchMore( const QModelIndex& parent) const
{
return this->QAbstractItemModel::canFetchMore( parent);
}
void
MonitorDataModel::fetchMore( const QModelIndex& parent)
{
this->QAbstractItemModel::fetchMore( parent);
}
void
MonitorDataModel::addData( int row, QList< QVariant> list, const QModelIndex& parent)
{
this->insertRows( row, 1, parent);
int column = 0;
Q_FOREACH( QVariant current, list) {
QModelIndex index = this->index( row, column, parent);
this->setData( index, list.at( column++), Qt::DisplayRole);
}
}
} // End of namespace Monitor