/* * PDFedit - free program for PDF document manipulation. * Copyright (C) 2006, 2007 PDFedit team: Michal Hocko, * Miroslav Jahoda, * Jozef Misutka, * Martin Petricek * * Project is hosted on http://sourceforge.net/projects/pdfedit */ #ifndef __TREEITEMARRAY_H__ #define __TREEITEMARRAY_H__ #include "treeitem.h" class QString; namespace gui { using namespace pdfobjects; class TreeData; /** class holding one CArray object in tree \brief Tree item containing CArray */ class TreeItemArray : public TreeItem { public: TreeItemArray(TreeData *_data,Q_ListView *parent,boost::shared_ptr pdfObj,const QString name=QString::null,Q_ListViewItem *after=NULL,const QString &nameId=NULL); TreeItemArray(TreeData *_data,Q_ListViewItem *parent,boost::shared_ptr pdfObj,const QString name=QString::null,Q_ListViewItem *after=NULL,const QString &nameId=NULL); void remove(unsigned int idx); virtual ~TreeItemArray(); //From TreeItemAbstract interface virtual bool validChild(const QString &name,Q_ListViewItem *oldChild); virtual ChildType getChildType(const QString &name); virtual TreeItemAbstract* createChild(const QString &name,ChildType typ,Q_ListViewItem *after=NULL); virtual QStringList getChildNames(); virtual bool haveChild(); virtual QSCObject* getQSObject(BaseCore *_base); virtual QSCObject* getQSObject(); }; } // namespace gui #endif