// -*- C++ -*- /** * \file TocModel.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Abdelrazak Younes * * Full author contact details are available in file CREDITS. */ #ifndef TOCMODEL_H #define TOCMODEL_H #include "qt_helpers.h" #include #include #include namespace lyx { class Buffer; class BufferView; class DocIterator; class Toc; class TocItem; namespace frontend { class TocTypeModel : public QStandardItemModel { public: /// TocTypeModel(QObject * parent = 0); /// void reset(); }; class TocModel : public QStandardItemModel { public: /// TocModel(QObject * parent = 0); /// void reset(Toc const & toc); /// void reset(); /// TocItem const & tocItem(QModelIndex const & index) const; /// QModelIndex modelIndex(DocIterator const & dit) const; /// int modelDepth() const; private: /// void populate(unsigned int & index, QModelIndex const & parent); /// QList toc_indexes_; /// Toc const * toc_; /// int maxdepth_; int mindepth_; }; class TocModels: public QObject { Q_OBJECT public: /// TocModels(); /// typedef QHash::const_iterator const_iterator; const_iterator begin() const { return models_.begin(); } const_iterator end() const { return models_.end(); } /// void reset(BufferView const * bv); /// int depth(QString const & type); /// QStandardItemModel * model(QString const & type); /// QStandardItemModel * nameModel() { return names_; } /// QModelIndex currentIndex(QString const & type) const; /// void goTo(QString const & type, QModelIndex const & index) const; /// void init(Buffer const & buffer); /// void updateBackend() const; Q_SIGNALS: /// Signal that the internal toc_models_ has been reset. void modelReset(); private: typedef QHash::iterator iterator; /// void clear(); /// void deleteAll(); /// BufferView const * bv_; /// QHash models_; /// TocTypeModel * names_; }; } // namespace frontend } // namespace lyx #endif // TOCMODEL_H