treeitem.h
author insilmaril
Mon, 20 Apr 2009 10:42:05 +0000
changeset 754 db0ec4bcf416
parent 753 25a77484ec72
child 755 ed5b407975b3
permissions -rw-r--r--
minor fixes
     1 #ifndef TREEITEM_H
     2 #define TREEITEM_H
     3 
     4 #include <QList>
     5 #include <QVariant>
     6 
     7 #include "noteobj.h"
     8 #include "xmlobj.h"
     9 
    10 class LinkableMapObj;
    11 class BranchObj;
    12 class BranchItem;
    13 
    14 
    15 class VymModel;
    16 
    17 class TreeItem:public XMLObj
    18 {
    19 public:
    20 	enum Type {Undefined,MapCenter,Branch,Image};
    21 	enum HideTmpMode {HideNone, HideExport};
    22 
    23     TreeItem(const QList<QVariant> &data, TreeItem *parent = 0);
    24     ~TreeItem();
    25 	QString saveToDir (const QString &tmpdir,const QString &prefix, const QPointF& offset);
    26 
    27 
    28 	// General housekeeping
    29 	void setModel (VymModel *m);
    30 	VymModel* getModel();
    31 
    32     void appendChild (TreeItem *child);
    33 	void removeChild (int row);
    34 
    35     TreeItem *child(int row);
    36     int childCount() const;
    37     int childNumber() const;
    38     int columnCount() const;
    39 	int branchCount() const;
    40 	int imageCount() const;
    41 	int xlinkCount() const;
    42 
    43     int row() const;
    44 	int column() const;
    45 	int depth() ;
    46     TreeItem *parent();
    47 
    48 	/*! Return number of item in parent by type, 
    49 	    e.g. first branch has number 0           */
    50 	int num();		
    51 	int num (TreeItem *item);	//! Return number of item by type
    52 
    53 	// Accessing data
    54     QVariant data(int column) const;
    55 	void setHeading (const QString s);
    56 	QString getHeading() const;
    57 	std::string headingStd() const;	//! convenience function used for debugging
    58 
    59 protected:
    60 	NoteObj note;
    61 public:	
    62 	void setNote(const QString s);
    63 	QString getNote();
    64 	virtual void setNoteObj(const NoteObj &, bool updateNoteEditor=true);
    65 	virtual NoteObj getNoteObj();			
    66 	virtual QString getNoteASCII(const QString &indent, const int &width); // returns note	(ASCII)
    67     virtual QString getNoteASCII();			// returns note	(ASCII)
    68     virtual QString getNoteOpenDoc();		// returns note	(OpenDoc)
    69 
    70 
    71 protected:
    72 	Type type;
    73 public:	
    74 	void setType (const Type t);
    75 	Type getType ();
    76 	bool isBranchLikeType() const;
    77 	QString getTypeName ();
    78 
    79 protected:
    80 	QString objID;					//! id set during load/save currently used for xLinks
    81 public:
    82 	virtual void setID (const QString &s);
    83 	virtual QString getID ();
    84 
    85 	// Navigation and selection
    86 	TreeItem* getChildNum(const int &n);
    87 	BranchItem* getFirstBranch();
    88 	BranchItem* getLastBranch();
    89 	BranchItem* getBranchNum(const int &n);
    90 	BranchObj* getBranchObjNum(const int &n);
    91 	void setLastSelectedBranch();		//! Set myself as last selected in parent
    92 	void setLastSelectedBranch(int i);	//! Set last selected branch directly
    93 	TreeItem* getLastSelectedBranch();
    94 	TreeItem* findBySelectString (const QString &);	
    95 
    96 	virtual void setHideTmp (HideTmpMode);
    97 	virtual bool hasHiddenExportParent ();
    98 	virtual void setHideInExport(bool);		// set export of object (and children)
    99 	virtual bool hideInExport();
   100 	virtual bool isHidden ();		
   101 
   102 	
   103 	// Relation to map objects in graphicsscene	// FIXME-3 should be obsolete
   104 	LinkableMapObj* getLMO();
   105 	void setLMO (LinkableMapObj*);
   106 
   107 protected:
   108 	VymModel *model;
   109 
   110     QList<TreeItem*> childItems;
   111     QList<QVariant> itemData;
   112     TreeItem *parentItem;
   113  
   114 	LinkableMapObj *lmo;
   115 
   116 	int branchOffset;
   117 	int branchCounter;
   118 	int lastSelectedBranchNum;
   119 
   120 	bool hideExport;//! Hide this item in export
   121 	bool hidden;	//! Hidden in export if true
   122 };
   123 
   124 #endif