Menu

[c54480]: / treeitem.cpp  Maximize  Restore  History

Download this file

849 lines (720 with data), 16.6 kB

  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
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
#include <iostream>
#include <QStringList>
#include "attributeitem.h"
#include "branchobj.h"
#include "branchitem.h"
#include "misc.h"
#include "treeitem.h"
#include "vymmodel.h"
#include "xlinkitem.h"
#include "xlinkobj.h"
using namespace std;
extern uint itemLastID;
extern FlagRow* standardFlagsMaster;
extern FlagRow* systemFlagsMaster;
extern QTextStream vout;
TreeItem::TreeItem()
{
//qDebug() << "Constr. TI this="<<this;
init();
itemData.clear();
rootItem=this;
parentItem=NULL;
}
TreeItem::TreeItem(const QList<QVariant> &data, TreeItem *parent)
{
//qDebug() << "Constructor TreeItem this="<<this<<" parent="<<parent;
init();
parentItem = parent;
itemData = data;
rootItem=this;
if (parentItem )
rootItem=parentItem->rootItem;
}
TreeItem::~TreeItem()
{
//qDebug()<<"Destr TreeItem this="<<this<<" childcount="<<childItems.count();
TreeItem *ti;
while (!childItems.isEmpty())
{
ti = childItems.takeFirst();
delete ti;
}
}
void TreeItem::init()
{
model=NULL;
// Assign ID
itemLastID++;
id = itemLastID;
uuid = QUuid::createUuid();
branchOffset = 0;
branchCounter = 0;
imageOffset = 0;
imageCounter = 0;
attributeCounter = 0;
attributeOffset = 0;
xlinkCounter = 0;
xlinkOffset = 0;
target = false;
heading.clear();
heading.setText(" ");
note.setText("");
hidden = false;
hideExport = false;
backgroundColor = Qt::transparent;
standardFlags.setMasterRow (standardFlagsMaster);
systemFlags.setMasterRow (systemFlagsMaster);
}
void TreeItem::setModel (VymModel *m)
{
model = m;
}
VymModel* TreeItem::getModel ()
{
return model;
}
int TreeItem::getRowNumAppend (TreeItem *item)
{
switch (item->type)
{
case Attribute: return attributeOffset + attributeCounter;
case XLink: return xlinkOffset + xlinkCounter;
case Image: return imageOffset + imageCounter;
case MapCenter: return branchOffset + branchCounter;
case Branch: return branchOffset + branchCounter;
default: return -1;
}
}
void TreeItem::appendChild(TreeItem *item)
{
item->parentItem=this;
item->rootItem=rootItem;
item->setModel (model);
if (item->type == Attribute)
{
// attribute are on top of list
childItems.insert (attributeCounter,item);
attributeCounter++;
xlinkOffset++;
imageOffset++;
branchOffset++;
}
if (item->type == XLink)
{
childItems.insert (xlinkCounter+xlinkOffset,item);
xlinkCounter++;
imageOffset++;
branchOffset++;
}
if (item->type == Image)
{
childItems.insert (imageCounter+imageOffset,item);
imageCounter++;
branchOffset++;
}
if (item->isBranchLikeType())
{
// branches are on bottom of list
childItems.append(item);
branchCounter++;
// Set correct type
if (this==rootItem)
item->setType(MapCenter);
else
item->setType (Branch);
}
}
void TreeItem::removeChild(int row)
{
if (row<0 || row > childItems.size()-1)
qWarning ("TreeItem::removeChild tried to remove non existing item?!");
else
{
if (childItems.at(row)->type==Attribute)
{
attributeCounter--;
xlinkOffset--;
imageOffset--;
branchOffset--;
}
if (childItems.at(row)->type==XLink)
{
xlinkCounter--;
imageOffset--;
branchOffset--;
}
if (childItems.at(row)->type==Image)
{
imageCounter--;
branchOffset--;
}
if (childItems.at(row)->isBranchLikeType())
branchCounter--;
childItems.removeAt (row);
}
}
TreeItem *TreeItem::child(int row)
{
return childItems.value(row);
}
int TreeItem::childCount() const
{
return childItems.count();
}
int TreeItem::childNumber() const
{
if (parentItem)
return parentItem->childItems.indexOf(const_cast<TreeItem*>(this));
return 0;
}
int TreeItem::columnCount() const
{
return 1;
}
int TreeItem::branchCount() const
{
return branchCounter;
}
int TreeItem::imageCount() const
{
return imageCounter;
}
int TreeItem::xlinkCount() const
{
return xlinkCounter;
}
int TreeItem::attributeCount() const
{
return attributeCounter;
}
int TreeItem::row() const
{
if (parentItem)
return parentItem->childItems.indexOf(const_cast<TreeItem*>(this));
qDebug() << "TI::row() pI=NULL this="<<this<<" ***************";
return 0;
}
int TreeItem::depth()
{
// Rootitem d=-1
// MapCenter d=0
int d=-2;
TreeItem *ti=this;
while (ti!=NULL)
{
ti=ti->parent();
d++;
}
return d;
}
TreeItem *TreeItem::parent()
{
//qDebug() << "TI::parent of "<<getHeadingStd()<<" is "<<parentItem;
return parentItem;
}
bool TreeItem::isChildOf (TreeItem *ti)
{
if (this==rootItem) return false;
if (parentItem==ti) return true;
if (parentItem==rootItem) return false;
return parentItem->isChildOf (ti);
}
int TreeItem::childNum()
{
return parentItem->childItems.indexOf (this);
}
int TreeItem::num()
{
if (!parentItem) return -1;
return parentItem->num (this);
}
int TreeItem::num (TreeItem *item)
{
if (!item) return -1;
if (!childItems.contains(item)) return -1;
switch (item->getType())
{
case MapCenter: return childItems.indexOf (item) - branchOffset;
case Branch: return childItems.indexOf (item) - branchOffset;
case Image: return childItems.indexOf (item) - imageOffset;
case Attribute: return childItems.indexOf (item) - attributeOffset;
case XLink: return childItems.indexOf (item) - xlinkOffset;
default: return -1;
}
}
void TreeItem::setType(const Type t)
{
type=t;
itemData[1]=getTypeName();
}
TreeItem::Type TreeItem::getType()
{
if (type==Branch && depth()==0) return MapCenter; // should not be necesssary
return type;
}
bool TreeItem::isBranchLikeType() const
{
if (type==Branch ||type==MapCenter) return true;
return false;
}
QString TreeItem::getTypeName()
{
switch (type)
{
case Undefined: return QString ("Undefined");
case MapCenter: return QString ("MapCenter");
case Branch: return QString ("Branch");
case Image: return QString ("Image");
case Attribute: return QString ("Attribute");
case XLink: return QString ("XLink");
default: return QString ("TreeItem::getTypeName no typename defined?!");
}
}
QVariant TreeItem::data(int column) const
{
return itemData.value(column);
}
void TreeItem::setHeading (const VymText &vt)
{
heading = vt;
itemData[0]= heading.getTextASCII(); // used in TreeEditor
}
void TreeItem::setHeadingPlainText (const QString &s)
{
VymText vt;
vt.setPlainText(s);
if (!heading.isRichText() )
// Keep current color
vt.setColor( heading.getColor() );
setHeading(vt);
}
Heading TreeItem::getHeading() const
{
return heading;
}
QString TreeItem::getHeadingText ()
{
return heading.getText();
}
std::string TreeItem::getHeadingStd () const
{
return getHeadingPlain().toStdString();
}
QString TreeItem::getHeadingPlain() const
{
// strip beginning and tailing WS
return heading.getTextASCII().trimmed();
}
QString TreeItem::getHeadingPlainWithParents(uint numberOfParents = 0)
{
QString s = getHeadingPlain();
if (numberOfParents > 0)
{
TreeItem *ti = this;
int l = numberOfParents;
while ( l > 0 && ti->depth() > 0 )
{
ti = ti->parent();
if (ti)
s = ti->getHeadingPlain() + " -> " + s;
else
l = 0;
l--;
}
}
return s;
}
QString TreeItem::getHeadingDepth () // Indent by depth for debugging
{
QString ds;
for (int i=0; i<depth(); i++) ds += " ";
return ds + getHeadingPlain();
}
void TreeItem::setHeadingColor (QColor color)
{
heading.setColor(color);
}
QColor TreeItem::getHeadingColor ()
{
return heading.getColor();
}
void TreeItem::setBackgroundColor (QColor color)
{
backgroundColor=color;
}
QColor TreeItem::getBackgroundColor()
{
return backgroundColor;
}
void TreeItem::setURL (const QString &u)
{
url = u;
if (!url.isEmpty())
{
if (url.contains ("bugzilla.novell.com"))
{
systemFlags.activate ("system-url-bugzilla-novell");
if (systemFlags.isActive ("system-url"))
systemFlags.deactivate ("system-url");
} else
{
systemFlags.activate ("system-url");
if (systemFlags.isActive ("system-url-bugzilla-novell"))
systemFlags.deactivate ("system-url-bugzilla-novell");
}
}
else
{
if (systemFlags.isActive ("system-url"))
systemFlags.deactivate ("system-url");
if (systemFlags.isActive ("system-url-bugzilla-novell"))
systemFlags.deactivate ("system-url-bugzilla-novell");
}
}
QString TreeItem::getURL ()
{
return url;
}
void TreeItem::setVymLink (const QString &vl)
{
if (!vl.isEmpty())
{
// We need the relative (from loading)
// or absolute path (from User event)
// and build the absolute path.
QDir d(vl);
if (d.isAbsolute())
vymLink = vl;
else
{
// If we have relative, use path of
// current map to build absolute path
// based on path of current map and relative
// path to linked map
QString p=dirname(model->getDestPath());
vymLink = convertToAbs( p, vl);
}
systemFlags.activate("system-vymLink");
}
else
{
vymLink.clear();
systemFlags.deactivate("system-vymLink");
}
}
QString TreeItem::getVymLink ()
{
return vymLink;
}
void TreeItem::toggleTarget ()
{
systemFlags.toggle ("system-target");
target= systemFlags.isActive("system-target");
model->emitDataChanged(this); // FIXME-4 better call from VM?
}
bool TreeItem::isTarget ()
{
return target;
}
bool TreeItem::isNoteEmpty()
{
return note.isEmpty();
}
void TreeItem::clearNote()
{
note.clear();
systemFlags.deactivate ("system-note");
}
void TreeItem::setNote(const VymText &vt)
{
note = vt;
if (!note.isEmpty() && !systemFlags.isActive ("system-note"))
systemFlags.activate ("system-note");
if (note.isEmpty() && systemFlags.isActive ("system-note"))
systemFlags.deactivate ("system-note");
}
void TreeItem::setNote(const VymNote &vn)
{
note = vn;
if (!note.isEmpty() && !systemFlags.isActive ("system-note"))
systemFlags.activate ("system-note");
if (note.isEmpty() && systemFlags.isActive ("system-note"))
systemFlags.deactivate ("system-note");
}
bool TreeItem::hasEmptyNote()
{
return note.isEmpty();
}
VymNote TreeItem::getNote()
{
return note;
}
QString TreeItem::getNoteASCII(const QString &indent, const int &width)
{
return note.getTextASCII(indent,width);
}
QString TreeItem::getNoteASCII()
{
return note.getTextASCII();
}
void TreeItem::activateStandardFlag (const QString &name)
{
standardFlags.activate (name);
model->emitDataChanged(this);
}
void TreeItem::deactivateStandardFlag (const QString &name)
{
standardFlags.deactivate (name);
model->emitDataChanged(this);
}
void TreeItem::deactivateAllStandardFlags ()
{
standardFlags.deactivateAll ();
model->emitDataChanged(this);
}
void TreeItem::toggleStandardFlag(const QString &name, FlagRow *master)
{
standardFlags.toggle (name,master);
}
void TreeItem::toggleSystemFlag(const QString &name, FlagRow *master)
{
systemFlags.toggle (name,master);
model->emitDataChanged(this);
}
bool TreeItem::hasActiveStandardFlag (const QString &name)
{
return standardFlags.isActive (name);
}
bool TreeItem::hasActiveSystemFlag (const QString &name)
{
return systemFlags.isActive (name);
}
QStringList TreeItem::activeStandardFlagNames ()
{
return standardFlags.activeFlagNames();
}
FlagRow* TreeItem::getStandardFlagRow()
{
return &standardFlags;
}
QStringList TreeItem::activeSystemFlagNames ()
{
return systemFlags.activeFlagNames();
}
bool TreeItem::canMoveDown()
{
switch (type)
{
case Undefined: return false;
case MapCenter:
case Branch:
if (!parentItem) return false;
if (parentItem->num (this) < parentItem->branchCount()-1)
return true;
else
return false;
break;
case Image: return false;
default: return false;
}
}
bool TreeItem::canMoveUp()
{
switch (type)
{
case MapCenter:
case Branch:
if (!parentItem) return false;
if (parentItem->num (this) > 0)
return true;
else
return false;
break;
default: return false;
}
}
uint TreeItem::getID()
{
return id;
}
void TreeItem::setUuid(const QString &id)
{
uuid=QUuid(id);
}
QUuid TreeItem::getUuid()
{
return uuid;
}
TreeItem* TreeItem::getChildNum(const int &n)
{
if (n >= 0 && n < childItems.count() )
return childItems.at(n);
else
return NULL;
}
BranchItem* TreeItem::getFirstBranch()
{
if (branchCounter > 0)
return getBranchNum (0);
else
return NULL;
}
BranchItem* TreeItem::getLastBranch()
{
if (branchCounter > 0)
return getBranchNum (branchCounter - 1);
else
return NULL;
}
ImageItem* TreeItem::getFirstImage()
{
if (imageCounter > 0)
return getImageNum (imageCounter - 1);
else
return NULL;
}
ImageItem* TreeItem::getLastImage()
{
if (imageCounter > 0)
return getImageNum (imageCounter - 1);
else
return NULL;
}
BranchItem* TreeItem::getNextBranch(BranchItem *currentBranch)
{
if (!currentBranch) return NULL;
int n = num (currentBranch) + 1;
if (n < branchCounter)
return getBranchNum (branchOffset + n);
else
return NULL;
}
BranchItem* TreeItem::getBranchNum(const int &n)
{
if (n >= 0 && n < branchCounter)
return (BranchItem*)getChildNum (branchOffset + n);
else
return NULL;
}
BranchObj* TreeItem::getBranchObjNum(const int &n)
{
if (n>=0 && n<branchCounter)
{
BranchItem *bi=getBranchNum(n);
if (bi)
{
BranchObj *bo=(BranchObj*)(bi->getLMO());
if (bo)
return bo;
else
qDebug()<<"TI::getBONum bo=NULL";
}
}
return NULL;
}
ImageItem* TreeItem::getImageNum (const int &n)
{
if (n>=0 && n<imageCounter)
return (ImageItem*)getChildNum (imageOffset + n);
else
return NULL;
}
FloatImageObj* TreeItem::getImageObjNum (const int &n)
{
if (imageCounter>0 )
return (FloatImageObj*)(getImageNum(n)->getLMO());
else
return NULL;
}
AttributeItem* TreeItem::getAttributeNum (const int &n)
{
if (n>=0 && n<attributeCounter)
return (AttributeItem*)getChildNum (attributeOffset + n);
else
return NULL;
}
XLinkItem* TreeItem::getXLinkItemNum (const int &n)
{
if (n>=0 && n<xlinkCounter )
return (XLinkItem*)getChildNum (xlinkOffset +n);
else
return NULL;
}
XLinkObj* TreeItem::getXLinkObjNum (const int &n)
{
if (xlinkCounter>0 )
{
XLinkItem *xli=getXLinkItemNum (n);
if (xli)
{
Link *l=xli->getLink();
if (l) return l->getXLinkObj();
}
}
return NULL;
}
void TreeItem::setHideTmp (HideTmpMode mode)
{
if (type==Image || type==Branch || type==MapCenter)
// ((ImageItem*)this)->updateVisibility();
{
//LinkableMapObj* lmo=((MapItem*)this)->getLMO();
if (mode==HideExport && (hideExport || hasHiddenExportParent() ) ) // FIXME-4 try to avoid calling hasScrolledParent repeatedly
// Hide stuff according to hideExport flag and parents
hidden=true;
else
// Do not hide, but still take care of scrolled status
hidden=false;
updateVisibility();
// And take care of my children
for (int i=0; i<branchCount(); ++i)
getBranchNum(i)->setHideTmp (mode);
}
}
bool TreeItem::hasHiddenExportParent()
{
// Calls parents recursivly to
// find out, if we or parents are temp. hidden
if (hidden || hideExport) return true;
if (parentItem)
return parentItem->hasHiddenExportParent();
else
return false;
}
void TreeItem::setHideInExport(bool b)
{
if (type==MapCenter ||type==Branch || type==Image)
{
hideExport=b;
if (b)
systemFlags.activate("system-hideInExport");
else
systemFlags.deactivate("system-hideInExport");
}
}
bool TreeItem::hideInExport()
{
return hideExport;
}
void TreeItem::updateVisibility()
{
// overloaded in derived objects
}
bool TreeItem::isHidden()
{
return hidden;
}
QString TreeItem::getGeneralAttr()
{
QString s;
if (hideExport)
s+=attribut("hideInExport","true");
if (!url.isEmpty())
s+=attribut ("url",url);
if (!vymLink.isEmpty())
s+=attribut ("vymLink",convertToRel (model->getDestPath(),vymLink));
if (target)
s+=attribut ("localTarget","true");
return s;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.