/* This file is part of * ====================================================== * * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich * Copyright 1995-2001 The LyX Team. * * ====================================================== */ #include #ifdef __GNUG__ #pragma implementation #endif #include "paragraph.h" #include "paragraph_pimpl.h" #include "lyxrc.h" #include "layout.h" #include "language.h" #include "tex-strings.h" #include "buffer.h" #include "bufferparams.h" #include "debug.h" #include "texrow.h" #include "BufferView.h" #include "encoding.h" #include "ParameterStruct.h" #include "gettext.h" #include "changes.h" #include "insets/insetbib.h" #include "insets/insetoptarg.h" #include "support/filetools.h" #include "support/lstrings.h" #include "support/lyxmanip.h" #include "support/FileInfo.h" #include "support/LAssert.h" #include "support/textutils.h" #include #include #include #include using std::ostream; using std::endl; using std::fstream; using std::ios; using std::lower_bound; using std::upper_bound; using lyx::pos_type; // this is a bad idea, but how can Paragraph find its buffer to get // parameters? (JMarc) extern string bibitemWidest(Buffer const *); // this is a minibuffer namespace { char minibuffer_char; LyXFont minibuffer_font; Inset * minibuffer_inset; } // namespace anon extern BufferView * current_view; Paragraph::Paragraph() : pimpl_(new Paragraph::Pimpl(this)) { #ifndef NO_NEXT next_ = 0; previous_ = 0; #endif enumdepth = 0; itemdepth = 0; bibkey = 0; // ale970302 params().clear(); } #ifndef NO_NEXT // This constructor inserts the new paragraph in a list. Paragraph::Paragraph(Paragraph * par) : pimpl_(new Paragraph::Pimpl(this)) { enumdepth = 0; itemdepth = 0; // double linked list begin next_ = par->next_; if (next_) next_->previous_ = this; previous_ = par; previous_->next_ = this; // end bibkey = 0; // ale970302 params().clear(); } #endif Paragraph::Paragraph(Paragraph const & lp, bool same_ids) : pimpl_(new Paragraph::Pimpl(*lp.pimpl_, this, same_ids)) { enumdepth = 0; itemdepth = 0; #ifndef NO_NEXT next_ = 0; previous_ = 0; #endif // this is because of the dummy layout of the paragraphs that // follow footnotes layout_ = lp.layout(); // ale970302 if (lp.bibkey) { bibkey = static_cast (lp.bibkey->clone(*current_view->buffer())); } else { bibkey = 0; } // copy everything behind the break-position to the new paragraph insetlist = lp.insetlist; InsetList::iterator it = insetlist.begin(); InsetList::iterator end = insetlist.end(); for (; it != end; ++it) { it.setInset(it.getInset()->clone(*current_view->buffer(), same_ids)); // tell the new inset who is the boss now it.getInset()->parOwner(this); } } // the destructor removes the new paragraph from the list Paragraph::~Paragraph() { #ifndef NO_NEXT if (previous_) previous_->next_ = next_; if (next_) next_->previous_ = previous_; #endif // ale970302 delete bibkey; delete pimpl_; // //lyxerr << "Paragraph::paragraph_id = " // << Paragraph::paragraph_id << endl; } void Paragraph::write(Buffer const * buf, ostream & os, BufferParams const & bparams, depth_type & dth) const { // The beginning or end of a deeper (i.e. nested) area? if (dth != params().depth()) { if (params().depth() > dth) { while (params().depth() > dth) { os << "\n\\begin_deeper "; ++dth; } } else { while (params().depth() < dth) { os << "\n\\end_deeper "; --dth; } } } // First write the layout os << "\n\\layout " << layout()->name() << '\n'; // Maybe some vertical spaces. if (params().spaceTop().kind() != VSpace::NONE) os << "\\added_space_top " << params().spaceTop().asLyXCommand() << ' '; if (params().spaceBottom().kind() != VSpace::NONE) os << "\\added_space_bottom " << params().spaceBottom().asLyXCommand() << ' '; // Maybe the paragraph has special spacing params().spacing().writeFile(os, true); // The labelwidth string used in lists. if (!params().labelWidthString().empty()) os << "\\labelwidthstring " << params().labelWidthString() << '\n'; // Lines above or below? if (params().lineTop()) os << "\\line_top "; if (params().lineBottom()) os << "\\line_bottom "; // Pagebreaks above or below? if (params().pagebreakTop()) os << "\\pagebreak_top "; if (params().pagebreakBottom()) os << "\\pagebreak_bottom "; // Start of appendix? if (params().startOfAppendix()) os << "\\start_of_appendix "; // Noindent? if (params().noindent()) os << "\\noindent "; // Do we have a manual left indent? if (!params().leftIndent().zero()) os << "\\leftindent " << params().leftIndent().asString() << ' '; // Alignment? if (params().align() != LYX_ALIGN_LAYOUT) { int h = 0; switch (params().align()) { case LYX_ALIGN_LEFT: h = 1; break; case LYX_ALIGN_RIGHT: h = 2; break; case LYX_ALIGN_CENTER: h = 3; break; default: h = 0; break; } os << "\\align " << string_align[h] << ' '; } // bibitem ale970302 if (bibkey) bibkey->write(buf, os); LyXFont font1(LyXFont::ALL_INHERIT, bparams.language); Change running_change = Change(Change::UNCHANGED); lyx::time_type const curtime(lyx::current_time()); int column = 0; for (pos_type i = 0; i < size(); ++i) { if (!i) { os << '\n'; column = 0; } Change change = pimpl_->lookupChangeFull(i); Changes::lyxMarkChange(os, column, curtime, running_change, change); running_change = change; // Write font changes LyXFont font2 = getFontSettings(bparams, i); if (font2 != font1) { font2.lyxWriteChanges(font1, os); column = 0; font1 = font2; } value_type const c = getChar(i); switch (c) { case META_INSET: { Inset const * inset = getInset(i); if (inset) if (inset->directWrite()) { // international char, let it write // code directly so it's shorter in // the file inset->write(buf, os); } else { os << "\n\\begin_inset "; inset->write(buf, os); os << "\n\\end_inset \n\n"; column = 0; } } break; case META_NEWLINE: os << "\n\\newline \n"; column = 0; break; case META_HFILL: os << "\n\\hfill \n"; column = 0; break; case '\\': os << "\n\\backslash \n"; column = 0; break; case '.': if (i + 1 < size() && getChar(i + 1) == ' ') { os << ".\n"; column = 0; } else os << '.'; break; default: if ((column > 70 && c == ' ') || column > 79) { os << '\n'; column = 0; } // this check is to amend a bug. LyX sometimes // inserts '\0' this could cause problems. if (c != '\0') os << c; else lyxerr << "ERROR (Paragraph::writeFile):" " NULL char in structure." << endl; ++column; break; } } // to make reading work properly if (!size()) { running_change = pimpl_->lookupChange(0); Changes::lyxMarkChange(os, column, curtime, Change(Change::UNCHANGED), running_change); } Changes::lyxMarkChange(os, column, curtime, running_change, Change(Change::UNCHANGED)); } void Paragraph::validate(LaTeXFeatures & features) const { pimpl_->validate(features, *layout()); } // First few functions needed for cut and paste and paragraph breaking. void Paragraph::copyIntoMinibuffer(Buffer const & buffer, pos_type pos) const { BufferParams bparams = buffer.params; minibuffer_char = getChar(pos); minibuffer_font = getFontSettings(bparams, pos); minibuffer_inset = 0; if (minibuffer_char == Paragraph::META_INSET) { if (getInset(pos)) { minibuffer_inset = getInset(pos)->clone(buffer); } else { minibuffer_inset = 0; minibuffer_char = ' '; // This reflects what GetInset() does (ARRae) } } } void Paragraph::cutIntoMinibuffer(BufferParams const & bparams, pos_type pos) { minibuffer_char = getChar(pos); minibuffer_font = getFontSettings(bparams, pos); minibuffer_inset = 0; if (minibuffer_char == Paragraph::META_INSET) { if (getInset(pos)) { // the inset is not in a paragraph anymore minibuffer_inset = insetlist.release(pos); minibuffer_inset->parOwner(0); } else { minibuffer_inset = 0; minibuffer_char = ' '; // This reflects what GetInset() does (ARRae) } } // Erase(pos); now the caller is responsible for that. } bool Paragraph::insertFromMinibuffer(pos_type pos) { if (minibuffer_char == Paragraph::META_INSET) { if (!insetAllowed(minibuffer_inset->lyxCode())) { return false; } insertInset(pos, minibuffer_inset, minibuffer_font); } else { LyXFont f = minibuffer_font; if (!checkInsertChar(f)) { return false; } insertChar(pos, minibuffer_char, f); } return true; } // end of minibuffer void Paragraph::erase(pos_type pos) { pimpl_->erase(pos); } bool Paragraph::erase(pos_type start, pos_type end) { return pimpl_->erase(start, end); } bool Paragraph::checkInsertChar(LyXFont & font) { if (pimpl_->inset_owner) return pimpl_->inset_owner->checkInsertChar(font); return true; } void Paragraph::insertChar(pos_type pos, Paragraph::value_type c) { LyXFont const f(LyXFont::ALL_INHERIT); insertChar(pos, c, f); } void Paragraph::insertChar(pos_type pos, Paragraph::value_type c, LyXFont const & font, Change change) { pimpl_->insertChar(pos, c, font, change); } void Paragraph::insertInset(pos_type pos, Inset * inset) { LyXFont const f(LyXFont::ALL_INHERIT); insertInset(pos, inset, f); } void Paragraph::insertInset(pos_type pos, Inset * inset, LyXFont const & font, Change change) { pimpl_->insertInset(pos, inset, font, change); } bool Paragraph::insetAllowed(Inset::Code code) { //lyxerr << "Paragraph::InsertInsetAllowed" << endl; if (pimpl_->inset_owner) return pimpl_->inset_owner->insetAllowed(code); return true; } Inset * Paragraph::getInset(pos_type pos) { lyx::Assert(pos < size()); return insetlist.get(pos); } Inset const * Paragraph::getInset(pos_type pos) const { lyx::Assert(pos < size()); return insetlist.get(pos); } // Gets uninstantiated font setting at position. LyXFont const Paragraph::getFontSettings(BufferParams const & bparams, pos_type pos) const { lyx::Assert(pos <= size()); Pimpl::FontList::const_iterator cit = pimpl_->fontlist.begin(); Pimpl::FontList::const_iterator end = pimpl_->fontlist.end(); for (; cit != end; ++cit) { if (cit->pos() >= pos) break; } LyXFont retfont; if (cit != end) { retfont = cit->font(); } else if (pos == size() && !empty()) { retfont = getFontSettings(bparams, pos - 1); } else retfont = LyXFont(LyXFont::ALL_INHERIT, getParLanguage(bparams)); return retfont; } // Gets uninstantiated font setting at position 0 LyXFont const Paragraph::getFirstFontSettings() const { if (!empty() && !pimpl_->fontlist.empty()) return pimpl_->fontlist[0].font(); return LyXFont(LyXFont::ALL_INHERIT); } // Gets the fully instantiated font at a given position in a paragraph // This is basically the same function as LyXText::GetFont() in text2.C. // The difference is that this one is used for generating the LaTeX file, // and thus cosmetic "improvements" are disallowed: This has to deliver // the true picture of the buffer. (Asger) // If position is -1, we get the layout font of the paragraph. // If position is -2, we get the font of the manual label of the paragraph. LyXFont const Paragraph::getFont(BufferParams const & bparams, pos_type pos) const { lyx::Assert(pos >= 0); LyXLayout_ptr const & lout = layout(); pos_type main_body = 0; if (lout->labeltype == LABEL_MANUAL) main_body = beginningOfMainBody(); LyXFont layoutfont; if (pos < main_body) layoutfont = lout->labelfont; else layoutfont = lout->font; LyXFont tmpfont = getFontSettings(bparams, pos); tmpfont.realize(layoutfont); return pimpl_->realizeFont(tmpfont, bparams); } LyXFont const Paragraph::getLabelFont(BufferParams const & bparams) const { LyXLayout_ptr const & lout = layout(); LyXFont tmpfont = lout->labelfont; tmpfont.setLanguage(getParLanguage(bparams)); return pimpl_->realizeFont(tmpfont, bparams); } LyXFont const Paragraph::getLayoutFont(BufferParams const & bparams) const { LyXLayout_ptr const & lout = layout(); LyXFont tmpfont = lout->font; tmpfont.setLanguage(getParLanguage(bparams)); return pimpl_->realizeFont(tmpfont, bparams); } /// Returns the height of the highest font in range LyXFont::FONT_SIZE Paragraph::highestFontInRange(pos_type startpos, pos_type endpos, LyXFont::FONT_SIZE const def_size) const { if (pimpl_->fontlist.empty()) return def_size; Pimpl::FontList::const_iterator end_it = pimpl_->fontlist.begin(); Pimpl::FontList::const_iterator end = pimpl_->fontlist.end(); for (; end_it != end; ++end_it) { if (end_it->pos() >= endpos) break; } if (end_it != end) ++end_it; Pimpl::FontList::const_iterator cit = pimpl_->fontlist.begin(); for (; cit != end; ++cit) { if (cit->pos() >= startpos) break; } LyXFont::FONT_SIZE maxsize = LyXFont::SIZE_TINY; for (; cit != end_it; ++cit) { LyXFont::FONT_SIZE size = cit->font().size(); if (size == LyXFont::INHERIT_SIZE) size = def_size; if (size > maxsize && size <= LyXFont::SIZE_HUGER) maxsize = size; } return maxsize; } Paragraph::value_type Paragraph::getUChar(BufferParams const & bparams, pos_type pos) const { value_type c = getChar(pos); if (!lyxrc.rtl_support) return c; value_type uc = c; switch (c) { case '(': uc = ')'; break; case ')': uc = '('; break; case '[': uc = ']'; break; case ']': uc = '['; break; case '{': uc = '}'; break; case '}': uc = '{'; break; case '<': uc = '>'; break; case '>': uc = '<'; break; } if (uc != c && getFontSettings(bparams, pos).isRightToLeft()) return uc; else return c; } void Paragraph::setFont(pos_type pos, LyXFont const & font) { lyx::Assert(pos <= size()); // First, reduce font against layout/label font // Update: The SetCharFont() routine in text2.C already // reduces font, so we don't need to do that here. (Asger) // No need to simplify this because it will disappear // in a new kernel. (Asger) // Next search font table Pimpl::FontList::iterator beg = pimpl_->fontlist.begin(); Pimpl::FontList::iterator it = beg; Pimpl::FontList::iterator endit = pimpl_->fontlist.end(); for (; it != endit; ++it) { if (it->pos() >= pos) break; } unsigned int i = std::distance(beg, it); bool notfound = (it == endit); if (!notfound && pimpl_->fontlist[i].font() == font) return; bool begin = pos == 0 || notfound || (i > 0 && pimpl_->fontlist[i - 1].pos() == pos - 1); // Is position pos is a beginning of a font block? bool end = !notfound && pimpl_->fontlist[i].pos() == pos; // Is position pos is the end of a font block? if (begin && end) { // A single char block if (i + 1 < pimpl_->fontlist.size() && pimpl_->fontlist[i + 1].font() == font) { // Merge the singleton block with the next block pimpl_->fontlist.erase(pimpl_->fontlist.begin() + i); if (i > 0 && pimpl_->fontlist[i - 1].font() == font) pimpl_->fontlist.erase(pimpl_->fontlist.begin() + i - 1); } else if (i > 0 && pimpl_->fontlist[i - 1].font() == font) { // Merge the singleton block with the previous block pimpl_->fontlist[i - 1].pos(pos); pimpl_->fontlist.erase(pimpl_->fontlist.begin() + i); } else pimpl_->fontlist[i].font(font); } else if (begin) { if (i > 0 && pimpl_->fontlist[i - 1].font() == font) pimpl_->fontlist[i - 1].pos(pos); else pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i, Pimpl::FontTable(pos, font)); } else if (end) { pimpl_->fontlist[i].pos(pos - 1); if (!(i + 1 < pimpl_->fontlist.size() && pimpl_->fontlist[i + 1].font() == font)) pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i + 1, Pimpl::FontTable(pos, font)); } else { // The general case. The block is splitted into 3 blocks pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i, Pimpl::FontTable(pos - 1, pimpl_->fontlist[i].font())); pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i + 1, Pimpl::FontTable(pos, font)); } } #ifndef NO_NEXT void Paragraph::next(Paragraph * p) { next_ = p; } // This function is able to hide closed footnotes. Paragraph * Paragraph::next() { return next_; } Paragraph const * Paragraph::next() const { return next_; } void Paragraph::previous(Paragraph * p) { previous_ = p; } // This function is able to hide closed footnotes. Paragraph * Paragraph::previous() { return previous_; } // This function is able to hide closed footnotes. Paragraph const * Paragraph::previous() const { return previous_; } #endif void Paragraph::makeSameLayout(Paragraph const * par) { layout(par->layout()); // move to pimpl? params() = par->params(); } int Paragraph::stripLeadingSpaces() { if (layout()->free_spacing || isFreeSpacing()) { return 0; } int i = 0; while (!empty() && (isNewline(0) || isLineSeparator(0))) { pimpl_->eraseIntern(0); ++i; } return i; } bool Paragraph::hasSameLayout(Paragraph const * par) const { return par->layout() == layout() && params().sameLayout(par->params()); } int Paragraph::getEndLabel() const { Paragraph const * par = this; depth_type par_depth = getDepth(); while (par) { LyXLayout_ptr const & layout = par->layout(); int const endlabeltype = layout->endlabeltype; if (endlabeltype != END_LABEL_NO_LABEL) { if (!next_) return endlabeltype; depth_type const next_depth = next_->getDepth(); if (par_depth > next_depth || (par_depth == next_depth && layout != next_->layout())) return endlabeltype; break; } if (par_depth == 0) break; par = par->outerHook(); if (par) par_depth = par->getDepth(); } return END_LABEL_NO_LABEL; } Paragraph::depth_type Paragraph::getDepth() const { return params().depth(); } Paragraph::depth_type Paragraph::getMaxDepthAfter() const { bool const isenv = layout()->isEnvironment(); if (isenv) return params().depth() + 1; else return params().depth(); } char Paragraph::getAlign() const { return params().align(); } string const & Paragraph::getLabelstring() const { return params().labelString(); } // the next two functions are for the manual labels string const Paragraph::getLabelWidthString() const { if (!params().labelWidthString().empty()) return params().labelWidthString(); else return _("Senseless with this layout!"); } void Paragraph::setLabelWidthString(string const & s) { params().labelWidthString(s); } void Paragraph::applyLayout(LyXLayout_ptr const & new_layout) { layout(new_layout); params().labelWidthString(string()); params().align(LYX_ALIGN_LAYOUT); params().spaceTop(VSpace(VSpace::NONE)); params().spaceBottom(VSpace(VSpace::NONE)); params().spacing(Spacing(Spacing::Default)); } // if the layout of a paragraph contains a manual label, the beginning of the // main body is the beginning of the second word. This is what the par- // function returns. If the layout does not contain a label, the main // body always starts with position 0. This differentiation is necessary, // because there cannot be a newline or a blank <= the beginning of the // main body in TeX. int Paragraph::beginningOfMainBody() const { // Unroll the first two cycles of the loop // and remember the previous character to // remove unnecessary GetChar() calls pos_type i = 0; if (i < size() && getChar(i) != Paragraph::META_NEWLINE) { ++i; char previous_char = 0; char temp = 0; if (i < size() && (previous_char = getChar(i)) != Paragraph::META_NEWLINE) { // Yes, this ^ is supposed to be "= " not "==" ++i; while (i < size() && previous_char != ' ' && (temp = getChar(i)) != Paragraph::META_NEWLINE) { ++i; previous_char = temp; } } } return i; } Paragraph * Paragraph::depthHook(depth_type depth) { Paragraph * newpar = this; do { newpar = newpar->previous(); } while (newpar && newpar->getDepth() > depth); if (!newpar) { if (previous() || getDepth()) lyxerr << "ERROR (Paragraph::DepthHook): " "no hook." << endl; newpar = this; } return newpar; } Paragraph const * Paragraph::depthHook(depth_type depth) const { Paragraph const * newpar = this; do { newpar = newpar->previous(); } while (newpar && newpar->getDepth() > depth); if (!newpar) { if (previous() || getDepth()) lyxerr << "ERROR (Paragraph::DepthHook): " "no hook." << endl; newpar = this; } return newpar; } Paragraph * Paragraph::outerHook() { if (!getDepth()) return 0; return depthHook(depth_type(getDepth() - 1)); } Paragraph const * Paragraph::outerHook() const { if (!getDepth()) return 0; return depthHook(depth_type(getDepth() - 1)); } // returns -1 if inset not found int Paragraph::getPositionOfInset(Inset const * inset) const { // Find the entry. InsetList::iterator it = insetlist.begin(); InsetList::iterator end = insetlist.end(); for (; it != end; ++it) { if (it.getInset() == inset) { return it.getPos(); } } if (inset == bibkey) return 0; return -1; } namespace { InsetOptArg * optArgInset(Paragraph const & par) { // Find the entry. InsetList::iterator it = par.insetlist.begin(); InsetList::iterator end = par.insetlist.end(); for (; it != end; ++it) { Inset * ins = it.getInset(); if (ins->lyxCode() == Inset::OPTARG_CODE) { return static_cast(ins); } } return 0; } } // end namespace Paragraph * Paragraph::TeXOnePar(Buffer const * buf, BufferParams const & bparams, ostream & os, TexRow & texrow, bool moving_arg) { lyxerr[Debug::LATEX] << "TeXOnePar... " << this << endl; Inset const * in = inInset(); bool further_blank_line = false; LyXLayout_ptr style; // well we have to check if we are in an inset with unlimited // lenght (all in one row) if that is true then we don't allow // any special options in the paragraph and also we don't allow // any environment other then "Standard" to be valid! if ((in == 0) || !in->forceDefaultParagraphs(in)) { style = layout(); if (params().startOfAppendix()) { os << "\\appendix\n"; texrow.newline(); } if (!params().spacing().isDefault() && (!previous() || !previous()->hasSameLayout(this))) { os << params().spacing().writeEnvirBegin() << '\n'; texrow.newline(); } if (style->isCommand()) { os << '\n'; texrow.newline(); } if (params().pagebreakTop()) { os << "\\newpage"; further_blank_line = true; } if (params().spaceTop().kind() != VSpace::NONE) { os << params().spaceTop().asLatexCommand(bparams); further_blank_line = true; } if (params().lineTop()) { os << "\\lyxline{\\" << getFont(bparams, 0).latexSize() << '}' << "\\vspace{-1\\parskip}"; further_blank_line = true; } if (further_blank_line) { os << '\n'; texrow.newline(); } } else { style = bparams.getLyXTextClass().defaultLayout(); } Language const * language = getParLanguage(bparams); Language const * doc_language = bparams.language; Language const * previous_language = previous() ? previous()->getParLanguage(bparams) : doc_language; if (language->babel() != previous_language->babel() // check if we already put language command in TeXEnvironment() && !(style->isEnvironment() && (!previous() || (previous()->layout() != layout() && previous()->getDepth() <= getDepth()) || previous()->getDepth() < getDepth()))) { if (!lyxrc.language_command_end.empty() && previous_language->babel() != doc_language->babel()) { os << subst(lyxrc.language_command_end, "$$lang", previous_language->babel()) << endl; texrow.newline(); } if (lyxrc.language_command_end.empty() || language->babel() != doc_language->babel()) { os << subst(lyxrc.language_command_begin, "$$lang", language->babel()) << endl; texrow.newline(); } } if (bparams.inputenc == "auto" && language->encoding() != previous_language->encoding()) { os << "\\inputencoding{" << language->encoding()->LatexName() << "}\n"; texrow.newline(); } switch (style->latextype) { case LATEX_COMMAND: os << '\\' << style->latexname(); // Separate handling of optional argument inset. if (style->optionalargs == 1) { InsetOptArg * it = optArgInset(*this); if (it != 0) it->latexOptional(buf, os, false, false); } else os << style->latexparam(); break; case LATEX_ITEM_ENVIRONMENT: if (bibkey) { bibkey->latex(buf, os, false, false); } else os << "\\item "; break; case LATEX_LIST_ENVIRONMENT: os << "\\item "; break; default: break; } bool need_par = simpleTeXOnePar(buf, bparams, os, texrow, moving_arg); // Make sure that \\par is done with the font of the last // character if this has another size as the default. // This is necessary because LaTeX (and LyX on the screen) // calculates the space between the baselines according // to this font. (Matthias) // // Is this really needed ? (Dekel) // We do not need to use to change the font for the last paragraph // or for a command. LyXFont const font = (empty() ? getLayoutFont(bparams) : getFont(bparams, size() - 1)); bool is_command = style->isCommand(); if (style->resfont.size() != font.size() && next_ && !is_command) { if (!need_par) os << '{'; os << "\\" << font.latexSize() << " \\par}"; } else if (need_par) { os << "\\par}"; } else if (is_command) os << '}'; switch (style->latextype) { case LATEX_ITEM_ENVIRONMENT: case LATEX_LIST_ENVIRONMENT: if (next_ && (params().depth() < next_->params().depth())) { os << '\n'; texrow.newline(); } break; case LATEX_ENVIRONMENT: // if its the last paragraph of the current environment // skip it otherwise fall through if (next_ && (next_->layout() != layout() || next_->params().depth() != params().depth())) break; // fall through possible default: // we don't need it for the last paragraph!!! if (next_) { os << '\n'; texrow.newline(); } } if ((in == 0) || !in->forceDefaultParagraphs(in)) { further_blank_line = false; if (params().lineBottom()) { os << "\\lyxline{\\" << font.latexSize() << '}'; further_blank_line = true; } if (params().spaceBottom().kind() != VSpace::NONE) { os << params().spaceBottom().asLatexCommand(bparams); further_blank_line = true; } if (params().pagebreakBottom()) { os << "\\newpage"; further_blank_line = true; } if (further_blank_line) { os << '\n'; texrow.newline(); } if (!params().spacing().isDefault() && (!next_ || !next_->hasSameLayout(this))) { os << params().spacing().writeEnvirEnd() << '\n'; texrow.newline(); } } // we don't need it for the last paragraph!!! if (next_) { os << '\n'; texrow.newline(); } else { // Since \selectlanguage write the language to the aux file, // we need to reset the language at the end of footnote or // float. if (language->babel() != doc_language->babel()) { if (lyxrc.language_command_end.empty()) os << subst(lyxrc.language_command_begin, "$$lang", doc_language->babel()) << endl; else os << subst(lyxrc.language_command_end, "$$lang", language->babel()) << endl; texrow.newline(); } } lyxerr[Debug::LATEX] << "TeXOnePar...done " << next_ << endl; return next_; } // This could go to ParagraphParameters if we want to int Paragraph::startTeXParParams(BufferParams const & bparams, ostream & os, bool moving_arg) const { int column = 0; if (params().noindent()) { os << "\\noindent "; column += 10; } switch (params().align()) { case LYX_ALIGN_NONE: case LYX_ALIGN_BLOCK: case LYX_ALIGN_LAYOUT: case LYX_ALIGN_SPECIAL: break; case LYX_ALIGN_LEFT: case LYX_ALIGN_RIGHT: case LYX_ALIGN_CENTER: if (moving_arg) { os << "\\protect"; column = 8; } break; } switch (params().align()) { case LYX_ALIGN_NONE: case LYX_ALIGN_BLOCK: case LYX_ALIGN_LAYOUT: case LYX_ALIGN_SPECIAL: break; case LYX_ALIGN_LEFT: if (getParLanguage(bparams)->babel() != "hebrew") { os << "\\begin{flushleft}"; column += 17; } else { os << "\\begin{flushright}"; column += 18; } break; case LYX_ALIGN_RIGHT: if (getParLanguage(bparams)->babel() != "hebrew") { os << "\\begin{flushright}"; column += 18; } else { os << "\\begin{flushleft}"; column += 17; } break; case LYX_ALIGN_CENTER: os << "\\begin{center}"; column += 14; break; } return column; } // This could go to ParagraphParameters if we want to int Paragraph::endTeXParParams(BufferParams const & bparams, ostream & os, bool moving_arg) const { int column = 0; switch (params().align()) { case LYX_ALIGN_NONE: case LYX_ALIGN_BLOCK: case LYX_ALIGN_LAYOUT: case LYX_ALIGN_SPECIAL: break; case LYX_ALIGN_LEFT: case LYX_ALIGN_RIGHT: case LYX_ALIGN_CENTER: if (moving_arg) { os << "\\protect"; column = 8; } break; } switch (params().align()) { case LYX_ALIGN_NONE: case LYX_ALIGN_BLOCK: case LYX_ALIGN_LAYOUT: case LYX_ALIGN_SPECIAL: break; case LYX_ALIGN_LEFT: if (getParLanguage(bparams)->babel() != "hebrew") { os << "\\end{flushleft}"; column = 15; } else { os << "\\end{flushright}"; column = 16; } break; case LYX_ALIGN_RIGHT: if (getParLanguage(bparams)->babel() != "hebrew") { os << "\\end{flushright}"; column+= 16; } else { os << "\\end{flushleft}"; column = 15; } break; case LYX_ALIGN_CENTER: os << "\\end{center}"; column = 12; break; } return column; } // This one spits out the text of the paragraph bool Paragraph::simpleTeXOnePar(Buffer const * buf, BufferParams const & bparams, ostream & os, TexRow & texrow, bool moving_arg) { lyxerr[Debug::LATEX] << "SimpleTeXOnePar... " << this << endl; bool return_value = false; LyXLayout_ptr style; // well we have to check if we are in an inset with unlimited // lenght (all in one row) if that is true then we don't allow // any special options in the paragraph and also we don't allow // any environment other then "Standard" to be valid! bool asdefault = (inInset() && inInset()->forceDefaultParagraphs(inInset())); if (asdefault) { style = bparams.getLyXTextClass().defaultLayout(); } else { style = layout(); } LyXFont basefont; // Maybe we have to create a optional argument. pos_type main_body; if (style->labeltype != LABEL_MANUAL) main_body = 0; else main_body = beginningOfMainBody(); unsigned int column = 0; if (main_body > 0) { os << '['; ++column; basefont = getLabelFont(bparams); } else { basefont = getLayoutFont(bparams); } moving_arg |= style->needprotect; // Which font is currently active? LyXFont running_font(basefont); // Do we have an open font change? bool open_font = false; Change::Type running_change = Change::UNCHANGED; texrow.start(this, 0); // if the paragraph is empty, the loop will not be entered at all if (empty()) { if (style->isCommand()) { os << '{'; ++column; } if (!asdefault) column += startTeXParParams(bparams, os, moving_arg); } for (pos_type i = 0; i < size(); ++i) { ++column; // First char in paragraph or after label? if (i == main_body) { if (main_body > 0) { if (open_font) { column += running_font.latexWriteEndChanges(os, basefont, basefont); open_font = false; } basefont = getLayoutFont(bparams); running_font = basefont; os << ']'; ++column; } if (style->isCommand()) { os << '{'; ++column; } if (!asdefault) column += startTeXParParams(bparams, os, moving_arg); } value_type c = getChar(i); // Fully instantiated font LyXFont font = getFont(bparams, i); LyXFont const last_font = running_font; // Spaces at end of font change are simulated to be // outside font change, i.e. we write "\textXX{text} " // rather than "\textXX{text }". (Asger) if (open_font && c == ' ' && i <= size() - 2) { LyXFont const & next_font = getFont(bparams, i + 1); if (next_font != running_font && next_font != font) { font = next_font; } } // We end font definition before blanks if (open_font && (font != running_font || font.language() != running_font.language())) { column += running_font.latexWriteEndChanges(os, basefont, (i == main_body-1) ? basefont : font); running_font = basefont; open_font = false; } // Blanks are printed before start of fontswitch if (c == ' ') { // Do not print the separation of the optional argument if (i != main_body - 1) { pimpl_->simpleTeXBlanks(os, texrow, i, column, font, *style); } } // Do we need to change font? if ((font != running_font || font.language() != running_font.language()) && i != main_body - 1) { column += font.latexWriteStartChanges(os, basefont, last_font); running_font = font; open_font = true; } Change::Type change = pimpl_->lookupChange(i); column += Changes::latexMarkChange(os, running_change, change); running_change = change; if (c == Paragraph::META_NEWLINE) { // newlines are handled differently here than // the default in SimpleTeXSpecialChars(). if (!style->newline_allowed) { os << '\n'; } else { if (open_font) { column += running_font.latexWriteEndChanges(os, basefont, basefont); open_font = false; } basefont = getLayoutFont(bparams); running_font = basefont; if (font.family() == LyXFont::TYPEWRITER_FAMILY) { os << '~'; } if (moving_arg) os << "\\protect "; os << "\\\\\n"; } texrow.newline(); texrow.start(this, i + 1); column = 0; } else { pimpl_->simpleTeXSpecialChars(buf, bparams, os, texrow, moving_arg, font, running_font, basefont, open_font, running_change, *style, i, column, c); } } column += Changes::latexMarkChange(os, running_change, Change::UNCHANGED); // If we have an open font definition, we have to close it if (open_font) { #ifdef FIXED_LANGUAGE_END_DETECTION if (next_) { running_font .latexWriteEndChanges(os, basefont, next_->getFont(bparams, 0)); } else { running_font.latexWriteEndChanges(os, basefont, basefont); } #else #ifdef WITH_WARNINGS //#warning For now we ALWAYS have to close the foreign font settings if they are //#warning there as we start another \selectlanguage with the next paragraph if //#warning we are in need of this. This should be fixed sometime (Jug) #endif running_font.latexWriteEndChanges(os, basefont, basefont); #endif } // Needed if there is an optional argument but no contents. if (main_body > 0 && main_body == size()) { os << "]~"; return_value = false; } if (!asdefault) { column += endTeXParParams(bparams, os, moving_arg); } lyxerr[Debug::LATEX] << "SimpleTeXOnePar...done " << this << endl; return return_value; } Paragraph * Paragraph::TeXEnvironment(Buffer const * buf, BufferParams const & bparams, ostream & os, TexRow & texrow) { lyxerr[Debug::LATEX] << "TeXEnvironment... " << this << endl; LyXLayout_ptr const & style = layout(); Language const * language = getParLanguage(bparams); Language const * doc_language = bparams.language; Language const * previous_language = previous_ ? previous_->getParLanguage(bparams) : doc_language; if (language->babel() != previous_language->babel()) { if (!lyxrc.language_command_end.empty() && previous_language->babel() != doc_language->babel()) { os << subst(lyxrc.language_command_end, "$$lang", previous_language->babel()) << endl; texrow.newline(); } if (lyxrc.language_command_end.empty() || language->babel() != doc_language->babel()) { os << subst(lyxrc.language_command_begin, "$$lang", language->babel()) << endl; texrow.newline(); } } bool leftindent_open = false; if (!params().leftIndent().zero()) { os << "\\begin{LyXParagraphLeftIndent}{" << params().leftIndent().asLatexString() << "}\n"; texrow.newline(); leftindent_open = true; } if (style->isEnvironment()) { if (style->latextype == LATEX_LIST_ENVIRONMENT) { os << "\\begin{" << style->latexname() << "}{" << params().labelWidthString() << "}\n"; } else if (style->labeltype == LABEL_BIBLIO) { // ale970405 os << "\\begin{" << style->latexname() << "}{" << bibitemWidest(buf) << "}\n"; } else if (style->latextype == LATEX_ITEM_ENVIRONMENT) { os << "\\begin{" << style->latexname() << '}' << style->latexparam() << '\n'; } else os << "\\begin{" << style->latexname() << '}' << style->latexparam() << '\n'; texrow.newline(); } Paragraph * par = this; do { par = par->TeXOnePar(buf, bparams, os, texrow, false); if (par && par->params().depth() > params().depth()) { if (par->layout()->isParagraph()) { // Thinko! // How to handle this? (Lgb) //&& !suffixIs(os, "\n\n") //) { // There should be at least one '\n' already // but we need there to be two for Standard // paragraphs that are depth-increment'ed to be // output correctly. However, tables can // also be paragraphs so don't adjust them. // ARRae // Thinkee: // Will it ever harm to have one '\n' too // many? i.e. that we sometimes will have // three in a row. (Lgb) os << '\n'; texrow.newline(); } par = par->pimpl_->TeXDeeper(buf, bparams, os, texrow); } } while (par && par->layout() == layout() && par->params().depth() == params().depth() && par->params().leftIndent() == params().leftIndent()); if (style->isEnvironment()) { os << "\\end{" << style->latexname() << "}\n"; texrow.newline(); } if (leftindent_open) { os << "\\end{LyXParagraphLeftIndent}\n"; texrow.newline(); } lyxerr[Debug::LATEX] << "TeXEnvironment...done " << par << endl; return par; // ale970302 } bool Paragraph::isHfill(pos_type pos) const { return IsHfillChar(getChar(pos)); } bool Paragraph::isInset(pos_type pos) const { return IsInsetChar(getChar(pos)); } bool Paragraph::isNewline(pos_type pos) const { return pos >= 0 && IsNewlineChar(getChar(pos)); } bool Paragraph::isSeparator(pos_type pos) const { return IsSeparatorChar(getChar(pos)); } bool Paragraph::isLineSeparator(pos_type pos) const { value_type const c = getChar(pos); return IsLineSeparatorChar(c) || (IsInsetChar(c) && getInset(pos) && getInset(pos)->isLineSeparator()); } bool Paragraph::isKomma(pos_type pos) const { return IsKommaChar(getChar(pos)); } /// Used by the spellchecker bool Paragraph::isLetter(pos_type pos) const { value_type const c = getChar(pos); if (IsLetterChar(c)) return true; if (isInset(pos)) return getInset(pos)->isLetter(); // We want to pass the ' and escape chars to ispell string const extra = lyxrc.isp_esc_chars + '\''; return contains(extra, c); } bool Paragraph::isWord(pos_type pos) const { return IsWordChar(getChar(pos)) ; } Language const * Paragraph::getParLanguage(BufferParams const & bparams) const { if (!empty()) { return getFirstFontSettings().language(); } else if (previous_) return previous_->getParLanguage(bparams); else return bparams.language; } bool Paragraph::isRightToLeftPar(BufferParams const & bparams) const { return lyxrc.rtl_support && getParLanguage(bparams)->RightToLeft() && !(inInset() && inInset()->owner() && inInset()->owner()->lyxCode() == Inset::ERT_CODE); } void Paragraph::changeLanguage(BufferParams const & bparams, Language const * from, Language const * to) { for (pos_type i = 0; i < size(); ++i) { LyXFont font = getFontSettings(bparams, i); if (font.language() == from) { font.setLanguage(to); setFont(i, font); } } } bool Paragraph::isMultiLingual(BufferParams const & bparams) { Language const * doc_language = bparams.language; Pimpl::FontList::const_iterator cit = pimpl_->fontlist.begin(); Pimpl::FontList::const_iterator end = pimpl_->fontlist.end(); for (; cit != end; ++cit) if (cit->font().language() != ignore_language && cit->font().language() != latex_language && cit->font().language() != doc_language) return true; return false; } // Convert the paragraph to a string. // Used for building the table of contents string const Paragraph::asString(Buffer const * buffer, bool label) const { BufferParams const & bparams = buffer->params; string s; if (label && !params().labelString().empty()) s += params().labelString() + ' '; string::size_type const len = s.size(); for (pos_type i = 0; i < size(); ++i) { value_type c = getChar(i); if (IsPrintable(c)) s += c; else if (c == META_INSET && getInset(i)->lyxCode() == Inset::MATH_CODE) { ostringstream ost; getInset(i)->ascii(buffer, ost); s += subst(STRCONV(ost.str()),'\n',' '); } } return s; } string const Paragraph::asString(Buffer const * buffer, pos_type beg, pos_type end, bool label) const { ostringstream ost; if (beg == 0 && label && !params().labelString().empty()) ost << params().labelString() << ' '; for (pos_type i = beg; i < end; ++i) { value_type const c = getUChar(buffer->params, i); if (IsPrintable(c)) ost << c; else if (c == META_NEWLINE) ost << '\n'; else if (c == META_HFILL) ost << '\t'; else if (c == META_INSET) { getInset(i)->ascii(buffer, ost); } } return STRCONV(ost.str()); } void Paragraph::setInsetOwner(Inset * i) { pimpl_->inset_owner = i; InsetList::iterator it = insetlist.begin(); InsetList::iterator end = insetlist.end(); for (; it != end; ++it) { if (it.getInset()) it.getInset()->setOwner(i); } } void Paragraph::deleteInsetsLyXText(BufferView * bv) { // then the insets insetlist.deleteInsetsLyXText(bv); } void Paragraph::resizeInsetsLyXText(BufferView * bv) { // then the insets insetlist.resizeInsetsLyXText(bv); } void Paragraph::setContentsFromPar(Paragraph * par) { pimpl_->setContentsFromPar(par); } void Paragraph::trackChanges(Change::Type type) { pimpl_->trackChanges(type); } void Paragraph::untrackChanges() { pimpl_->untrackChanges(); } void Paragraph::cleanChanges() { pimpl_->cleanChanges(); } Change::Type Paragraph::lookupChange(lyx::pos_type pos) const { lyx::Assert(!size() || pos < size()); return pimpl_->lookupChange(pos); } Change const Paragraph::lookupChangeFull(lyx::pos_type pos) const { lyx::Assert(!size() || pos < size()); return pimpl_->lookupChangeFull(pos); } bool Paragraph::isChanged(pos_type start, pos_type end) const { return pimpl_->isChanged(start, end); } bool Paragraph::isChangeEdited(pos_type start, pos_type end) const { return pimpl_->isChangeEdited(start, end); } void Paragraph::markErased() { pimpl_->markErased(); } void Paragraph::acceptChange(pos_type start, pos_type end) { return pimpl_->acceptChange(start, end); } void Paragraph::rejectChange(pos_type start, pos_type end) { return pimpl_->rejectChange(start, end); } lyx::pos_type Paragraph::size() const { return pimpl_->size(); } bool Paragraph::empty() const { return pimpl_->empty(); } Paragraph::value_type Paragraph::getChar(pos_type pos) const { return pimpl_->getChar(pos); } int Paragraph::id() const { return pimpl_->id_; } LyXLayout_ptr const & Paragraph::layout() const { return layout_; } void Paragraph::layout(LyXLayout_ptr const & new_layout) { layout_ = new_layout; } bool Paragraph::isFirstInSequence() const { Paragraph const * dhook = depthHook(getDepth()); return (dhook == this || dhook->layout() != layout() || dhook->getDepth() != getDepth()); } Inset * Paragraph::inInset() const { return pimpl_->inset_owner; } void Paragraph::clearContents() { pimpl_->clear(); } void Paragraph::setChar(pos_type pos, value_type c) { pimpl_->setChar(pos, c); } ParagraphParameters & Paragraph::params() { return pimpl_->params; } ParagraphParameters const & Paragraph::params() const { return pimpl_->params; } Paragraph * Paragraph::getParFromID(int id) const { return pimpl_->getParFromID(id); } bool Paragraph::isFreeSpacing() const { // for now we just need this, later should we need this in some // other way we can always add a function to Inset::() too. if (pimpl_->inset_owner && pimpl_->inset_owner->owner()) return (pimpl_->inset_owner->owner()->lyxCode() == Inset::ERT_CODE); return false; }