mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
5009d66e16
* General Toolbars code clean-up. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8707 a592a061-630c-0410-9148-cb99ea01b6c8
539 lines
12 KiB
C
539 lines
12 KiB
C
/**
|
|
* \file insettext.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Jürgen Vigna
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "insettext.h"
|
|
#include "insetnewline.h"
|
|
|
|
#include "buffer.h"
|
|
#include "bufferparams.h"
|
|
#include "BufferView.h"
|
|
#include "CutAndPaste.h"
|
|
#include "cursor.h"
|
|
#include "debug.h"
|
|
#include "dispatchresult.h"
|
|
#include "errorlist.h"
|
|
#include "funcrequest.h"
|
|
#include "gettext.h"
|
|
#include "intl.h"
|
|
#include "LColor.h"
|
|
#include "lyxfind.h"
|
|
#include "lyxlex.h"
|
|
#include "lyxrc.h"
|
|
#include "lyxtext.h"
|
|
#include "metricsinfo.h"
|
|
#include "output_docbook.h"
|
|
#include "output_latex.h"
|
|
#include "output_linuxdoc.h"
|
|
#include "output_plaintext.h"
|
|
#include "paragraph.h"
|
|
#include "paragraph_funcs.h"
|
|
#include "ParagraphParameters.h"
|
|
#include "rowpainter.h"
|
|
#include "lyxrow.h"
|
|
#include "sgml.h"
|
|
#include "texrow.h"
|
|
#include "undo.h"
|
|
|
|
#include "frontends/Alert.h"
|
|
#include "frontends/font_metrics.h"
|
|
#include "frontends/LyXView.h"
|
|
#include "frontends/Painter.h"
|
|
|
|
#include "support/lyxalgo.h" // lyx::count
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
using lyx::pos_type;
|
|
|
|
using lyx::graphics::PreviewLoader;
|
|
|
|
using lyx::support::isStrUnsignedInt;
|
|
using lyx::support::strToUnsignedInt;
|
|
|
|
using std::endl;
|
|
using std::for_each;
|
|
using std::max;
|
|
using std::string;
|
|
using std::auto_ptr;
|
|
using std::ostream;
|
|
using std::vector;
|
|
|
|
|
|
InsetText::InsetText(BufferParams const & bp)
|
|
: autoBreakRows_(false), drawFrame_(NEVER),
|
|
frame_color_(LColor::insetframe), text_(0)
|
|
{
|
|
paragraphs().push_back(Paragraph());
|
|
paragraphs().back().layout(bp.getLyXTextClass().defaultLayout());
|
|
if (bp.tracking_changes)
|
|
paragraphs().back().trackChanges();
|
|
init();
|
|
}
|
|
|
|
|
|
InsetText::InsetText(InsetText const & in)
|
|
: UpdatableInset(in), text_(in.text_.bv_owner)
|
|
{
|
|
// this is ugly...
|
|
operator=(in);
|
|
}
|
|
|
|
|
|
InsetText::InsetText() : text_(0)
|
|
{}
|
|
|
|
|
|
void InsetText::operator=(InsetText const & in)
|
|
{
|
|
UpdatableInset::operator=(in);
|
|
autoBreakRows_ = in.autoBreakRows_;
|
|
drawFrame_ = in.drawFrame_;
|
|
frame_color_ = in.frame_color_;
|
|
text_ = LyXText(in.text_.bv_owner);
|
|
text_.paragraphs() = in.text_.paragraphs();
|
|
init();
|
|
}
|
|
|
|
|
|
void InsetText::init()
|
|
{
|
|
ParagraphList::iterator pit = paragraphs().begin();
|
|
ParagraphList::iterator end = paragraphs().end();
|
|
for (; pit != end; ++pit)
|
|
pit->setInsetOwner(this);
|
|
old_par = -1;
|
|
}
|
|
|
|
|
|
void InsetText::clear(bool just_mark_erased)
|
|
{
|
|
ParagraphList & pars = paragraphs();
|
|
if (just_mark_erased) {
|
|
ParagraphList::iterator it = pars.begin();
|
|
ParagraphList::iterator end = pars.end();
|
|
for (; it != end; ++it)
|
|
it->markErased();
|
|
return;
|
|
}
|
|
|
|
// This is a gross hack...
|
|
LyXLayout_ptr old_layout = pars.begin()->layout();
|
|
|
|
pars.clear();
|
|
pars.push_back(Paragraph());
|
|
pars.begin()->setInsetOwner(this);
|
|
pars.begin()->layout(old_layout);
|
|
}
|
|
|
|
|
|
auto_ptr<InsetBase> InsetText::clone() const
|
|
{
|
|
return auto_ptr<InsetBase>(new InsetText(*this));
|
|
}
|
|
|
|
|
|
void InsetText::write(Buffer const & buf, ostream & os) const
|
|
{
|
|
os << "Text\n";
|
|
text_.write(buf, os);
|
|
}
|
|
|
|
|
|
void InsetText::read(Buffer const & buf, LyXLex & lex)
|
|
{
|
|
clear(false);
|
|
|
|
#ifdef WITH_WARNINGS
|
|
#warning John, look here. Doesnt make much sense.
|
|
#endif
|
|
if (buf.params().tracking_changes)
|
|
paragraphs().begin()->trackChanges();
|
|
|
|
// delete the initial paragraph
|
|
Paragraph oldpar = *paragraphs().begin();
|
|
paragraphs().clear();
|
|
bool res = text_.read(buf, lex);
|
|
init();
|
|
|
|
if (!res) {
|
|
lex.printError("Missing \\end_inset at this point. "
|
|
"Read: `$$Token'");
|
|
}
|
|
|
|
// sanity check
|
|
// ensure we have at least one par.
|
|
if (paragraphs().empty())
|
|
paragraphs().push_back(oldpar);
|
|
}
|
|
|
|
|
|
void InsetText::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
//lyxerr << "InsetText::metrics: width: " << mi.base.textwidth << endl;
|
|
setViewCache(mi.base.bv);
|
|
text_.metrics(mi, dim);
|
|
dim_ = dim;
|
|
font_ = mi.base.font;
|
|
text_.font_ = mi.base.font;
|
|
}
|
|
|
|
|
|
void InsetText::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
BOOST_ASSERT(!text_.paragraphs().begin()->rows.empty());
|
|
// update our idea of where we are
|
|
setPosCache(pi, x, y);
|
|
|
|
BufferView * bv = pi.base.bv;
|
|
bv->hideCursor();
|
|
|
|
x += scroll();
|
|
y -= text_.ascent();
|
|
|
|
// repaint the background if needed
|
|
if (backgroundColor() != LColor::background)
|
|
clearInset(pi.pain, x, y);
|
|
|
|
text_.draw(pi, x, y + bv->top_y());
|
|
|
|
if (drawFrame_ == ALWAYS || drawFrame_ == LOCKED)
|
|
drawFrame(pi.pain, x, y);
|
|
}
|
|
|
|
|
|
void InsetText::drawSelection(PainterInfo & pi, int x, int y) const
|
|
{
|
|
text_.drawSelection(pi, x, y);
|
|
}
|
|
|
|
|
|
void InsetText::drawFrame(Painter & pain, int x, int y) const
|
|
{
|
|
int const w = text_.width();
|
|
int const h = text_.height();
|
|
pain.rectangle(x, y, w, h, frameColor());
|
|
}
|
|
|
|
|
|
void InsetText::clearInset(Painter & pain, int x, int y) const
|
|
{
|
|
int const w = text_.width();
|
|
int const h = text_.height();
|
|
pain.fillRectangle(x, y, w, h, backgroundColor());
|
|
}
|
|
|
|
|
|
void InsetText::updateLocal(LCursor & cur)
|
|
{
|
|
if (!autoBreakRows_ && paragraphs().size() > 1) {
|
|
// collapseParagraphs
|
|
while (paragraphs().size() > 1) {
|
|
ParagraphList::iterator const first = paragraphs().begin();
|
|
ParagraphList::iterator second = first;
|
|
++second;
|
|
size_t const first_par_size = first->size();
|
|
|
|
if (!first->empty() &&
|
|
!second->empty() &&
|
|
!first->isSeparator(first_par_size - 1)) {
|
|
first->insertChar(first_par_size, ' ');
|
|
}
|
|
|
|
cur.clearSelection();
|
|
mergeParagraph(cur.buffer().params(), paragraphs(), 0);
|
|
}
|
|
}
|
|
|
|
if (!cur.selection())
|
|
cur.resetAnchor();
|
|
|
|
LyXView * lv = cur.bv().owner();
|
|
lv->view_state_changed();
|
|
lv->updateMenubar();
|
|
lv->updateToolbars();
|
|
if (old_par != cur.par()) {
|
|
lv->setLayout(text_.getPar(cur.par()).layout()->name());
|
|
old_par = cur.par();
|
|
}
|
|
}
|
|
|
|
|
|
string const InsetText::editMessage() const
|
|
{
|
|
return _("Opened Text Inset");
|
|
}
|
|
|
|
|
|
void InsetText::sanitizeEmptyText(BufferView & bv)
|
|
{
|
|
if (paragraphs().size() == 1
|
|
&& paragraphs().begin()->empty()
|
|
&& bv.getParentLanguage(this) != text_.current_font.language()) {
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
font.setLanguage(bv.getParentLanguage(this));
|
|
text_.setFont(bv.cursor(), font, false);
|
|
}
|
|
}
|
|
|
|
|
|
void InsetText::edit(LCursor & cur, bool left)
|
|
{
|
|
//lyxerr << "InsetText: edit left/right" << endl;
|
|
old_par = -1;
|
|
setViewCache(&cur.bv());
|
|
int const par = left ? 0 : paragraphs().size() - 1;
|
|
int const pos = left ? 0 : paragraphs().back().size();
|
|
text_.setCursor(cur.top(), par, pos);
|
|
cur.clearSelection();
|
|
finishUndo();
|
|
sanitizeEmptyText(cur.bv());
|
|
#ifdef WITH_WARNINGS
|
|
#warning can someone check if/when this is needed?
|
|
#endif
|
|
//Andre?
|
|
// updateLocal(cur);
|
|
}
|
|
|
|
|
|
InsetBase * InsetText::editXY(LCursor & cur, int x, int y)
|
|
{
|
|
lyxerr << "InsetText::edit xy" << endl;
|
|
old_par = -1;
|
|
return text_.editXY(cur, x, y);
|
|
//sanitizeEmptyText(cur.bv());
|
|
//updateLocal(cur);
|
|
}
|
|
|
|
|
|
void InsetText::priv_dispatch(LCursor & cur, FuncRequest & cmd)
|
|
{
|
|
//lyxerr << "InsetText::priv_dispatch: " << cmd.action << " " << endl;
|
|
setViewCache(&cur.bv());
|
|
|
|
bool was_empty = paragraphs().begin()->empty() && paragraphs().size() == 1;
|
|
text_.dispatch(cur, cmd);
|
|
|
|
// If the action has deleted all text in the inset, we need
|
|
// to change the language to the language of the surronding
|
|
// text.
|
|
// Why this cleverness? (Andre')
|
|
if (!was_empty && paragraphs().begin()->empty() &&
|
|
paragraphs().size() == 1) {
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
font.setLanguage(cur.bv().getParentLanguage(this));
|
|
text_.setFont(cur, font, false);
|
|
}
|
|
}
|
|
|
|
|
|
bool InsetText::getStatus(LCursor & cur, FuncRequest const & cmd,
|
|
FuncStatus & status) const
|
|
{
|
|
return text_.getStatus(cur, cmd, status);
|
|
}
|
|
|
|
|
|
int InsetText::latex(Buffer const & buf, ostream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
TexRow texrow;
|
|
latexParagraphs(buf, paragraphs(), os, texrow, runparams);
|
|
return texrow.rows();
|
|
}
|
|
|
|
|
|
int InsetText::plaintext(Buffer const & buf, ostream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
ParagraphList::const_iterator beg = paragraphs().begin();
|
|
ParagraphList::const_iterator end = paragraphs().end();
|
|
ParagraphList::const_iterator it = beg;
|
|
for (; it != end; ++it)
|
|
asciiParagraph(buf, *it, os, runparams, it == beg);
|
|
|
|
//FIXME: Give the total numbers of lines
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetText::linuxdoc(Buffer const & buf, ostream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
linuxdocParagraphs(buf, paragraphs(), os, runparams);
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetText::docbook(Buffer const & buf, ostream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
docbookParagraphs(buf, paragraphs(), os, runparams);
|
|
return 0;
|
|
}
|
|
|
|
|
|
void InsetText::validate(LaTeXFeatures & features) const
|
|
{
|
|
for_each(paragraphs().begin(), paragraphs().end(),
|
|
boost::bind(&Paragraph::validate, _1, boost::ref(features)));
|
|
}
|
|
|
|
|
|
void InsetText::getCursorPos(LCursor const & cur, int & x, int & y) const
|
|
{
|
|
x = text_.cursorX(cur.top());
|
|
y = text_.cursorY(cur.top());
|
|
}
|
|
|
|
|
|
bool InsetText::showInsetDialog(BufferView *) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
void InsetText::getLabelList(Buffer const & buffer,
|
|
std::vector<string> & list) const
|
|
{
|
|
ParagraphList::const_iterator pit = paragraphs().begin();
|
|
ParagraphList::const_iterator pend = paragraphs().end();
|
|
for (; pit != pend; ++pit) {
|
|
InsetList::const_iterator beg = pit->insetlist.begin();
|
|
InsetList::const_iterator end = pit->insetlist.end();
|
|
for (; beg != end; ++beg)
|
|
beg->inset->getLabelList(buffer, list);
|
|
}
|
|
}
|
|
|
|
|
|
void InsetText::markNew(bool track_changes)
|
|
{
|
|
ParagraphList::iterator pit = paragraphs().begin();
|
|
ParagraphList::iterator end = paragraphs().end();
|
|
for (; pit != end; ++pit) {
|
|
if (track_changes) {
|
|
pit->trackChanges();
|
|
} else {
|
|
// no-op when not tracking
|
|
pit->cleanChanges();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void InsetText::setText(string const & data, LyXFont const & font)
|
|
{
|
|
clear(false);
|
|
for (unsigned int i = 0; i < data.length(); ++i)
|
|
paragraphs().begin()->insertChar(i, data[i], font);
|
|
}
|
|
|
|
|
|
void InsetText::setAutoBreakRows(bool flag)
|
|
{
|
|
if (flag != autoBreakRows_) {
|
|
autoBreakRows_ = flag;
|
|
if (!flag)
|
|
removeNewlines();
|
|
}
|
|
}
|
|
|
|
|
|
void InsetText::setDrawFrame(DrawFrame how)
|
|
{
|
|
drawFrame_ = how;
|
|
}
|
|
|
|
|
|
LColor_color InsetText::frameColor() const
|
|
{
|
|
return LColor::color(frame_color_);
|
|
}
|
|
|
|
|
|
void InsetText::setFrameColor(LColor_color col)
|
|
{
|
|
frame_color_ = col;
|
|
}
|
|
|
|
|
|
void InsetText::setViewCache(BufferView const * bv) const
|
|
{
|
|
if (bv && bv != text_.bv_owner) {
|
|
//lyxerr << "setting view cache from "
|
|
// << text_.bv_owner << " to " << bv << "\n";
|
|
text_.bv_owner = const_cast<BufferView *>(bv);
|
|
}
|
|
}
|
|
|
|
|
|
void InsetText::removeNewlines()
|
|
{
|
|
ParagraphList::iterator it = paragraphs().begin();
|
|
ParagraphList::iterator end = paragraphs().end();
|
|
for (; it != end; ++it)
|
|
for (int i = 0; i < it->size(); ++i)
|
|
if (it->isNewline(i))
|
|
it->erase(i);
|
|
}
|
|
|
|
|
|
LyXText * InsetText::getText(int i) const
|
|
{
|
|
return (i == 0) ? const_cast<LyXText*>(&text_) : 0;
|
|
}
|
|
|
|
|
|
void InsetText::appendParagraphs(Buffer * buffer, ParagraphList & plist)
|
|
{
|
|
#ifdef WITH_WARNINGS
|
|
#warning FIXME Check if Changes stuff needs changing here. (Lgb)
|
|
// And it probably does. You have to take a look at this John. (Lgb)
|
|
#warning John, have a look here. (Lgb)
|
|
#endif
|
|
ParagraphList::iterator pit = plist.begin();
|
|
ParagraphList::iterator ins = paragraphs().insert(paragraphs().end(), *pit);
|
|
++pit;
|
|
mergeParagraph(buffer->params(), paragraphs(),
|
|
ins - paragraphs().begin() - 1);
|
|
|
|
ParagraphList::iterator pend = plist.end();
|
|
for (; pit != pend; ++pit)
|
|
paragraphs().push_back(*pit);
|
|
}
|
|
|
|
|
|
void InsetText::addPreview(PreviewLoader & loader) const
|
|
{
|
|
ParagraphList::const_iterator pit = paragraphs().begin();
|
|
ParagraphList::const_iterator pend = paragraphs().end();
|
|
|
|
for (; pit != pend; ++pit) {
|
|
InsetList::const_iterator it = pit->insetlist.begin();
|
|
InsetList::const_iterator end = pit->insetlist.end();
|
|
for (; it != end; ++it)
|
|
it->inset->addPreview(loader);
|
|
}
|
|
}
|
|
|
|
|
|
ParagraphList const & InsetText::paragraphs() const
|
|
{
|
|
return text_.paragraphs();
|
|
}
|
|
|
|
|
|
ParagraphList & InsetText::paragraphs()
|
|
{
|
|
return text_.paragraphs();
|
|
}
|