mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
10c8081a54
remove lookupChangeType; rename setChange to setChangeType; rename setChangeFull to setChange src/paragraph_pimpl.h: remove lookupChange; rename lookupChangeFull to lookupChange; rename setChange to setChangeType; rename setChangeFull to setChange src/changes.h: remove lookup; rename lookupFull to lookup; rename loose_contains to containsOrPrecedes; adjust the other files accordingly git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13812 a592a061-630c-0410-9148-cb99ea01b6c8
182 lines
5.0 KiB
C++
182 lines
5.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file paragraph_pimpl.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 Jean-Marc Lasgouttes
|
|
* \author John Levon
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef PARAGRAPH_PIMPL_H
|
|
#define PARAGRAPH_PIMPL_H
|
|
|
|
#include "paragraph.h"
|
|
|
|
#include "changes.h"
|
|
#include "lyxfont.h"
|
|
#include "ParagraphParameters.h"
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
class LyXLayout;
|
|
|
|
|
|
class Paragraph::Pimpl {
|
|
public:
|
|
///
|
|
Pimpl(Paragraph * owner);
|
|
/// "Copy constructor"
|
|
Pimpl(Pimpl const &, Paragraph * owner);
|
|
///
|
|
void setContentsFromPar(Paragraph const & par);
|
|
|
|
//
|
|
// Change tracking
|
|
//
|
|
/// set tracking mode
|
|
void trackChanges(Change::Type type = Change::UNCHANGED);
|
|
/// stop tracking
|
|
void untrackChanges();
|
|
/// set all text as new for change mode
|
|
void cleanChanges(Paragraph::ChangeTracking ct = Paragraph::trackingUnknown);
|
|
/// look up change at given pos
|
|
Change const lookupChange(lyx::pos_type pos) const;
|
|
/// is there a change within the given range ?
|
|
bool isChanged(lyx::pos_type start, lyx::pos_type end) const;
|
|
/// is there a non-addition in this range ?
|
|
bool isChangeEdited(lyx::pos_type start, lyx::pos_type end) const;
|
|
/// set change type at given pos
|
|
void setChangeType(lyx::pos_type pos, Change::Type type);
|
|
/// set change at given pos
|
|
void setChange(lyx::pos_type pos, Change change);
|
|
/// mark as erased
|
|
void markErased(bool);
|
|
/// accept change
|
|
void acceptChange(lyx::pos_type start, lyx::pos_type end);
|
|
/// reject change
|
|
void rejectChange(lyx::pos_type start, lyx::pos_type end);
|
|
/// are we tracking changes ?
|
|
bool tracking() const { return changes_.get(); }
|
|
|
|
///
|
|
value_type getChar(lyx::pos_type pos) const;
|
|
///
|
|
void setChar(lyx::pos_type pos, value_type c);
|
|
///
|
|
void insertChar(lyx::pos_type pos, value_type c, Change change);
|
|
///
|
|
void insertInset(lyx::pos_type pos, InsetBase * inset, Change change);
|
|
/// definite erase
|
|
void eraseIntern(lyx::pos_type pos);
|
|
/// erase the given position. Returns true if it was actually erased
|
|
bool erase(lyx::pos_type pos);
|
|
/// erase the given range
|
|
int erase(lyx::pos_type start, lyx::pos_type end);
|
|
///
|
|
InsetBase * inset_owner;
|
|
|
|
/** A font entry covers a range of positions. Notice that the
|
|
entries in the list are inserted in random order.
|
|
I don't think it's worth the effort to implement a more effective
|
|
datastructure, because the number of different fonts in a paragraph
|
|
is limited. (Asger)
|
|
Nevertheless, I decided to store fontlist using a sorted vector:
|
|
fontlist = { {pos_1,font_1} , {pos_2,font_2} , ... } where
|
|
pos_1 < pos_2 < ..., font_{i-1} != font_i for all i,
|
|
and font_i covers the chars in positions pos_{i-1}+1,...,pos_i
|
|
(font_1 covers the chars 0,...,pos_1) (Dekel)
|
|
*/
|
|
class FontTable {
|
|
public:
|
|
///
|
|
FontTable(lyx::pos_type p, LyXFont const & f)
|
|
: pos_(p), font_(f)
|
|
{}
|
|
///
|
|
lyx::pos_type pos() const { return pos_; }
|
|
///
|
|
void pos(lyx::pos_type p) { pos_ = p; }
|
|
///
|
|
LyXFont const & font() const { return font_; }
|
|
///
|
|
void font(LyXFont const & f) { font_ = f;}
|
|
private:
|
|
/// End position of paragraph this font attribute covers
|
|
lyx::pos_type pos_;
|
|
/** Font. Interpretation of the font values:
|
|
If a value is LyXFont::INHERIT_*, it means that the font
|
|
attribute is inherited from either the layout of this
|
|
paragraph or, in the case of nested paragraphs, from the
|
|
layout in the environment one level up until completely
|
|
resolved.
|
|
The values LyXFont::IGNORE_* and LyXFont::TOGGLE are NOT
|
|
allowed in these font tables.
|
|
*/
|
|
LyXFont font_;
|
|
};
|
|
///
|
|
friend class matchFT;
|
|
///
|
|
class matchFT {
|
|
public:
|
|
/// used by lower_bound and upper_bound
|
|
int operator()(FontTable const & a, FontTable const & b) const {
|
|
return a.pos() < b.pos();
|
|
}
|
|
};
|
|
|
|
///
|
|
typedef std::vector<FontTable> FontList;
|
|
///
|
|
FontList fontlist;
|
|
|
|
///
|
|
void simpleTeXBlanks(std::ostream &, TexRow & texrow,
|
|
lyx::pos_type const i,
|
|
unsigned int & column,
|
|
LyXFont const & font,
|
|
LyXLayout const & style);
|
|
///
|
|
void simpleTeXSpecialChars(Buffer const &, BufferParams const &,
|
|
std::ostream &, TexRow & texrow,
|
|
OutputParams const &,
|
|
LyXFont & font, LyXFont & running_font,
|
|
LyXFont & basefont,
|
|
LyXFont const & outerfont,
|
|
bool & open_font,
|
|
Change::Type & running_change,
|
|
LyXLayout const & style,
|
|
lyx::pos_type & i,
|
|
unsigned int & column, value_type const c);
|
|
|
|
///
|
|
void validate(LaTeXFeatures & features,
|
|
LyXLayout const & layout) const;
|
|
|
|
///
|
|
unsigned int id_;
|
|
///
|
|
static unsigned int paragraph_id;
|
|
///
|
|
ParagraphParameters params;
|
|
|
|
private:
|
|
///
|
|
lyx::pos_type size() const { return owner_->size(); }
|
|
/// match a string against a particular point in the paragraph
|
|
bool isTextAt(std::string const & str, lyx::pos_type pos) const;
|
|
|
|
/// for recording and looking up changes in revision tracking mode
|
|
boost::scoped_ptr<Changes> changes_;
|
|
|
|
/// Who owns us?
|
|
Paragraph * owner_;
|
|
};
|
|
|
|
#endif
|