-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTreeModel.cc
713 lines (560 loc) · 20.1 KB
/
TreeModel.cc
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
/*===========================================================================*\
* *
* OpenFlipper *
* Copyright (C) 2001-2014 by Computer Graphics Group, RWTH Aachen *
* www.openflipper.org *
* *
*--------------------------------------------------------------------------- *
* This file is part of OpenFlipper. *
* *
* OpenFlipper is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation, either version 3 of *
* the License, or (at your option) any later version with the *
* following exceptions: *
* *
* If other files instantiate templates or use macros *
* or inline functions from this file, or you compile this file and *
* link it with other files to produce an executable, this file does *
* not by itself cause the resulting executable to be covered by the *
* GNU Lesser General Public License. This exception does not however *
* invalidate any other reasons why the executable file might be *
* covered by the GNU Lesser General Public License. *
* *
* OpenFlipper is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU LesserGeneral Public *
* License along with OpenFlipper. If not, *
* see <http://www.gnu.org/licenses/>. *
* *
\*===========================================================================*/
/*===========================================================================*\
* *
* $Revision$ *
* $LastChangedBy$ *
* $Date$ *
* *
\*===========================================================================*/
#include "TreeModel.hh"
#if QT_VERSION >= 0x050000
#include <QtWidgets>
#else
#include <QtGui>
#endif
#include <QBrush>
#include <iostream>
#include <OpenFlipper/common/Types.hh>
#include <OpenFlipper/BasePlugin/PluginFunctions.hh>
#include <OpenFlipper/common/GlobalOptions.hh>
#include <ObjectTypes/Light/LightWidget.hh>
//******************************************************************************
/** \brief Constructor
*
* @param _parent parent Object
*/
TreeModel::TreeModel( QObject *_parent) : QAbstractItemModel(_parent)
{
rootItem_ = new TreeItem( -1, "ROOT", DATA_UNKNOWN, 0);
}
//******************************************************************************
/** \brief Destructor
*
*/
TreeModel::~TreeModel()
{
}
//******************************************************************************
int TreeModel::columnCount(const QModelIndex &/*_parent*/) const
{
// Name,Visible,Source,Target -> 4
return (4);
}
//******************************************************************************
/** \brief Returns the data stored under the given role for the item referred to by the index
*
* @param _index a ModelIndex that defines the item in the tree
* @param _role defines the kind of data requested
* @return requested data
*/
QVariant TreeModel::data(const QModelIndex &_index, int _role) const
{
// Skip invalid requests
if (!_index.isValid())
return QVariant();
// Get the corresponding tree item
TreeItem *item = static_cast<TreeItem*>(_index.internalPointer());
if ( item == rootItem_ ) {
std::cerr << "Root" << std::endl;
}
// Set the background color of the objects row
if ( _role == Qt::BackgroundRole ) {
if ( !item->visible() ) {
return QVariant( QBrush(QColor(100,100,100) ) );
}
}
switch (_index.column() ) {
// Name
case 0 :
// If we are setting the name, also add the icon
if ( _role == Qt::DecorationRole ) {
if (item->dataType() == DATA_LIGHT)
{
LightObject* light = 0;
if (item->id() != -1 && PluginFunctions::getObject( item->id(), light ) ) {
if (light != 0 && !light->lightSource()->enabled())
return QVariant (QIcon (OpenFlipper::Options::iconDirStr()+OpenFlipper::Options::dirSeparator()+"LightOff.png"));
}
}
return QVariant( typeIcon(item->dataType()) );
}
if (_role != Qt::DisplayRole && _role != Qt::EditRole )
return QVariant();
return QVariant(item->name());
break;
// Visible
case 1 :
if (_role == Qt::CheckStateRole ) {
bool visible = false;
// target group
if (item->isGroup() && item->childCount() > 0)
{
QList< TreeItem* > children = item->getLeafs();
visible = children[0]->visible();
for (int i=0; i < children.size() ; ++i)
{
if (visible != children[i]->visible())
return QVariant(Qt::PartiallyChecked);
}
}
else
visible = item->visible();
return (visible) ? QVariant(Qt::Checked) : QVariant(Qt::Unchecked);
}
return QVariant();
// Source
case 2 :
if (_role == Qt::CheckStateRole ) {
bool source = false;
// target group
if (item->isGroup() && item->childCount() > 0)
{
QList< TreeItem* > children = item->getLeafs();
source = children[0]->source();
for (int i=0; i < children.size() ; ++i)
{
if (source != children[i]->source())
return QVariant(Qt::PartiallyChecked);
}
}
else
source = item->source();
return (source) ? QVariant(Qt::Checked) : QVariant(Qt::Unchecked);
}
return QVariant();
// Target
case 3 :
if (_role == Qt::CheckStateRole ) {
bool target = false;
// target group
if (item->isGroup() && item->childCount() > 0)
{
QList< TreeItem* > children = item->getLeafs();
target = children[0]->target();
for (int i=0; i < children.size() ; ++i)
{
if (target != children[i]->target())
return QVariant(Qt::PartiallyChecked);
}
}
else
target = item->target();
return (target) ? QVariant(Qt::Checked) : QVariant(Qt::Unchecked);
}
return QVariant();
default:
return QVariant();
}
return QVariant();
}
//******************************************************************************
/** \brief Returns the item flags for the given index
*
* @param _index ModelIndex that defines an item in the tree
* @return flags for the given ModelIndex
*/
Qt::ItemFlags TreeModel::flags(const QModelIndex &_index) const
{
if (!_index.isValid())
return 0;
Qt::ItemFlags flags = 0;
// Show/Source/Target
if ( ( _index.column() == 1 ) ||
( _index.column() == 2 ) ||
( _index.column() == 3 ) )
flags = Qt::ItemIsUserCheckable | Qt::ItemIsEnabled | Qt::ItemIsSelectable;
else
if ( _index.column() == 0 )
flags = Qt::ItemIsEditable | Qt::ItemIsEnabled | Qt::ItemIsSelectable;
else
flags = Qt::ItemIsEnabled;
// Get the corresponding tree item
TreeItem *item = static_cast<TreeItem*>(_index.internalPointer());
if ( item->isGroup() )
return flags | Qt::ItemIsDragEnabled | Qt::ItemIsDropEnabled;
else
return flags | Qt::ItemIsDragEnabled;
}
//******************************************************************************
/** \brief Returns the data in the header
*
* @param _section the column in the header
* @param _orientation header orientation (only horizontal handled)
* @param _role the role that defines the type of data
* @return the requested data
*/
QVariant TreeModel::headerData(int _section, Qt::Orientation _orientation,
int _role) const
{
if (_orientation == Qt::Horizontal && _role == Qt::DisplayRole) {
switch (_section) {
case 0 : return QVariant("Name");
case 1 : return QVariant("Show");
case 2 : return QVariant("Source");
case 3 : return QVariant("Target");
default :
return QVariant();
}
}
return QVariant();
}
//******************************************************************************
/** \brief Returns the index of the item in the model specified by the given row, column and parent index.
*
* @param _row the row
* @param _column the column
* @param _parent parent item
* @return corresponding ModelIndex
*/
QModelIndex TreeModel::index(int _row, int _column,const QModelIndex &_parent) const
{
// if (!hasIndex(row, column, _parent))
// return QModelIndex();
TreeItem *parentItem;
if (!_parent.isValid())
parentItem = rootItem_;
else
parentItem = static_cast<TreeItem*>(_parent.internalPointer());
TreeItem *childItem = parentItem->child(_row);
if (childItem)
return createIndex(_row, _column, childItem);
else
return QModelIndex();
}
//******************************************************************************
/** \brief Return index of parent item
*
* @param _index a ModelIndex
* @return parent of the given ModelIndex
*/
QModelIndex TreeModel::parent(const QModelIndex &_index) const
{
if (!_index.isValid())
return QModelIndex();
TreeItem *childItem = static_cast<TreeItem*>(_index.internalPointer());
TreeItem *parentItem = childItem->parent();
if (parentItem == rootItem_)
return QModelIndex();
return createIndex(parentItem->row(), 0, parentItem);
}
//******************************************************************************
/** \brief Returns the number of rows under given parent
*
* @param _parent parent Item
* @return number of rows that are children of given parent
*/
int TreeModel::rowCount(const QModelIndex &_parent) const
{
TreeItem *parentItem;
if (_parent.column() > 0)
return 0;
if (!_parent.isValid())
parentItem = rootItem_;
else
parentItem = static_cast<TreeItem*>(_parent.internalPointer());
return parentItem->childCount();
}
//******************************************************************************
/** \brief The object with the given id has been changed. Update the model.
*
* @param _id id of an object
*/
void TreeModel::objectChanged(int _id) {
if ( _id != -1 ){
BaseObject* obj = 0;
PluginFunctions::getObject(_id, obj);
TreeItem* item = rootItem_->childExists(_id);
//if internal and external representation are both valid
if (obj != 0 && item != 0){
//update the name
bool updateRow = false;
if ( obj->name() != item->name() ){
item->name( obj->name() );
updateRow = true;
}
//update visibility
if ( obj->visible() != item->visible() ){
item->visible( obj->visible() );
updateRow = true;
}
//update source flag
if ( obj->source() != item->source() ){
item->source( obj->source() );
updateRow = true;
}
//update target flag
if ( obj->target() != item->target() ){
item->target( obj->target() );
updateRow = true;
}
if (updateRow)
{
//TODO actually we do not need to update the whole row but single column somehow doesn't work
QModelIndex index0 = getModelIndex(item,0);
QModelIndex index1 = getModelIndex(item,3);
if ( index0.isValid() && index1.isValid() ){
//the whole row has to be updated because of the grey background-color
emit dataChanged( index0, index1);
}
}
//update parent
if ( obj->parent() == PluginFunctions::objectRoot() && isRoot( item->parent() ) ){
return;
}else if ( obj->parent() == PluginFunctions::objectRoot() && !isRoot( item->parent() ) ){
moveItem(item, rootItem_ );
}else if ( obj->parent()->id() != item->parent()->id() ){
TreeItem* parent = rootItem_->childExists( obj->parent()->id() );
if (parent != 0)
moveItem(item, parent );
}
}
}
}
/** \brief The object with the given id has been added. add it to the internal tree
*
* @param _object The added object
*/
void TreeModel::objectAdded(BaseObject* _object){
// check if item already in model tree
// this function can be called by addEmpty and fileOpened
// both will be called by fileOpened such that the item
// already exists
if( rootItem_->childExists( _object->id() ))
return;
TreeItem* parent = 0;
//find the parent
if ( _object->parent() == PluginFunctions::objectRoot() )
parent = rootItem_;
else
parent = rootItem_->childExists( _object->parent()->id() );
if (parent != 0){
QModelIndex parentIndex = getModelIndex(parent, 0);
beginInsertRows(parentIndex, parent->childCount(), parent->childCount()); //insert at the bottom
TreeItem* item = new TreeItem( _object->id(), _object->name(), _object->dataType(), parent);
parent->appendChild( item );
endInsertRows();
}
objectChanged( _object->id() );
}
/** \brief The object with the given id has been deleted. delete it from the internal tree
*
* @param _id id of the object
*/
void TreeModel::objectDeleted(int _id){
TreeItem* item = rootItem_->childExists(_id);
if ( item != 0 && !isRoot(item) ){
QModelIndex itemIndex = getModelIndex(item, 0);
QModelIndex parentIndex = itemIndex.parent();
beginRemoveRows( parentIndex, itemIndex.row(), itemIndex.row() );
item->parent()->removeChild(item);
item->deleteSubtree();
delete item;
endRemoveRows();
}
}
//******************************************************************************
/** \brief move the item to a new parent
*
* @param _item the item
* @param _parent new parent
*/
void TreeModel::moveItem(TreeItem* _item, TreeItem* _parent ){
QModelIndex itemIndex = getModelIndex(_item, 0);
QModelIndex oldParentIndex = itemIndex.parent();
QModelIndex newParentIndex = getModelIndex(_parent, 0);
beginMoveRows ( oldParentIndex, itemIndex.row(), itemIndex.row(), newParentIndex,0 );
_item->parent()->removeChild(_item);
_item->setParent( _parent );
_parent->appendChild( _item );
endMoveRows();
}
//******************************************************************************
/** \brief Return item at given index
*
* @param _index a ModelIndex
* @return item at given index
*/
TreeItem* TreeModel::getItem(const QModelIndex &_index) const
{
if (_index.isValid()) {
TreeItem *item = static_cast<TreeItem*>(_index.internalPointer());
if (item) return item;
}
return rootItem_;
}
//******************************************************************************
/** \brief Return item-name at given index
*
* @param _index A ModelIndex
* @return name of the item at given index
*/
QString TreeModel::itemName(const QModelIndex &_index) const
{
if (_index.isValid()) {
TreeItem *item = static_cast<TreeItem*>(_index.internalPointer());
if (item)
return item->name();
}
return "not found";
}
//******************************************************************************
/** \brief Return item-id at given index
*
* @param _index a ModelIndex
* @return item-id at given index
*/
int TreeModel::itemId(const QModelIndex &_index) const
{
if (_index.isValid()) {
TreeItem *item = static_cast<TreeItem*>(_index.internalPointer());
if (item)
return item->id();
}
return -1;
}
//******************************************************************************
/** \brief Return index of given item
*
* Warning: Only use this function if you know that all ModelIndices are created
*
* @param _object an object
* @param _column a column
* @return index of object and column
*/
QModelIndex TreeModel::getModelIndex(TreeItem* _object, int _column ){
// root item gets an invalid QModelIndex
if ( _object == rootItem_ )
return QModelIndex();
QModelIndex index = createIndex(_object->row(), _column, _object);
return index;
}
//******************************************************************************
bool TreeModel::setData(const QModelIndex &_index, const QVariant &_value, int /*role*/)
{
emit dataChangedInside( itemId(_index), _index.column(), _value );
return true;
}
//******************************************************************************
/** \brief return if an object is equal to the root object
*
* @param _item the item to be checked
* @return is it the root object?
*/
bool TreeModel::isRoot(TreeItem * _item) {
return ( _item == rootItem_ );
}
/*******************************************************************************
drag & drop stuff
*******************************************************************************/
/** \brief return the supported drop actions
*
* @return drop actions
*/
Qt::DropActions TreeModel::supportedDropActions() const
{
return /*Qt::CopyAction |*/ Qt::MoveAction;
}
//******************************************************************************
/** \brief return the mimeType for drag & drop
*
* @return the mimeType
*/
QStringList TreeModel::mimeTypes() const
{
QStringList types;
types << "DataControl/dragDrop";
return types;
}
//******************************************************************************
/** \brief generate mimeData for given ModelIndexes
*
* @param _indexes list of ModelIndexes
* @return the mimeData
*/
QMimeData* TreeModel::mimeData(const QModelIndexList& _indexes) const
{
QMimeData *mimeData = new QMimeData();
QByteArray encodedData;
QDataStream stream(&encodedData, QIODevice::WriteOnly);
QVector< int > rows;
foreach (QModelIndex index, _indexes) {
if (index.isValid()) {
if (!rows.contains( index.row() ) ){
TreeItem *item = getItem(index);
stream << item->id();
rows.push_back( index.row() );
}
}
}
mimeData->setData("DataControl/dragDrop", encodedData);
return mimeData;
}
//******************************************************************************
bool TreeModel::dropMimeData( const QMimeData *_data,
Qt::DropAction _action,
int /*_row*/,
int /*_column*/,
const QModelIndex &_parent)
{
if (_action == Qt::IgnoreAction)
return true;
if (!_data->hasFormat("DataControl/dragDrop"))
return false;
QByteArray encodedData = _data->data("DataControl/dragDrop");
QDataStream stream(&encodedData, QIODevice::ReadOnly);
QVector< int > ids;
while (!stream.atEnd()) {
int id;
stream >> id;
ids.push_back( id );
}
if (ids.count() == 0)
return false;
//get new parent
TreeItem *newParent = getItem(_parent);
if ( newParent == 0 || !newParent->isGroup() )
return false;
//and move all objects
for (int i = 0; i < ids.count(); i++){
//tell the DataControlPlugin to move the corresponding BaseObject
emit moveBaseObject( ids[i], newParent->id() );
}
return true;
}
//******************************************************************************
TreeItem *TreeModel::getItem(const int _id) const
{
return rootItem_->childExists(_id);
}