mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-02 14:01:10 +00:00
f6bcac7285
- updateCounters renamed to updateLabels - void updateLabels(Buffer const & buf, ParIterator & it): new convenience function - void updateLabels(Buffer const & buf, ParIterator & from, ParIterator & to): new convenience function - setCounter renamed to setLabel - bool tryToUpdateCurrentLabel(Buffer const & buf, ParIterator & it): new method - needsUpdateCounters: deleted * src/BufferView_pimpl.C * src/CutAndPaste.C * src/frontends/controllers/ControlDocument.C * src/lyxfunc.C * src/text.C * src/text2.C * src/text3.C - fixed the calls to updateLabels git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13689 a592a061-630c-0410-9148-cb99ea01b6c8
70 lines
1.7 KiB
C++
70 lines
1.7 KiB
C++
// -*- C++ -*-
|
|
/* \file buffer_funcs.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
* \author Alfredo Braunstein
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef BUFFER_FUNCS_H
|
|
#define BUFFER_FUNCS_H
|
|
|
|
#include "lyxlayout_ptr_fwd.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
class Buffer;
|
|
class DocIterator;
|
|
class ErrorList;
|
|
class TeXErrors;
|
|
class ParIterator;
|
|
|
|
/**
|
|
* Loads a LyX file \c filename into \c Buffer
|
|
* and \return success status.
|
|
*/
|
|
bool loadLyXFile(Buffer *, std::string const & filename);
|
|
|
|
/* Make a new file (buffer) with name \c filename based on a template
|
|
* named \c templatename
|
|
*/
|
|
Buffer * newFile(std::string const & filename, std::string const & templatename,
|
|
bool isNamed = false);
|
|
|
|
///return the format of the buffer on a string
|
|
std::string const bufferFormat(Buffer const & buffer);
|
|
///
|
|
void bufferErrors(Buffer const &, TeXErrors const &);
|
|
///
|
|
void bufferErrors(Buffer const &, ErrorList const &);
|
|
|
|
/// Count the number of words in the text between these two iterators
|
|
int countWords(DocIterator const & from, DocIterator const & to);
|
|
|
|
/// Expand the counters for the labelstring of \c layout
|
|
std::string expandLabel(Buffer const & buf, LyXLayout_ptr const & layout,
|
|
bool appendix);
|
|
|
|
|
|
/// update labels at "iter".
|
|
/**
|
|
A full updateLabels(Buffer const &) will be called if not possible.
|
|
*/
|
|
void updateLabels(Buffer const & buf, ParIterator & it);
|
|
|
|
/// update labels between "from" and "to" if possible.
|
|
/**
|
|
A full updateLabels(Buffer const &) will be called if not possible.
|
|
*/
|
|
void updateLabels(Buffer const & buf,
|
|
ParIterator & from, ParIterator & to);
|
|
|
|
/// updates all counters
|
|
void updateLabels(Buffer const &);
|
|
|
|
#endif // BUFFER_FUNCS_H
|