mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
8c0bd3a77b
* toc.[Ch]: - rewritten to take advantage of new TocBackend class. The toc cache is implemented as a static variable: static map<Buffer const *, lyx::TocBackend> toc_backend_; * buffer_funcs.C: updateLabels(Buffer const & buf) now calls "lyx::toc::updateToc(buf);" * pariterator.h: added default constructor ParConstIterator(): DocIterator() {} * insetfloat.C: added pit parameter to TocItem construction * insetwrap.C: added pit parameter to TocItem construction * MenuBackend.C: use a const ref instead of a copy of TocList * ControlToc.[Ch]: optimisation of the API by using const reference instead of copy. * qt4/TocPanel.[Ch]: - optimisation of the API by using const reference instead of copy - directly use of TocBackend::TocIterator instead of identification by paragraph contents. * qt4/QToc.C: - optimisation of the API by using const reference instead of copy - makes use of TocBackend::Item::uid() * qt2/QToc.C: - use TocItem::depth() and TocItem::str() instead of public member access. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13713 a592a061-630c-0410-9148-cb99ea01b6c8
127 lines
2.6 KiB
C++
127 lines
2.6 KiB
C++
// -*- C++ -*-
|
|
/* \file pariterator.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author unknown
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef PARITERATOR_H
|
|
#define PARITERATOR_H
|
|
|
|
#include "dociterator.h"
|
|
#include "ParagraphList_fwd.h"
|
|
|
|
#include "support/types.h"
|
|
|
|
#include <boost/optional.hpp>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class InsetBase;
|
|
class LyXText;
|
|
|
|
|
|
class ParIterator : public std::iterator<std::forward_iterator_tag, Paragraph>,
|
|
public DocIterator
|
|
{
|
|
public:
|
|
typedef std::iterator<std::forward_iterator_tag, Paragraph> StdIt;
|
|
|
|
typedef StdIt::value_type value_type;
|
|
typedef StdIt::difference_type difference_type;
|
|
typedef StdIt::pointer pointer;
|
|
typedef StdIt::reference reference;
|
|
|
|
///
|
|
ParIterator() : DocIterator() {}
|
|
|
|
|
|
///
|
|
ParIterator(InsetBase &, lyx::pit_type pit);
|
|
///
|
|
ParIterator(ParIterator const &);
|
|
///
|
|
ParIterator(DocIterator const &);
|
|
|
|
/// This really should be implemented...
|
|
//ParIterator & operator=(ParIterator const &);
|
|
///
|
|
ParIterator & operator++();
|
|
///
|
|
ParIterator operator++(int);
|
|
/// See comment in pariterator.C
|
|
//ParIterator & operator--();
|
|
///
|
|
Paragraph & operator*() const;
|
|
///
|
|
Paragraph * operator->() const;
|
|
/// This gives us the top-most parent paragraph
|
|
lyx::pit_type outerPar() const;
|
|
///
|
|
lyx::pit_type pit() const;
|
|
///
|
|
/// return the paragraph this cursor is in
|
|
pit_type & pit() { return DocIterator::pit(); }
|
|
|
|
ParagraphList & plist() const;
|
|
};
|
|
|
|
|
|
DocIterator makeDocIterator(ParIterator const &, lyx::pos_type);
|
|
|
|
ParIterator par_iterator_begin(InsetBase & inset);
|
|
|
|
ParIterator par_iterator_end(InsetBase & inset);
|
|
|
|
|
|
///
|
|
bool operator==(ParIterator const & iter1, ParIterator const & iter2);
|
|
|
|
///
|
|
bool operator!=(ParIterator const & iter1, ParIterator const & iter2);
|
|
|
|
|
|
class ParConstIterator : public std::iterator<std::forward_iterator_tag,
|
|
Paragraph>,
|
|
public DocIterator
|
|
{
|
|
public:
|
|
///
|
|
ParConstIterator(): DocIterator() {}
|
|
///
|
|
ParConstIterator(ParConstIterator const &);
|
|
///
|
|
ParConstIterator(DocIterator const &);
|
|
///
|
|
|
|
ParConstIterator & operator++();
|
|
///
|
|
ParConstIterator & operator--();
|
|
///
|
|
Paragraph const & operator*() const;
|
|
///
|
|
Paragraph const * operator->() const;
|
|
///
|
|
ParagraphList const & plist() const;
|
|
};
|
|
|
|
bool operator==(ParConstIterator const & iter1,
|
|
ParConstIterator const & iter2);
|
|
|
|
bool operator!=(ParConstIterator const & iter1,
|
|
ParConstIterator const & iter2);
|
|
|
|
|
|
ParConstIterator par_const_iterator_begin(InsetBase const & inset);
|
|
|
|
ParConstIterator par_const_iterator_end(InsetBase const & inset);
|
|
|
|
|
|
#endif
|