1999-09-27 18:44:28 +00:00
|
|
|
|
/* This file is part of
|
1999-11-15 12:01:38 +00:00
|
|
|
|
* ======================================================
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*
|
|
|
|
|
* LyX, The Document Processor
|
|
|
|
|
*
|
1999-10-02 16:21:10 +00:00
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
|
* Copyright 1995-1999 The LyX Team.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*
|
1999-10-02 16:21:10 +00:00
|
|
|
|
* This file is Copyright 1996-1999
|
1999-09-27 18:44:28 +00:00
|
|
|
|
* Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
*
|
1999-11-15 12:01:38 +00:00
|
|
|
|
* ======================================================
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Change Log:
|
1999-11-15 12:01:38 +00:00
|
|
|
|
// ===========
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// 23/03/98 Heinrich Bauer (heinrich.bauer@t-mobil.de)
|
|
|
|
|
// Spots marked "changed Heinrich Bauer, 23/03/98" modified due to the
|
|
|
|
|
// following bug: dvi file export did not work after printing (or previewing)
|
|
|
|
|
// and vice versa as long as the same file was concerned. This happened
|
|
|
|
|
// every time the LyX-file was left unchanged between the two actions mentioned
|
|
|
|
|
// above.
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
#include <fstream>
|
|
|
|
|
#include <iomanip>
|
1999-12-07 10:49:58 +00:00
|
|
|
|
using std::ofstream;
|
|
|
|
|
using std::ifstream;
|
|
|
|
|
using std::fstream;
|
|
|
|
|
using std::ios;
|
|
|
|
|
using std::setw;
|
|
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
#include <cstdlib>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma implementation "buffer.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "buffer.h"
|
|
|
|
|
#include "bufferlist.h"
|
|
|
|
|
#include "lyx_main.h"
|
|
|
|
|
#include "lyx_gui_misc.h"
|
1999-12-10 00:07:59 +00:00
|
|
|
|
#include "LyXAction.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "lyxrc.h"
|
|
|
|
|
#include "lyxlex.h"
|
|
|
|
|
#include "tex-strings.h"
|
|
|
|
|
#include "layout.h"
|
|
|
|
|
#include "lyx_cb.h"
|
|
|
|
|
#include "minibuffer.h"
|
|
|
|
|
#include "lyxfont.h"
|
1999-12-15 17:42:22 +00:00
|
|
|
|
#include "version.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "mathed/formulamacro.h"
|
|
|
|
|
#include "insets/lyxinset.h"
|
|
|
|
|
#include "insets/inseterror.h"
|
|
|
|
|
#include "insets/insetlabel.h"
|
|
|
|
|
#include "insets/insetref.h"
|
|
|
|
|
#include "insets/inseturl.h"
|
|
|
|
|
#include "insets/insetinfo.h"
|
|
|
|
|
#include "insets/insetquotes.h"
|
|
|
|
|
#include "insets/insetlatexaccent.h"
|
|
|
|
|
#include "insets/insetbib.h"
|
|
|
|
|
#include "insets/insetindex.h"
|
|
|
|
|
#include "insets/insetinclude.h"
|
|
|
|
|
#include "insets/insettoc.h"
|
|
|
|
|
#include "insets/insetlof.h"
|
|
|
|
|
#include "insets/insetlot.h"
|
|
|
|
|
#include "insets/insetloa.h"
|
|
|
|
|
#include "insets/insetparent.h"
|
|
|
|
|
#include "insets/insetspecialchar.h"
|
|
|
|
|
#include "insets/figinset.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
|
#include "support/filetools.h"
|
1999-10-13 17:32:46 +00:00
|
|
|
|
#include "support/path.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "LaTeX.h"
|
|
|
|
|
#include "Literate.h"
|
|
|
|
|
#include "Chktex.h"
|
|
|
|
|
#include "LyXView.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
|
#include "debug.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "LaTeXFeatures.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
|
#include "support/syscall.h"
|
|
|
|
|
#include "support/lyxlib.h"
|
|
|
|
|
#include "support/FileInfo.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "lyxtext.h"
|
|
|
|
|
#include "gettext.h"
|
|
|
|
|
|
|
|
|
|
// Uncomment this line to enable a workaround for the weird behaviour
|
|
|
|
|
// of the cursor between a displayed inset and last character
|
|
|
|
|
// at the upper line. (Alejandro 20.9.96)
|
|
|
|
|
// #define BREAK_BEFORE_INSET
|
|
|
|
|
|
|
|
|
|
/* Lars, when changing this file sometime in the future to a list,
|
|
|
|
|
* please check out the figinsets-sideeffects described at the
|
|
|
|
|
* beginning of figinset.C Matthias (04.07.1996)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// all these externs should eventually be removed.
|
|
|
|
|
extern BufferList bufferlist;
|
|
|
|
|
|
1999-12-15 17:42:22 +00:00
|
|
|
|
extern void MenuExport(Buffer *, string const &);
|
1999-12-10 00:07:59 +00:00
|
|
|
|
extern LyXAction lyxaction;
|
|
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
static const float LYX_FORMAT = 2.15;
|
|
|
|
|
|
|
|
|
|
extern int tex_code_break_column;
|
|
|
|
|
|
|
|
|
|
extern void FreeUpdateTimer();
|
|
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
Buffer::Buffer(string const & file, LyXRC * lyxrc, bool ronly)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
|
lyxerr[Debug::INFO] << "Buffer::Buffer()" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
filename = file;
|
|
|
|
|
filepath = OnlyPath(file);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
paragraph = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lyx_clean = true;
|
|
|
|
|
bak_clean = true;
|
|
|
|
|
dvi_clean_orgd = false; // Heinrich Bauer, 23/03/98
|
|
|
|
|
dvi_clean_tmpd = false; // Heinrich Bauer, 23/03/98
|
1999-10-02 16:21:10 +00:00
|
|
|
|
dep_clean = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
read_only = ronly;
|
|
|
|
|
users = 0;
|
1999-11-09 23:52:04 +00:00
|
|
|
|
lyxvc.buffer(this);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (read_only || (lyxrc && lyxrc->use_tempdir)) {
|
|
|
|
|
tmppath = CreateBufferTmpDir();
|
1999-10-19 20:59:27 +00:00
|
|
|
|
} else tmppath.clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Buffer::~Buffer()
|
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
|
lyxerr[Debug::INFO] << "Buffer::~Buffer()" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// here the buffer should take care that it is
|
|
|
|
|
// saved properly, before it goes into the void.
|
|
|
|
|
|
|
|
|
|
// make sure that views using this buffer
|
|
|
|
|
// forgets it.
|
|
|
|
|
if (users)
|
1999-11-09 23:52:04 +00:00
|
|
|
|
users->buffer(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (!tmppath.empty()) {
|
|
|
|
|
DestroyBufferTmpDir(tmppath);
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = paragraph;
|
|
|
|
|
LyXParagraph * tmppar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (par) {
|
|
|
|
|
tmppar = par->next;
|
|
|
|
|
delete par;
|
|
|
|
|
par = tmppar;
|
|
|
|
|
}
|
1999-10-02 16:21:10 +00:00
|
|
|
|
paragraph = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool Buffer::saveParamsAsDefaults()
|
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string fname = AddName(AddPath(user_lyxdir, "templates/"),
|
1999-09-27 18:44:28 +00:00
|
|
|
|
"defaults.lyx");
|
|
|
|
|
Buffer defaults = Buffer(fname);
|
|
|
|
|
|
|
|
|
|
// Use the current buffer's parameters as default
|
1999-11-15 12:01:38 +00:00
|
|
|
|
defaults.params = params;
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// add an empty paragraph. Is this enough?
|
1999-11-05 06:02:34 +00:00
|
|
|
|
defaults.paragraph = new LyXParagraph;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
return defaults.writeFile(defaults.filename, false);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Update window titles of all users
|
|
|
|
|
// Should work on a list
|
|
|
|
|
void Buffer::updateTitles()
|
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
|
if (users) users->owner()->updateWindowTitle();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Reset autosave timer of all users
|
|
|
|
|
// Should work on a list
|
|
|
|
|
void Buffer::resetAutosaveTimers()
|
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
|
if (users) users->owner()->resetAutosaveTimer();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-10 00:07:59 +00:00
|
|
|
|
void Buffer::fileName(string const & newfile)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
filename = MakeAbsPath(newfile);
|
|
|
|
|
filepath = OnlyPath(filename);
|
|
|
|
|
setReadonly(IsFileWriteable(filename) == 0);
|
|
|
|
|
updateTitles();
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
|
|
|
|
// candidate for move to BufferView
|
|
|
|
|
// (at least some parts in the beginning of the func)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
//
|
|
|
|
|
// Uwe C. Schroeder
|
|
|
|
|
// changed to be public and have one parameter
|
1999-10-02 16:21:10 +00:00
|
|
|
|
// if par = 0 normal behavior
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// else insert behavior
|
|
|
|
|
// Returns false if "\the_end" is not read for formats >= 2.13. (Asger)
|
1999-11-15 12:01:38 +00:00
|
|
|
|
bool Buffer::readLyXformat2(LyXLex & lex, LyXParagraph * par)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string tmptok;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Inset * inset = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
int pos = 0;
|
|
|
|
|
int tmpret, tmpret2;
|
|
|
|
|
char depth = 0; // signed or unsigned?
|
|
|
|
|
LyXParagraph::footnote_flag footnoteflag = LyXParagraph::NO_FOOTNOTE;
|
|
|
|
|
LyXParagraph::footnote_kind footnotekind = LyXParagraph::FOOTNOTE;
|
|
|
|
|
bool the_end_read = false;
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXParagraph * return_par = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LyXFont font = LyXFont(LyXFont::ALL_INHERIT);
|
|
|
|
|
|
|
|
|
|
// If we are inserting, we cheat and get a token in advance
|
|
|
|
|
bool has_token = false;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string pretoken;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if(!par) {
|
1999-11-05 06:02:34 +00:00
|
|
|
|
par = new LyXParagraph;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
users->text->BreakParagraph();
|
|
|
|
|
return_par = users->text->FirstParagraph();
|
1999-11-15 12:01:38 +00:00
|
|
|
|
pos = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
markDirty();
|
|
|
|
|
// We don't want to adopt the parameters from the
|
|
|
|
|
// document we insert, so we skip until the text begins:
|
|
|
|
|
while (lex.IsOK()) {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
pretoken = lex.GetString();
|
|
|
|
|
if (pretoken == "\\layout") {
|
|
|
|
|
has_token = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (lex.IsOK()) {
|
|
|
|
|
if (has_token) {
|
|
|
|
|
has_token = false;
|
|
|
|
|
} else {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
pretoken = lex.GetString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Profiling show this should give a lot: (Asger)
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string const token = pretoken;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (token.empty())
|
|
|
|
|
continue;
|
|
|
|
|
else if (token[0] != '\\') {
|
|
|
|
|
int n = token.length();
|
2000-01-06 02:44:26 +00:00
|
|
|
|
for (int i = 0; i < n; ++i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertChar(pos, token[i]);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
} else if (token == "\\i") {
|
|
|
|
|
inset = new InsetLatexAccent;
|
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\layout") {
|
|
|
|
|
if (!return_par)
|
|
|
|
|
return_par = par;
|
1999-11-05 06:02:34 +00:00
|
|
|
|
else {
|
|
|
|
|
par->text.resize(par->text.size());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par = new LyXParagraph(par);
|
1999-11-05 06:02:34 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
pos = 0;
|
|
|
|
|
lex.EatLine();
|
1999-11-04 01:40:20 +00:00
|
|
|
|
string layoutname = lex.GetString();
|
|
|
|
|
pair<bool, LyXTextClass::LayoutList::size_type> pp
|
|
|
|
|
= textclasslist.NumberOfLayout(params.textclass,
|
|
|
|
|
layoutname);
|
|
|
|
|
if (pp.first) {
|
|
|
|
|
par->layout = pp.second;
|
|
|
|
|
} else { // layout not found
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// use default layout "Standard" (0)
|
|
|
|
|
par->layout = 0;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Test whether the layout is obsolete.
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXLayout const & layout = textclasslist.Style(params.textclass,
|
|
|
|
|
par->layout);
|
|
|
|
|
if (!layout.obsoleted_by().empty())
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->layout =
|
1999-11-04 01:40:20 +00:00
|
|
|
|
textclasslist.NumberOfLayout(params.textclass,
|
|
|
|
|
layout.obsoleted_by()).second;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->footnoteflag = footnoteflag;
|
|
|
|
|
par->footnotekind = footnotekind;
|
|
|
|
|
par->depth = depth;
|
|
|
|
|
font = LyXFont(LyXFont::ALL_INHERIT);
|
|
|
|
|
} else if (token == "\\end_float") {
|
|
|
|
|
if (!return_par)
|
|
|
|
|
return_par = par;
|
1999-11-05 06:02:34 +00:00
|
|
|
|
else {
|
|
|
|
|
par->text.resize(par->text.size());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par = new LyXParagraph(par);
|
1999-11-05 06:02:34 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
footnotekind = LyXParagraph::FOOTNOTE;
|
|
|
|
|
footnoteflag = LyXParagraph::NO_FOOTNOTE;
|
|
|
|
|
pos = 0;
|
|
|
|
|
lex.EatLine();
|
|
|
|
|
par->layout = LYX_DUMMY_LAYOUT;
|
|
|
|
|
font = LyXFont(LyXFont::ALL_INHERIT);
|
|
|
|
|
} else if (token == "\\begin_float") {
|
|
|
|
|
tmpret = lex.FindToken(string_footnotekinds);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
if (tmpret == -1) ++tmpret;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (tmpret != LYX_LAYOUT_DEFAULT)
|
1999-12-13 00:05:34 +00:00
|
|
|
|
footnotekind = static_cast<LyXParagraph::footnote_kind>(tmpret); // bad
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (footnotekind == LyXParagraph::FOOTNOTE
|
|
|
|
|
|| footnotekind == LyXParagraph::MARGIN)
|
|
|
|
|
footnoteflag = LyXParagraph::CLOSED_FOOTNOTE;
|
|
|
|
|
else
|
|
|
|
|
footnoteflag = LyXParagraph::OPEN_FOOTNOTE;
|
|
|
|
|
} else if (token == "\\begin_deeper") {
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++depth;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\end_deeper") {
|
|
|
|
|
if (!depth) {
|
|
|
|
|
lex.printError("\\end_deeper: "
|
|
|
|
|
"depth is already null");
|
|
|
|
|
}
|
|
|
|
|
else
|
2000-01-06 02:44:26 +00:00
|
|
|
|
--depth;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\begin_preamble") {
|
|
|
|
|
params.readPreamble(lex);
|
|
|
|
|
} else if (token == "\\textclass") {
|
|
|
|
|
lex.EatLine();
|
2000-01-06 02:44:26 +00:00
|
|
|
|
pair<bool, LyXTextClassList::size_type> pp =
|
1999-11-04 01:40:20 +00:00
|
|
|
|
textclasslist.NumberOfClass(lex.GetString());
|
|
|
|
|
if (pp.first) {
|
|
|
|
|
params.textclass = pp.second;
|
|
|
|
|
} else {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lex.printError("Unknown textclass `$$Token'");
|
|
|
|
|
params.textclass = 0;
|
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (!textclasslist.Load(params.textclass)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// if the textclass wasn't loaded properly
|
|
|
|
|
// we need to either substitute another
|
|
|
|
|
// or stop loading the file.
|
|
|
|
|
// I can substitute but I don't see how I can
|
|
|
|
|
// stop loading... ideas?? ARRae980418
|
|
|
|
|
WriteAlert(_("Textclass Loading Error!"),
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string(_("Can't load textclass ")) +
|
1999-11-04 01:40:20 +00:00
|
|
|
|
textclasslist.NameOfClass(params.textclass),
|
1999-09-27 18:44:28 +00:00
|
|
|
|
_("-- substituting default"));
|
|
|
|
|
params.textclass = 0;
|
|
|
|
|
}
|
|
|
|
|
} else if (token == "\\options") {
|
|
|
|
|
lex.EatLine();
|
|
|
|
|
params.options = lex.GetString();
|
|
|
|
|
} else if (token == "\\language") {
|
2000-01-06 02:44:26 +00:00
|
|
|
|
params.readLanguage(lex);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\fontencoding") {
|
|
|
|
|
lex.EatLine();
|
|
|
|
|
} else if (token == "\\inputencoding") {
|
|
|
|
|
lex.EatLine();
|
|
|
|
|
params.inputenc = lex.GetString();
|
|
|
|
|
} else if (token == "\\graphics") {
|
|
|
|
|
params.readGraphicsDriver(lex);
|
|
|
|
|
} else if (token == "\\fontscheme") {
|
|
|
|
|
lex.EatLine();
|
|
|
|
|
params.fonts = lex.GetString();
|
|
|
|
|
} else if (token == "\\noindent") {
|
|
|
|
|
par->noindent = true;
|
|
|
|
|
} else if (token == "\\fill_top") {
|
|
|
|
|
par->added_space_top = VSpace(VSpace::VFILL);
|
|
|
|
|
} else if (token == "\\fill_bottom") {
|
|
|
|
|
par->added_space_bottom = VSpace(VSpace::VFILL);
|
|
|
|
|
} else if (token == "\\line_top") {
|
|
|
|
|
par->line_top = true;
|
|
|
|
|
} else if (token == "\\line_bottom") {
|
|
|
|
|
par->line_bottom = true;
|
|
|
|
|
} else if (token == "\\pagebreak_top") {
|
|
|
|
|
par->pagebreak_top = true;
|
|
|
|
|
} else if (token == "\\pagebreak_bottom") {
|
|
|
|
|
par->pagebreak_bottom = true;
|
|
|
|
|
} else if (token == "\\start_of_appendix") {
|
|
|
|
|
par->start_of_appendix = true;
|
|
|
|
|
} else if (token == "\\paragraph_separation") {
|
|
|
|
|
tmpret = lex.FindToken(string_paragraph_separation);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
if (tmpret == -1) ++tmpret;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (tmpret != LYX_LAYOUT_DEFAULT)
|
1999-11-15 12:01:38 +00:00
|
|
|
|
params.paragraph_separation =
|
|
|
|
|
static_cast<BufferParams::PARSEP>(tmpret);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\defskip") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
params.defskip = VSpace(lex.GetString());
|
2000-01-06 02:44:26 +00:00
|
|
|
|
} else if (token == "\\no_isolatin1") { // obsolete
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lex.nextToken();
|
2000-01-06 02:44:26 +00:00
|
|
|
|
} else if (token == "\\no_babel") { // obsolete
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lex.nextToken();
|
2000-01-06 02:44:26 +00:00
|
|
|
|
} else if (token == "\\no_epsfig") { // obsolete
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lex.nextToken();
|
|
|
|
|
} else if (token == "\\epsfig") { // obsolete
|
|
|
|
|
// Indeed it is obsolete, but we HAVE to be backwards
|
|
|
|
|
// compatible until 0.14, because otherwise all figures
|
|
|
|
|
// in existing documents are irretrivably lost. (Asger)
|
|
|
|
|
params.readGraphicsDriver(lex);
|
|
|
|
|
} else if (token == "\\quotes_language") {
|
|
|
|
|
tmpret = lex.FindToken(string_quotes_language);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
if (tmpret == -1) ++tmpret;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (tmpret != LYX_LAYOUT_DEFAULT) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
InsetQuotes::quote_language tmpl =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
InsetQuotes::EnglishQ;
|
|
|
|
|
switch(tmpret) {
|
|
|
|
|
case 0:
|
|
|
|
|
tmpl = InsetQuotes::EnglishQ;
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
tmpl = InsetQuotes::SwedishQ;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
tmpl = InsetQuotes::GermanQ;
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
tmpl = InsetQuotes::PolishQ;
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
tmpl = InsetQuotes::FrenchQ;
|
|
|
|
|
break;
|
|
|
|
|
case 5:
|
|
|
|
|
tmpl = InsetQuotes::DanishQ;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
params.quotes_language = tmpl;
|
|
|
|
|
}
|
|
|
|
|
} else if (token == "\\quotes_times") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
switch(lex.GetInteger()) {
|
|
|
|
|
case 1:
|
|
|
|
|
params.quotes_times = InsetQuotes::SingleQ;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
params.quotes_times = InsetQuotes::DoubleQ;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} else if (token == "\\papersize") {
|
|
|
|
|
tmpret = lex.FindToken(string_papersize);
|
|
|
|
|
if (tmpret == -1)
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++tmpret;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
|
|
|
|
params.papersize2 = tmpret;
|
|
|
|
|
} else if (token == "\\paperpackage") {
|
|
|
|
|
tmpret = lex.FindToken(string_paperpackages);
|
|
|
|
|
if (tmpret == -1) {
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++tmpret;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
params.paperpackage = BufferParams::PACKAGE_NONE;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else
|
|
|
|
|
params.paperpackage = tmpret;
|
|
|
|
|
} else if (token == "\\use_geometry") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
params.use_geometry = lex.GetInteger();
|
|
|
|
|
} else if (token == "\\use_amsmath") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
params.use_amsmath = lex.GetInteger();
|
|
|
|
|
} else if (token == "\\paperorientation") {
|
|
|
|
|
tmpret = lex.FindToken(string_orientation);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
if (tmpret == -1) ++tmpret;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (tmpret != LYX_LAYOUT_DEFAULT)
|
1999-11-15 12:01:38 +00:00
|
|
|
|
params.orientation = static_cast<BufferParams::PAPER_ORIENTATION>(tmpret);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\paperwidth") {
|
|
|
|
|
lex.next();
|
|
|
|
|
params.paperwidth = lex.GetString();
|
|
|
|
|
} else if (token == "\\paperheight") {
|
|
|
|
|
lex.next();
|
|
|
|
|
params.paperheight = lex.GetString();
|
|
|
|
|
} else if (token == "\\leftmargin") {
|
|
|
|
|
lex.next();
|
|
|
|
|
params.leftmargin = lex.GetString();
|
|
|
|
|
} else if (token == "\\topmargin") {
|
|
|
|
|
lex.next();
|
|
|
|
|
params.topmargin = lex.GetString();
|
|
|
|
|
} else if (token == "\\rightmargin") {
|
|
|
|
|
lex.next();
|
|
|
|
|
params.rightmargin = lex.GetString();
|
|
|
|
|
} else if (token == "\\bottommargin") {
|
|
|
|
|
lex.next();
|
|
|
|
|
params.bottommargin = lex.GetString();
|
|
|
|
|
} else if (token == "\\headheight") {
|
|
|
|
|
lex.next();
|
|
|
|
|
params.headheight = lex.GetString();
|
|
|
|
|
} else if (token == "\\headsep") {
|
|
|
|
|
lex.next();
|
|
|
|
|
params.headsep = lex.GetString();
|
|
|
|
|
} else if (token == "\\footskip") {
|
|
|
|
|
lex.next();
|
|
|
|
|
params.footskip = lex.GetString();
|
|
|
|
|
} else if (token == "\\paperfontsize") {
|
|
|
|
|
lex.nextToken();
|
1999-10-02 16:21:10 +00:00
|
|
|
|
params.fontsize = strip(lex.GetString());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\papercolumns") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
params.columns = lex.GetInteger();
|
|
|
|
|
} else if (token == "\\papersides") {
|
|
|
|
|
lex.nextToken();
|
1999-11-04 01:40:20 +00:00
|
|
|
|
switch(lex.GetInteger()) {
|
|
|
|
|
default:
|
|
|
|
|
case 1: params.sides = LyXTextClass::OneSide; break;
|
|
|
|
|
case 2: params.sides = LyXTextClass::TwoSides; break;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\paperpagestyle") {
|
|
|
|
|
lex.nextToken();
|
1999-10-02 16:21:10 +00:00
|
|
|
|
params.pagestyle = strip(lex.GetString());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\bullet") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
int index = lex.GetInteger();
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
int temp_int = lex.GetInteger();
|
|
|
|
|
params.user_defined_bullets[index].setFont(temp_int);
|
|
|
|
|
params.temp_bullets[index].setFont(temp_int);
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
temp_int = lex.GetInteger();
|
|
|
|
|
params.user_defined_bullets[index].setCharacter(temp_int);
|
|
|
|
|
params.temp_bullets[index].setCharacter(temp_int);
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
temp_int = lex.GetInteger();
|
|
|
|
|
params.user_defined_bullets[index].setSize(temp_int);
|
|
|
|
|
params.temp_bullets[index].setSize(temp_int);
|
|
|
|
|
lex.nextToken();
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string temp_str = lex.GetString();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (temp_str != "\\end_bullet") {
|
|
|
|
|
// this element isn't really necessary for
|
|
|
|
|
// parsing but is easier for humans
|
|
|
|
|
// to understand bullets. Put it back and
|
|
|
|
|
// set a debug message?
|
|
|
|
|
lex.printError("\\end_bullet expected, got" + temp_str);
|
|
|
|
|
//how can I put it back?
|
|
|
|
|
}
|
|
|
|
|
} else if (token == "\\bulletLaTeX") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
int index = lex.GetInteger();
|
|
|
|
|
lex.next();
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string temp_str = lex.GetString(), sum_str;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (temp_str != "\\end_bullet") {
|
|
|
|
|
// this loop structure is needed when user
|
|
|
|
|
// enters an empty string since the first
|
|
|
|
|
// thing returned will be the \\end_bullet
|
|
|
|
|
// OR
|
|
|
|
|
// if the LaTeX entry has spaces. Each element
|
|
|
|
|
// therefore needs to be read in turn
|
|
|
|
|
sum_str += temp_str;
|
|
|
|
|
lex.next();
|
|
|
|
|
temp_str = lex.GetString();
|
|
|
|
|
}
|
|
|
|
|
params.user_defined_bullets[index].setText(sum_str);
|
|
|
|
|
params.temp_bullets[index].setText(sum_str);
|
|
|
|
|
} else if (token == "\\secnumdepth") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
params.secnumdepth = lex.GetInteger();
|
|
|
|
|
} else if (token == "\\tocdepth") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
params.tocdepth = lex.GetInteger();
|
2000-01-06 02:44:26 +00:00
|
|
|
|
} else if (token == "\\baselinestretch") { // obsolete
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lex.nextToken(); // should not be used directly
|
|
|
|
|
// anymore.
|
|
|
|
|
// Will probably keep a kind of support just for
|
|
|
|
|
// compability.
|
|
|
|
|
params.spacing.set(Spacing::Other, lex.GetFloat());
|
|
|
|
|
} else if (token == "\\spacing") {
|
|
|
|
|
lex.next();
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string tmp = strip(lex.GetString());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (tmp == "single") {
|
|
|
|
|
params.spacing.set(Spacing::Single);
|
|
|
|
|
} else if (tmp == "onehalf") {
|
|
|
|
|
params.spacing.set(Spacing::Onehalf);
|
|
|
|
|
} else if (tmp == "double") {
|
|
|
|
|
params.spacing.set(Spacing::Double);
|
|
|
|
|
} else if (tmp == "other") {
|
|
|
|
|
lex.next();
|
|
|
|
|
params.spacing.set(Spacing::Other,
|
|
|
|
|
lex.GetFloat());
|
|
|
|
|
} else {
|
|
|
|
|
lex.printError("Unknown spacing token: '$$Token'");
|
|
|
|
|
}
|
|
|
|
|
} else if (token == "\\float_placement") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
params.float_placement = lex.GetString();
|
2000-01-06 02:44:26 +00:00
|
|
|
|
} else if (token == "\\cursor") { // obsolete
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// this is obsolete, so we just skip it.
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
} else if (token == "\\family") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setLyXFamily(lex.GetString());
|
|
|
|
|
} else if (token == "\\series") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setLyXSeries(lex.GetString());
|
|
|
|
|
} else if (token == "\\shape") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setLyXShape(lex.GetString());
|
|
|
|
|
} else if (token == "\\size") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setLyXSize(lex.GetString());
|
|
|
|
|
} else if (token == "\\latex") {
|
|
|
|
|
lex.next();
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string tok = lex.GetString();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// This is dirty, but gone with LyX3. (Asger)
|
|
|
|
|
if (tok == "no_latex")
|
|
|
|
|
font.setLatex(LyXFont::OFF);
|
|
|
|
|
else if (tok == "latex")
|
|
|
|
|
font.setLatex(LyXFont::ON);
|
|
|
|
|
else if (tok == "default")
|
|
|
|
|
font.setLatex(LyXFont::INHERIT);
|
|
|
|
|
else
|
|
|
|
|
lex.printError("Unknown LaTeX font flag "
|
|
|
|
|
"`$$Token'");
|
2000-02-03 19:51:27 +00:00
|
|
|
|
} else if (token == "\\direction") {
|
|
|
|
|
lex.next();
|
|
|
|
|
string tok = lex.GetString();
|
|
|
|
|
if (tok == "ltr")
|
|
|
|
|
font.setDirection(LyXFont::LTR_DIR);
|
|
|
|
|
else if (tok == "rtl")
|
|
|
|
|
font.setDirection(LyXFont::RTL_DIR);
|
|
|
|
|
else if (tok == "default")
|
|
|
|
|
font.setDirection(LyXFont::INHERIT_DIR);
|
|
|
|
|
else
|
|
|
|
|
lex.printError("Unknown font flag "
|
|
|
|
|
"`$$Token'");
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\emph") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setEmph(font.setLyXMisc(lex.GetString()));
|
|
|
|
|
} else if (token == "\\bar") {
|
|
|
|
|
lex.next();
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string tok = lex.GetString();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// This is dirty, but gone with LyX3. (Asger)
|
|
|
|
|
if (tok == "under")
|
|
|
|
|
font.setUnderbar(LyXFont::ON);
|
|
|
|
|
else if (tok == "no")
|
|
|
|
|
font.setUnderbar(LyXFont::OFF);
|
|
|
|
|
else if (tok == "default")
|
|
|
|
|
font.setUnderbar(LyXFont::INHERIT);
|
|
|
|
|
else
|
|
|
|
|
lex.printError("Unknown bar font flag "
|
|
|
|
|
"`$$Token'");
|
|
|
|
|
} else if (token == "\\noun") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setNoun(font.setLyXMisc(lex.GetString()));
|
|
|
|
|
} else if (token == "\\color") {
|
|
|
|
|
lex.next();
|
|
|
|
|
font.setLyXColor(lex.GetString());
|
|
|
|
|
} else if (token == "\\align") {
|
|
|
|
|
tmpret = lex.FindToken(string_align);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
if (tmpret == -1) ++tmpret;
|
2000-01-06 02:44:26 +00:00
|
|
|
|
if (tmpret != LYX_LAYOUT_DEFAULT) { // tmpret != 99 ???
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmpret2 = 1;
|
2000-01-06 02:44:26 +00:00
|
|
|
|
for (; tmpret > 0; --tmpret)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmpret2 = tmpret2 * 2;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
par->align = LyXAlignment(tmpret2);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-01-06 02:44:26 +00:00
|
|
|
|
} else if (token == "\\added_space_top") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lex.nextToken();
|
|
|
|
|
par->added_space_top = lex.GetString();
|
|
|
|
|
} else if (token == "\\added_space_bottom") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
par->added_space_bottom = lex.GetString();
|
|
|
|
|
} else if (token == "\\pextra_type") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
par->pextra_type = lex.GetInteger();
|
|
|
|
|
} else if (token == "\\pextra_width") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
par->pextra_width = lex.GetString();
|
|
|
|
|
} else if (token == "\\pextra_widthp") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
par->pextra_widthp = lex.GetString();
|
|
|
|
|
} else if (token == "\\pextra_alignment") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
par->pextra_alignment = lex.GetInteger();
|
|
|
|
|
} else if (token == "\\pextra_hfill") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
par->pextra_hfill = lex.GetInteger();
|
|
|
|
|
} else if (token == "\\pextra_start_minipage") {
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
par->pextra_start_minipage = lex.GetInteger();
|
|
|
|
|
} else if (token == "\\labelwidthstring") {
|
|
|
|
|
lex.EatLine();
|
|
|
|
|
par->labelwidthstring = lex.GetString();
|
|
|
|
|
/* do not delete this token, it is still needed! */
|
|
|
|
|
} else if (token == "\\end_inset") {
|
|
|
|
|
/* simple ignore this. The insets do not have
|
|
|
|
|
* to read this */
|
|
|
|
|
// but insets should read it, it is a part of
|
|
|
|
|
//the inset isn't it? Lgb.
|
|
|
|
|
} else if (token == "\\begin_inset") {
|
|
|
|
|
lex.next();
|
|
|
|
|
tmptok = lex.GetString();
|
|
|
|
|
/* test the different insets */
|
|
|
|
|
if (tmptok == "Quotes") {
|
|
|
|
|
inset = new InsetQuotes;
|
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (tmptok == "\\i") {
|
|
|
|
|
inset = new InsetLatexAccent;
|
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (tmptok == "FormulaMacro") {
|
|
|
|
|
inset = new InsetFormulaMacro;
|
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (tmptok == "Formula") {
|
|
|
|
|
inset = new InsetFormula;
|
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (tmptok == "Figure") {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
inset = new InsetFig(100, 100, this);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (tmptok == "Info") {
|
|
|
|
|
inset = new InsetInfo;
|
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (tmptok == "Include") {
|
1999-10-02 16:21:10 +00:00
|
|
|
|
inset = new InsetInclude(string(), this);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (tmptok == "LatexCommand") {
|
|
|
|
|
InsetCommand inscmd;
|
|
|
|
|
inscmd.Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (inscmd.getCmdName() == "cite") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = new InsetCitation(inscmd.getContents(), inscmd.getOptions());
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "bibitem") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lex.printError("Wrong place for bibitem");
|
|
|
|
|
inset = inscmd.Clone();
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "BibTeX") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = new InsetBibtex(inscmd.getContents(), inscmd.getOptions(), this);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "index") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = new InsetIndex(inscmd.getContents());
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "include") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = new InsetInclude(inscmd.getContents(), this);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "label") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = new InsetLabel(inscmd.getCommand());
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "url"
|
|
|
|
|
|| inscmd.getCmdName() == "htmlurl") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = new InsetUrl(inscmd.getCommand());
|
|
|
|
|
} else if (inscmd.getCmdName() == "ref"
|
|
|
|
|
|| inscmd.getCmdName() == "pageref") {
|
|
|
|
|
if (!inscmd.getOptions().empty() || !inscmd.getContents().empty()) {
|
|
|
|
|
inset = new InsetRef(inscmd, this);
|
|
|
|
|
}
|
2000-02-04 09:38:32 +00:00
|
|
|
|
#warning Verify that this else clause is still needed. (Lgb)
|
2000-01-06 02:44:26 +00:00
|
|
|
|
// This condition comes from a
|
|
|
|
|
// temporary solution to the latexdel
|
|
|
|
|
// ref inset that was transformed to
|
|
|
|
|
// an empty ref inset plus the body
|
|
|
|
|
// surronded by latexdel insets
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
string cont, opt, tmptmptok, cmdname;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lex.next();
|
|
|
|
|
while(lex.IsOK() && lex.GetString() != "\\end_inset" ) {
|
|
|
|
|
lex.next();
|
|
|
|
|
}
|
|
|
|
|
lex.next();
|
|
|
|
|
while(lex.IsOK()) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tmptmptok = lex.GetString();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if(tmptmptok[0] == '\\') {
|
|
|
|
|
if( tmptmptok == "\\backslash")
|
|
|
|
|
opt += '\\';
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
opt += tmptmptok;
|
|
|
|
|
opt += ' ';
|
|
|
|
|
lex.next();
|
|
|
|
|
}
|
|
|
|
|
while(lex.IsOK() && lex.GetString() != "\\end_inset" ) {
|
|
|
|
|
lex.next();
|
|
|
|
|
}
|
|
|
|
|
lex.next();
|
|
|
|
|
while(lex.IsOK()) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tmptmptok = lex.GetString();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if(tmptmptok[0] == '\\') {
|
|
|
|
|
if( tmptmptok == "\\backslash")
|
|
|
|
|
cont += '\\';
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
cont += tmptmptok;
|
|
|
|
|
cont += ' ';
|
|
|
|
|
lex.next();
|
|
|
|
|
}
|
|
|
|
|
while(lex.IsOK() && lex.GetString() != "\\end_inset" ) {
|
|
|
|
|
lex.next();
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
cont = strip(cont);
|
|
|
|
|
opt = strip(opt);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cmdname = "\\" + inscmd.getCmdName();
|
|
|
|
|
cmdname += "[" + cont + "]";
|
|
|
|
|
cmdname += "{" + opt + "}";
|
1999-11-15 12:01:38 +00:00
|
|
|
|
inset = new InsetRef(cmdname, this);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "tableofcontents") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = new InsetTOC(this);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "listoffigures") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = new InsetLOF(this);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "listofalgorithms") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = new InsetLOA(this);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "listoftables") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = new InsetLOT(this);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "printindex") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = new InsetPrintIndex(this);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inscmd.getCmdName() == "lyxparent") {
|
|
|
|
|
inset = new InsetParent(inscmd.getContents(), this);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (inset) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else if (token == "\\InsetQuotes") {
|
|
|
|
|
inset = new InsetQuotes;
|
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\InsetFormula") {
|
|
|
|
|
inset = new InsetFormula;
|
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\SpecialChar") {
|
|
|
|
|
inset = new InsetSpecialChar;
|
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\Figure") {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
inset = new InsetFig(100, 100, this);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset->Read(lex);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, inset);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\newline") {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_NEWLINE);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->SetFont(pos, font);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\LyXTable") {
|
|
|
|
|
par->table = new LyXTable(lex);
|
|
|
|
|
} else if (token == "\\hfill") {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_HFILL);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->SetFont(pos, font);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\protected_separator") {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_PROTECTED_SEPARATOR);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->SetFont(pos, font);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (token == "\\bibitem") { // ale970302
|
|
|
|
|
if (!par->bibkey)
|
|
|
|
|
par->bibkey = new InsetBibKey;
|
|
|
|
|
par->bibkey->Read(lex);
|
|
|
|
|
}else if (token == "\\backslash") {
|
|
|
|
|
par->InsertChar(pos, '\\');
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}else if (token == "\\the_end") {
|
|
|
|
|
the_end_read = true;
|
|
|
|
|
} else {
|
|
|
|
|
// This should be insurance for the future: (Asger)
|
|
|
|
|
lex.printError("Unknown token `$$Token'. "
|
|
|
|
|
"Inserting as text.");
|
|
|
|
|
int n = token.length();
|
2000-01-06 02:44:26 +00:00
|
|
|
|
for (int i = 0; i < n; ++i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertChar(pos, token[i]);
|
|
|
|
|
par->SetFont(pos, font);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!return_par)
|
|
|
|
|
return_par = par;
|
|
|
|
|
|
|
|
|
|
paragraph = return_par;
|
|
|
|
|
|
|
|
|
|
return the_end_read;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
bool Buffer::readFile(LyXLex & lex, LyXParagraph * par)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string token;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (lex.IsOK()) {
|
|
|
|
|
lex.next();
|
|
|
|
|
token = lex.GetString();
|
|
|
|
|
if (token == "\\lyxformat") { // the first token _must_ be...
|
|
|
|
|
lex.next();
|
|
|
|
|
format = lex.GetFloat();
|
|
|
|
|
if (format > 1) {
|
|
|
|
|
if (LYX_FORMAT - format > 0.05) {
|
|
|
|
|
printf(_("Warning: need lyxformat %.2f but found %.2f\n"),
|
|
|
|
|
LYX_FORMAT, format);
|
|
|
|
|
}
|
|
|
|
|
if (format - LYX_FORMAT > 0.05) {
|
|
|
|
|
printf(_("ERROR: need lyxformat %.2f but found %.2f\n"),
|
|
|
|
|
LYX_FORMAT, format);
|
|
|
|
|
}
|
|
|
|
|
bool the_end = readLyXformat2(lex, par);
|
|
|
|
|
// Formats >= 2.13 support "\the_end" marker
|
|
|
|
|
if (format < 2.13)
|
|
|
|
|
the_end = true;
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
|
|
setPaperStuff();
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!the_end)
|
|
|
|
|
WriteAlert(_("Warning!"),
|
|
|
|
|
_("Reading of document is not complete"),
|
|
|
|
|
_("Maybe the document is truncated"));
|
|
|
|
|
// We simulate a safe reading anyways to allow
|
|
|
|
|
// users to take the chance... (Asger)
|
|
|
|
|
return true;
|
|
|
|
|
} // format < 1
|
|
|
|
|
else {
|
|
|
|
|
WriteAlert(_("ERROR!"),
|
|
|
|
|
_("Old LyX file format found. "
|
|
|
|
|
"Use LyX 0.10.x to read this!"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else { // "\\lyxformat" not found
|
|
|
|
|
WriteAlert(_("ERROR!"), _("Not a LyX file!"));
|
|
|
|
|
}
|
|
|
|
|
} else
|
|
|
|
|
WriteAlert(_("ERROR!"), _("Unable to read file!"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Returns false if unsuccesful
|
1999-12-21 06:10:21 +00:00
|
|
|
|
bool Buffer::writeFile(string const & fname, bool flag)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
// if flag is false writeFile will not create any GUI
|
1999-10-07 18:44:17 +00:00
|
|
|
|
// warnings, only cerr.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Needed for autosave in background or panic save (Matthias 120496)
|
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
if (read_only && (fname == filename)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Here we should come with a question if we should
|
|
|
|
|
// perform the write anyway.
|
|
|
|
|
if (flag)
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << _("Error! Document is read-only: ")
|
1999-12-21 06:10:21 +00:00
|
|
|
|
<< fname << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-11-15 12:01:38 +00:00
|
|
|
|
WriteAlert(_("Error! Document is read-only: "),
|
1999-12-21 06:10:21 +00:00
|
|
|
|
fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
FileInfo finfo(fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (finfo.exist() && !finfo.writable()) {
|
|
|
|
|
// Here we should come with a question if we should
|
|
|
|
|
// try to do the save anyway. (i.e. do a chmod first)
|
|
|
|
|
if (flag)
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << _("Error! Cannot write file: ")
|
1999-12-21 06:10:21 +00:00
|
|
|
|
<< fname << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-11-15 12:01:38 +00:00
|
|
|
|
WriteFSAlert(_("Error! Cannot write file: "),
|
1999-12-21 06:10:21 +00:00
|
|
|
|
fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
ofstream ofs(fname.c_str());
|
1999-12-07 00:44:53 +00:00
|
|
|
|
if (!ofs) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (flag)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
lyxerr << _("Error! Cannot open file: ")
|
1999-12-21 06:10:21 +00:00
|
|
|
|
<< fname << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-12-13 21:59:26 +00:00
|
|
|
|
WriteFSAlert(_("Error! Cannot open file: "),
|
1999-12-21 06:10:21 +00:00
|
|
|
|
fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
// The top of the file should not be written by params.
|
|
|
|
|
|
|
|
|
|
// write out a comment in the top of the file
|
1999-12-15 17:42:22 +00:00
|
|
|
|
ofs << '#' << LYX_DOCVERSION
|
|
|
|
|
<< " created this file. For more info see http://www.lyx.org/\n";
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs.setf(ios::showpoint|ios::fixed);
|
|
|
|
|
ofs.precision(2);
|
|
|
|
|
ofs << "\\lyxformat " << setw(4) << LYX_FORMAT << "\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
// now write out the buffer paramters.
|
|
|
|
|
params.writeFile(ofs);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
char footnoteflag = 0;
|
|
|
|
|
char depth = 0;
|
|
|
|
|
|
|
|
|
|
// this will write out all the paragraphs
|
|
|
|
|
// using recursive descent.
|
1999-12-07 00:44:53 +00:00
|
|
|
|
paragraph->writeFile(ofs, params, footnoteflag, depth);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Write marker that shows file is complete
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\n\\the_end" << endl;
|
|
|
|
|
ofs.close();
|
|
|
|
|
// how to check if close went ok?
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
void Buffer::writeFileAscii(string const & fname, int linelen)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-24 22:14:46 +00:00
|
|
|
|
LyXFont font1, font2;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Inset * inset;
|
1999-11-24 22:14:46 +00:00
|
|
|
|
char c, footnoteflag = 0, depth = 0;
|
|
|
|
|
string tmp;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph::size_type i;
|
1999-11-24 22:14:46 +00:00
|
|
|
|
int j, h, ltype = 0, ltype_depth = 0,
|
|
|
|
|
* clen = 0, actcell = 0, actpos = 0, cell = 0, cells = 0,
|
1999-11-15 12:01:38 +00:00
|
|
|
|
currlinelen = 0;
|
1999-11-24 22:14:46 +00:00
|
|
|
|
long fpos = 0;
|
|
|
|
|
bool ref_printed = false;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
ofstream ofs(fname.c_str());
|
1999-12-07 00:44:53 +00:00
|
|
|
|
if (!ofs) {
|
1999-12-21 06:10:21 +00:00
|
|
|
|
WriteFSAlert(_("Error: Cannot write file:"), fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
1999-11-24 22:14:46 +00:00
|
|
|
|
string fname1 = TmpFileName();
|
|
|
|
|
LyXParagraph * par = paragraph;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (par) {
|
1999-11-24 22:14:46 +00:00
|
|
|
|
int noparbreak = 0;
|
|
|
|
|
int islatex = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (par->footnoteflag != LyXParagraph::NO_FOOTNOTE ||
|
|
|
|
|
!par->previous ||
|
|
|
|
|
par->previous->footnoteflag == LyXParagraph::NO_FOOTNOTE){
|
|
|
|
|
|
|
|
|
|
/* begins a footnote environment ? */
|
|
|
|
|
if (footnoteflag != par->footnoteflag) {
|
|
|
|
|
footnoteflag = par->footnoteflag;
|
|
|
|
|
if (footnoteflag) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
j = strlen(string_footnotekinds[par->footnotekind])+4;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
if (currlinelen + j > linelen)
|
|
|
|
|
ofs << "\n";
|
|
|
|
|
ofs << "(["
|
|
|
|
|
<< string_footnotekinds[par->footnotekind] << "] ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
currlinelen += j;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* begins or ends a deeper area ?*/
|
|
|
|
|
if (depth != par->depth) {
|
|
|
|
|
if (par->depth > depth) {
|
|
|
|
|
while (par->depth > depth) {
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++depth;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
while (par->depth < depth) {
|
2000-01-24 18:34:46 +00:00
|
|
|
|
--depth;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* First write the layout */
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tmp = textclasslist.NameOfLayout(params.textclass, par->layout);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (tmp == "Itemize") {
|
|
|
|
|
ltype = 1;
|
|
|
|
|
ltype_depth = depth+1;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (tmp == "Enumerate") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
ltype = 2;
|
|
|
|
|
ltype_depth = depth+1;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (strstr(tmp.c_str(), "ection")) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
ltype = 3;
|
|
|
|
|
ltype_depth = depth+1;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (strstr(tmp.c_str(), "aragraph")) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
ltype = 4;
|
|
|
|
|
ltype_depth = depth+1;
|
|
|
|
|
} else if (tmp == "Description") {
|
|
|
|
|
ltype = 5;
|
|
|
|
|
ltype_depth = depth+1;
|
|
|
|
|
} else if (tmp == "Abstract") {
|
|
|
|
|
ltype = 6;
|
|
|
|
|
ltype_depth = 0;
|
|
|
|
|
} else if (tmp == "Bibliography") {
|
|
|
|
|
ltype = 7;
|
|
|
|
|
ltype_depth = 0;
|
|
|
|
|
} else {
|
|
|
|
|
ltype = 0;
|
|
|
|
|
ltype_depth = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* maybe some vertical spaces */
|
|
|
|
|
|
|
|
|
|
/* the labelwidthstring used in lists */
|
|
|
|
|
|
|
|
|
|
/* some lines? */
|
|
|
|
|
|
|
|
|
|
/* some pagebreaks? */
|
|
|
|
|
|
|
|
|
|
/* noindent ? */
|
|
|
|
|
|
|
|
|
|
/* what about the alignment */
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
/* dummy layout, that means a footnote ended */
|
|
|
|
|
footnoteflag = LyXParagraph::NO_FOOTNOTE;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << ") ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
noparbreak = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* It might be a table */
|
|
|
|
|
if (par->table){
|
2000-01-21 16:12:47 +00:00
|
|
|
|
#if 0
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!lyxrc->ascii_roff_command.empty() &&
|
|
|
|
|
lyxrc->ascii_roff_command != "none") {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
RoffAsciiTable(ofs, par);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par = par->next;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2000-01-21 16:12:47 +00:00
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cell = 1;
|
|
|
|
|
actcell = 0;
|
|
|
|
|
cells = par->table->columns;
|
|
|
|
|
clen = new int [cells];
|
1999-11-24 22:14:46 +00:00
|
|
|
|
memset(clen, 0, sizeof(int) * cells);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
for (i = 0, j = 0, h = 1; i < par->size(); ++i, ++h) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
c = par->GetChar(i);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (c == LyXParagraph::META_INSET) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if ((inset = par->GetInset(i))) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofstream fs(fname1.c_str());
|
|
|
|
|
if (!fs) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
WriteFSAlert(_("Error: Cannot open temporary file:"), fname1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
inset->Latex(fs, -1);
|
|
|
|
|
h += fs.tellp() - 1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
remove(fname1.c_str());
|
|
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (c == LyXParagraph::META_NEWLINE) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (clen[j] < h)
|
|
|
|
|
clen[j] = h;
|
|
|
|
|
h = 0;
|
|
|
|
|
j = (++j) % par->table->NumberOfCellsInRow(actcell);
|
1999-12-07 00:44:53 +00:00
|
|
|
|
++actcell;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (clen[j] < h)
|
|
|
|
|
clen[j] = h;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
font1 = LyXFont(LyXFont::ALL_INHERIT);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
actcell = 0;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
for (i = 0, actpos = 1; i < par->size(); ++i, ++actpos) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!i && !footnoteflag && !noparbreak){
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\n\n";
|
|
|
|
|
for(j = 0; j < depth; ++j)
|
|
|
|
|
ofs << " ";
|
|
|
|
|
currlinelen = depth * 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
switch(ltype) {
|
|
|
|
|
case 0: /* Standart */
|
|
|
|
|
case 4: /* (Sub)Paragraph */
|
|
|
|
|
case 5: /* Description */
|
|
|
|
|
break;
|
|
|
|
|
case 6: /* Abstract */
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "Abstract\n\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case 7: /* Bibliography */
|
|
|
|
|
if (!ref_printed) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "References\n\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
ref_printed = true;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << par->labelstring << " ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (ltype_depth > depth) {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = ltype_depth - 1; j > depth; --j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
currlinelen += (ltype_depth-depth)*2;
|
|
|
|
|
}
|
|
|
|
|
if (par->table) {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = 0; j < cells; ++j) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << '+';
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(h = 0; h < (clen[j] + 1);
|
|
|
|
|
++h)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << '-';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "+\n";
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = 0; j < depth; ++j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
1999-12-10 00:07:59 +00:00
|
|
|
|
currlinelen = depth * 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (ltype_depth > depth) {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = ltype_depth;
|
|
|
|
|
j > depth; --j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
currlinelen += (ltype_depth-depth)*2;
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "| ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
font2 = par->GetFontSettings(i);
|
|
|
|
|
if (font1.latex() != font2.latex()) {
|
|
|
|
|
if (font2.latex() == LyXFont::OFF)
|
|
|
|
|
islatex = 0;
|
|
|
|
|
else
|
|
|
|
|
islatex = 1;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
islatex = 0;
|
|
|
|
|
}
|
|
|
|
|
c = par->GetChar(i);
|
|
|
|
|
if (islatex)
|
|
|
|
|
continue;
|
|
|
|
|
switch (c) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case LyXParagraph::META_INSET:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if ((inset = par->GetInset(i))) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
fpos = ofs.tellp();
|
|
|
|
|
inset->Latex(ofs, -1);
|
|
|
|
|
currlinelen += (ofs.tellp() - fpos);
|
|
|
|
|
actpos += (ofs.tellp() - fpos) - 1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case LyXParagraph::META_NEWLINE:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (par->table) {
|
|
|
|
|
if (par->table->NumberOfCellsInRow(actcell) <= cell) {
|
2000-01-24 18:34:46 +00:00
|
|
|
|
for(j = actpos; j < clen[cell - 1]; ++j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << ' ';
|
|
|
|
|
ofs << " |\n";
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = 0; j < depth; ++j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
currlinelen = depth*2;
|
|
|
|
|
if (ltype_depth > depth) {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = ltype_depth; j > depth; --j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
1999-12-10 00:07:59 +00:00
|
|
|
|
currlinelen += (ltype_depth-depth) * 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = 0; j < cells; ++j) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << '+';
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(h = 0; h < (clen[j] + 1); ++h)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << '-';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "+\n";
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = 0; j < depth; ++j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
1999-12-10 00:07:59 +00:00
|
|
|
|
currlinelen = depth * 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (ltype_depth > depth) {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = ltype_depth;
|
|
|
|
|
j > depth; --j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
currlinelen += (ltype_depth-depth)*2;
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "| ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cell = 1;
|
|
|
|
|
} else {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = actpos;
|
|
|
|
|
j < clen[cell - 1]; ++j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << ' ';
|
|
|
|
|
ofs << " | ";
|
|
|
|
|
++cell;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
++actcell;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
currlinelen = actpos = 0;
|
|
|
|
|
} else {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\n";
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = 0; j < depth; ++j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
|
|
|
|
currlinelen = depth * 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (ltype_depth > depth) {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = ltype_depth;
|
|
|
|
|
j > depth; --j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
1999-12-10 00:07:59 +00:00
|
|
|
|
currlinelen += (ltype_depth - depth) * 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case LyXParagraph::META_HFILL:
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\t";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case LyXParagraph::META_PROTECTED_SEPARATOR:
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
case '\\':
|
|
|
|
|
ofs << "\\";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (currlinelen > linelen - 10
|
|
|
|
|
&& c == ' ' && i + 2 < par->size()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\n";
|
1999-11-04 01:40:20 +00:00
|
|
|
|
for(j = 0; j < depth; ++j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
1999-11-04 01:40:20 +00:00
|
|
|
|
currlinelen = depth * 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (ltype_depth > depth) {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
for(j = ltype_depth;
|
|
|
|
|
j > depth; --j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
currlinelen += (ltype_depth-depth)*2;
|
|
|
|
|
}
|
|
|
|
|
} else if (c != '\0')
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << c;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else if (c == '\0')
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr.debug() << "writeAsciiFile: NULL char in structure." << endl;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
++currlinelen;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (par->table) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
for(j = actpos; j < clen[cell - 1]; ++j)
|
|
|
|
|
ofs << ' ';
|
|
|
|
|
ofs << " |\n";
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = 0; j < depth; ++j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << " ";
|
|
|
|
|
currlinelen = depth * 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (ltype_depth > depth) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
for(j = ltype_depth; j > depth; --j)
|
|
|
|
|
ofs << " ";
|
1999-12-10 00:07:59 +00:00
|
|
|
|
currlinelen += (ltype_depth - depth) * 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-10 00:07:59 +00:00
|
|
|
|
for(j = 0; j < cells; ++j) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << '+';
|
|
|
|
|
for(h = 0; h < (clen[j] + 1); ++h)
|
|
|
|
|
ofs << '-';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "+\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
delete [] clen;
|
|
|
|
|
}
|
|
|
|
|
par = par->next;
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
void Buffer::makeLaTeXFile(string const & fname,
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string const & original_path,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
bool nice, bool only_body)
|
|
|
|
|
{
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "makeLaTeXFile..." << endl;
|
2000-01-07 03:42:16 +00:00
|
|
|
|
|
|
|
|
|
// How the **** can this be needed?
|
|
|
|
|
//params.textclass = current_view->buffer()->params.textclass;
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
niceFile = nice; // this will be used by Insetincludes.
|
|
|
|
|
|
|
|
|
|
tex_code_break_column = lyxrc->ascii_linelen;
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXTextClass const & tclass =
|
|
|
|
|
textclasslist.TextClass(params.textclass);
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
ofstream ofs(fname.c_str());
|
1999-12-07 00:44:53 +00:00
|
|
|
|
if (!ofs) {
|
1999-12-21 06:10:21 +00:00
|
|
|
|
WriteFSAlert(_("Error: Cannot open file: "), fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// validate the buffer.
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << " Validating buffer..." << endl;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LaTeXFeatures features(tclass.numLayouts());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
validate(features);
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << " Buffer validation done." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
texrow.reset();
|
|
|
|
|
// The starting paragraph of the coming rows is the
|
|
|
|
|
// first paragraph of the document. (Asger)
|
|
|
|
|
texrow.start(paragraph, 0);
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string LFile;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (!only_body && nice) {
|
1999-12-22 14:35:05 +00:00
|
|
|
|
LFile += "%% " LYX_DOCVERSION " created this file. "
|
|
|
|
|
"For more info, see http://www.lyx.org/.\n";
|
|
|
|
|
LFile += "%% Do not edit unless you really know what you are doing.\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
texrow.newline();
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr.debug() << "lyx header finished" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// There are a few differences between nice LaTeX and usual files:
|
2000-01-06 02:44:26 +00:00
|
|
|
|
// usual is \batchmode and has a
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// special input@path to allow the including of figures
|
|
|
|
|
// with either \input or \includegraphics (what figinsets do).
|
|
|
|
|
// batchmode is not set if there is a tex_code_break_column.
|
|
|
|
|
// In this case somebody is interested in the generated LaTeX,
|
|
|
|
|
// so this is OK. input@path is set when the actual parameter
|
|
|
|
|
// original_path is set. This is done for usual tex-file, but not
|
|
|
|
|
// for nice-latex-file. (Matthias 250696)
|
|
|
|
|
if (!only_body) {
|
|
|
|
|
if (!nice){
|
|
|
|
|
// code for usual, NOT nice-latex-file
|
|
|
|
|
LFile += "\\batchmode\n"; // changed
|
|
|
|
|
// from \nonstopmode
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
if (!original_path.empty()) {
|
|
|
|
|
LFile += "\\makeatletter\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
LFile += "\\def\\input@path{{" + original_path
|
|
|
|
|
+ "/}}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
LFile += "\\makeatother\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LFile += "\\documentclass";
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string options; // the document class options.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (tokenPos(tclass.opt_fontsize(), '|', params.fontsize) >= 0) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// only write if existing in list (and not default)
|
|
|
|
|
options += params.fontsize;
|
|
|
|
|
options += "pt,";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!params.use_geometry &&
|
1999-11-15 12:01:38 +00:00
|
|
|
|
(params.paperpackage == BufferParams::PACKAGE_NONE)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
switch (params.papersize) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_A4PAPER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
options += "a4paper,";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_USLETTER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
options += "letterpaper,";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_A5PAPER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
options += "a5paper,";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_B5PAPER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
options += "b5paper,";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_EXECUTIVEPAPER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
options += "executivepaper,";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_LEGALPAPER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
options += "legalpaper,";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if needed
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (params.sides != tclass.sides()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (params.sides == 2)
|
|
|
|
|
options += "twoside,";
|
|
|
|
|
else
|
|
|
|
|
options += "oneside,";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if needed
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (params.columns != tclass.columns()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (params.columns == 2)
|
|
|
|
|
options += "twocolumn,";
|
|
|
|
|
else
|
|
|
|
|
options += "onecolumn,";
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-10 00:07:59 +00:00
|
|
|
|
if (!params.use_geometry
|
|
|
|
|
&& params.orientation == BufferParams::ORIENTATION_LANDSCAPE)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
options += "landscape,";
|
|
|
|
|
|
2000-02-03 19:51:27 +00:00
|
|
|
|
// language should be a parameter to \documentclass
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (params.language != "default") {
|
2000-02-03 19:51:27 +00:00
|
|
|
|
if (params.language == "hebrew")
|
|
|
|
|
options += "english,";
|
|
|
|
|
else if (lyxrc->rtl_support)
|
|
|
|
|
options += "hebrew,";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
options += params.language + ',';
|
2000-02-03 19:51:27 +00:00
|
|
|
|
} else if (lyxrc->rtl_support)
|
|
|
|
|
options += "hebrew,english,";
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// the user-defined options
|
|
|
|
|
if (!params.options.empty()) {
|
|
|
|
|
options += params.options + ',';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!options.empty()){
|
1999-10-02 16:21:10 +00:00
|
|
|
|
options = strip(options, ',');
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += '[';
|
|
|
|
|
LFile += options;
|
|
|
|
|
LFile += ']';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LFile += '{';
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LFile += textclasslist.LatexnameOfClass(params.textclass);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += "}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
// end of \documentclass defs
|
|
|
|
|
|
|
|
|
|
// font selection must be done before loading fontenc.sty
|
|
|
|
|
if (params.fonts != "default") {
|
|
|
|
|
LFile += "\\usepackage{" + params.fonts + "}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
// this one is not per buffer
|
|
|
|
|
if (lyxrc->fontenc != "default") {
|
|
|
|
|
LFile += "\\usepackage[" + lyxrc->fontenc
|
|
|
|
|
+ "]{fontenc}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
if (params.inputenc != "default") {
|
|
|
|
|
LFile += "\\usepackage[" + params.inputenc
|
|
|
|
|
+ "]{inputenc}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* at the very beginning the text parameters */
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (params.paperpackage != BufferParams::PACKAGE_NONE) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
switch (params.paperpackage) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PACKAGE_A4:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += "\\usepackage{a4}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PACKAGE_A4WIDE:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += "\\usepackage{a4wide}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PACKAGE_WIDEMARGINSA4:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += "\\usepackage[widemargins]{a4}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (params.use_geometry) {
|
|
|
|
|
LFile += "\\usepackage{geometry}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
LFile += "\\geometry{verbose";
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (params.orientation == BufferParams::ORIENTATION_LANDSCAPE)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",landscape";
|
|
|
|
|
switch (params.papersize2) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::VM_PAPER_CUSTOM:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!params.paperwidth.empty())
|
1999-12-01 10:46:58 +00:00
|
|
|
|
LFile += ",paperwidth="
|
1999-09-27 18:44:28 +00:00
|
|
|
|
+ params.paperwidth;
|
|
|
|
|
if (!params.paperheight.empty())
|
1999-12-01 10:46:58 +00:00
|
|
|
|
LFile += ",paperheight="
|
1999-09-27 18:44:28 +00:00
|
|
|
|
+ params.paperheight;
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::VM_PAPER_USLETTER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",letterpaper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::VM_PAPER_USLEGAL:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",legalpaper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::VM_PAPER_USEXECUTIVE:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",executivepaper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::VM_PAPER_A3:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",a3paper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::VM_PAPER_A4:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",a4paper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::VM_PAPER_A5:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",a5paper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::VM_PAPER_B3:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",b3paper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::VM_PAPER_B4:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",b4paper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::VM_PAPER_B5:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",b5paper";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
1999-11-15 12:01:38 +00:00
|
|
|
|
// default papersize ie BufferParams::VM_PAPER_DEFAULT
|
1999-09-27 18:44:28 +00:00
|
|
|
|
switch (lyxrc->default_papersize) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_DEFAULT: // keep compiler happy
|
|
|
|
|
case BufferParams::PAPER_USLETTER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",letterpaper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_LEGALPAPER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",legalpaper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_EXECUTIVEPAPER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",executivepaper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_A3PAPER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",a3paper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_A4PAPER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",a4paper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_A5PAPER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",a5paper";
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case BufferParams::PAPER_B5PAPER:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += ",b5paper";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!params.topmargin.empty())
|
1999-12-01 10:46:58 +00:00
|
|
|
|
LFile += ",tmargin=" + params.topmargin;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!params.bottommargin.empty())
|
1999-12-01 10:46:58 +00:00
|
|
|
|
LFile += ",bmargin=" + params.bottommargin;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!params.leftmargin.empty())
|
1999-12-01 10:46:58 +00:00
|
|
|
|
LFile += ",lmargin=" + params.leftmargin;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!params.rightmargin.empty())
|
1999-12-01 10:46:58 +00:00
|
|
|
|
LFile += ",rmargin=" + params.rightmargin;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!params.headheight.empty())
|
1999-12-01 10:46:58 +00:00
|
|
|
|
LFile += ",headheight=" + params.headheight;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!params.headsep.empty())
|
1999-12-01 10:46:58 +00:00
|
|
|
|
LFile += ",headsep=" + params.headsep;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!params.footskip.empty())
|
1999-12-01 10:46:58 +00:00
|
|
|
|
LFile += ",footskip=" + params.footskip;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += "}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
if (params.use_amsmath
|
1999-11-04 01:40:20 +00:00
|
|
|
|
&& !prefixIs(textclasslist.LatexnameOfClass(params.textclass), "ams")) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += "\\usepackage{amsmath}\n";
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (tokenPos(tclass.opt_pagestyle(), '|', params.pagestyle) >= 0) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (params.pagestyle == "fancy") {
|
|
|
|
|
LFile += "\\usepackage{fancyhdr}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
LFile += "\\pagestyle{" + params.pagestyle + "}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We try to load babel late, in case it interferes
|
|
|
|
|
// with other packages.
|
2000-02-03 19:51:27 +00:00
|
|
|
|
if (params.language != "default" || lyxrc->rtl_support ) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += "\\usepackage{babel}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (params.secnumdepth != tclass.secnumdepth()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += "\\setcounter{secnumdepth}{";
|
1999-10-19 16:48:35 +00:00
|
|
|
|
LFile += tostr(params.secnumdepth);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += "}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (params.tocdepth != tclass.tocdepth()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += "\\setcounter{tocdepth}{";
|
1999-10-19 16:48:35 +00:00
|
|
|
|
LFile += tostr(params.tocdepth);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += "}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (params.paragraph_separation) {
|
|
|
|
|
switch (params.defskip.kind()) {
|
|
|
|
|
case VSpace::SMALLSKIP:
|
|
|
|
|
LFile += "\\setlength\\parskip{\\smallskipamount}\n";
|
|
|
|
|
break;
|
|
|
|
|
case VSpace::MEDSKIP:
|
|
|
|
|
LFile += "\\setlength\\parskip{\\medskipamount}\n";
|
|
|
|
|
break;
|
|
|
|
|
case VSpace::BIGSKIP:
|
|
|
|
|
LFile += "\\setlength\\parskip{\\bigskipamount}\n";
|
|
|
|
|
break;
|
|
|
|
|
case VSpace::LENGTH:
|
|
|
|
|
LFile += "\\setlength\\parskip{"
|
|
|
|
|
+ params.defskip.length().asLatexString()
|
|
|
|
|
+ "}\n";
|
|
|
|
|
break;
|
|
|
|
|
default: // should never happen // Then delete it.
|
|
|
|
|
LFile += "\\setlength\\parskip{\\medskipamount}\n";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
texrow.newline();
|
|
|
|
|
|
|
|
|
|
LFile += "\\setlength\\parindent{0pt}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Write out what we've generated so far...and reset LFile
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << LFile;
|
1999-10-19 20:59:27 +00:00
|
|
|
|
LFile.clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Now insert the LyX specific LaTeX commands...
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string preamble, tmppreamble;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// The optional packages;
|
|
|
|
|
preamble = features.getPackages(params);
|
|
|
|
|
|
|
|
|
|
// this might be useful...
|
|
|
|
|
preamble += "\n\\makeatletter\n\n";
|
|
|
|
|
|
|
|
|
|
// Some macros LyX will need
|
|
|
|
|
tmppreamble = features.getMacros(params);
|
|
|
|
|
|
|
|
|
|
if (!tmppreamble.empty()) {
|
|
|
|
|
preamble += "\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
|
|
|
|
|
"LyX specific LaTeX commands.\n"
|
|
|
|
|
+ tmppreamble + '\n';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// the text class specific preamble
|
|
|
|
|
tmppreamble = features.getTClassPreamble(params);
|
|
|
|
|
if (!tmppreamble.empty()) {
|
|
|
|
|
preamble += "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
|
|
|
|
|
"Textclass specific LaTeX commands.\n"
|
|
|
|
|
+ tmppreamble + '\n';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* the user-defined preamble */
|
|
|
|
|
if (!params.preamble.empty()) {
|
|
|
|
|
preamble += "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
|
|
|
|
|
"User specified LaTeX commands.\n"
|
|
|
|
|
+ params.preamble + '\n';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
preamble += "\\makeatother\n\n";
|
|
|
|
|
|
|
|
|
|
// Itemize bullet settings need to be last in case the user
|
|
|
|
|
// defines their own bullets that use a package included
|
|
|
|
|
// in the user-defined preamble -- ARRae
|
1999-11-18 14:12:19 +00:00
|
|
|
|
// Actually it has to be done much later than that
|
|
|
|
|
// since some packages like frenchb make modifications
|
|
|
|
|
// at \begin{document} time -- JMarc
|
|
|
|
|
string bullets_def;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
|
if (params.user_defined_bullets[i] != ITEMIZE_DEFAULTS[i]) {
|
1999-11-18 14:12:19 +00:00
|
|
|
|
if (bullets_def.empty())
|
|
|
|
|
bullets_def="\\AtBeginDocument{\n";
|
|
|
|
|
bullets_def += " \\renewcommand{\\labelitemi";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
switch (i) {
|
1999-11-18 14:12:19 +00:00
|
|
|
|
// `i' is one less than the item to modify
|
1999-09-27 18:44:28 +00:00
|
|
|
|
case 0:
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
1999-11-18 14:12:19 +00:00
|
|
|
|
bullets_def += 'i';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case 2:
|
1999-11-18 14:12:19 +00:00
|
|
|
|
bullets_def += "ii";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case 3:
|
1999-11-18 14:12:19 +00:00
|
|
|
|
bullets_def += 'v';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
1999-11-18 14:12:19 +00:00
|
|
|
|
bullets_def += "}{" +
|
|
|
|
|
params.user_defined_bullets[i].getText()
|
|
|
|
|
+ "}\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-18 14:12:19 +00:00
|
|
|
|
if (!bullets_def.empty())
|
|
|
|
|
preamble += bullets_def + "}\n\n";
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
for (int j = countChar(preamble, '\n'); j-- ;) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << preamble;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// make the body.
|
|
|
|
|
LFile += "\\begin{document}\n\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
texrow.newline();
|
|
|
|
|
} // only_body
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr.debug() << "preamble finished, now the body." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
bool was_title = false;
|
|
|
|
|
bool already_title = false;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string ftnote;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
TexRow ft_texrow;
|
|
|
|
|
int ftcount = 0;
|
|
|
|
|
int loop_count = 0;
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = paragraph;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// if only_body
|
|
|
|
|
while (par) {
|
|
|
|
|
++loop_count;
|
|
|
|
|
if (par->IsDummy())
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "Error in MakeLateXFile."
|
|
|
|
|
<< endl;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXLayout const & layout = textclasslist.Style(params.textclass,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->layout);
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (layout.intitle) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (already_title) {
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr <<"Error in MakeLatexFile: You"
|
|
|
|
|
" should not mix title layouts"
|
|
|
|
|
" with normal ones." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else
|
|
|
|
|
was_title = true;
|
|
|
|
|
} else if (was_title && !already_title) {
|
|
|
|
|
LFile += "\\maketitle\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
already_title = true;
|
|
|
|
|
was_title = false;
|
|
|
|
|
}
|
|
|
|
|
// We are at depth 0 so we can just use
|
|
|
|
|
// ordinary \footnote{} generation
|
|
|
|
|
// flag this with ftcount
|
|
|
|
|
ftcount = -1;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (layout.isEnvironment()
|
1999-11-15 12:01:38 +00:00
|
|
|
|
|| par->pextra_type != LyXParagraph::PEXTRA_NONE) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par = par->TeXEnvironment(LFile, texrow,
|
|
|
|
|
ftnote, ft_texrow, ftcount);
|
|
|
|
|
} else {
|
|
|
|
|
par = par->TeXOnePar(LFile, texrow,
|
|
|
|
|
ftnote, ft_texrow, ftcount);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Write out what we've generated...and reset LFile
|
|
|
|
|
if (ftcount >= 1) {
|
|
|
|
|
if (ftcount > 1) {
|
|
|
|
|
LFile += "\\addtocounter{footnote}{-";
|
1999-10-19 16:48:35 +00:00
|
|
|
|
LFile += tostr(ftcount - 1);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LFile += '}';
|
|
|
|
|
}
|
|
|
|
|
LFile += ftnote;
|
|
|
|
|
texrow += ft_texrow;
|
1999-10-19 20:59:27 +00:00
|
|
|
|
ftnote.clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
ft_texrow.reset();
|
|
|
|
|
ftcount = 0;
|
|
|
|
|
}
|
|
|
|
|
if (loop_count == 2) {
|
|
|
|
|
// fwrite()ing every second time through the loop
|
|
|
|
|
// gains a few extra % of speed; going higher than
|
|
|
|
|
// 2 will slow things down again. I'll look at
|
|
|
|
|
// LFile.length() in a future revision. ARRae
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << LFile;
|
1999-10-19 20:59:27 +00:00
|
|
|
|
LFile.clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
loop_count = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// It might be that we only have a title in this document
|
|
|
|
|
if (was_title && !already_title) {
|
|
|
|
|
LFile += "\\maketitle\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!only_body) {
|
|
|
|
|
LFile += "\\end{document}\n";
|
|
|
|
|
texrow.newline();
|
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "makeLaTeXFile...done" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else {
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "LaTeXFile for inclusion made."
|
|
|
|
|
<< endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Just to be sure. (Asger)
|
|
|
|
|
texrow.newline();
|
|
|
|
|
|
|
|
|
|
// Write out what we've generated...and reset LFile
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << LFile;
|
1999-10-19 20:59:27 +00:00
|
|
|
|
LFile.clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// tex_code_break_column's value is used to decide
|
|
|
|
|
// if we are in batchmode or not (within mathed_write()
|
|
|
|
|
// in math_write.C) so we must set it to a non-zero
|
|
|
|
|
// value when we leave otherwise we save incorrect .lyx files.
|
|
|
|
|
tex_code_break_column = lyxrc->ascii_linelen;
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
// How to check if the close went ok when using fstreams
|
|
|
|
|
ofs.close();
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr.debug() << "Finished making latex file." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
bool Buffer::isLatex() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
return textclasslist.TextClass(params.textclass).outputType() == LATEX;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
bool Buffer::isLinuxDoc() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
return textclasslist.TextClass(params.textclass).outputType() == LINUXDOC;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
bool Buffer::isLiterate() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
return textclasslist.TextClass(params.textclass).outputType() == LITERATE;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
bool Buffer::isDocBook() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
return textclasslist.TextClass(params.textclass).outputType() == DOCBOOK;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
bool Buffer::isSGML() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
return textclasslist.TextClass(params.textclass).outputType() == LINUXDOC ||
|
|
|
|
|
textclasslist.TextClass(params.textclass).outputType() == DOCBOOK;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
void Buffer::sgmlOpenTag(ostream & os, int depth,
|
|
|
|
|
string const & latexname) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-12-21 06:10:21 +00:00
|
|
|
|
os << string(depth, ' ') << "<" << latexname << ">\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
void Buffer::sgmlCloseTag(ostream & os, int depth,
|
1999-11-15 12:01:38 +00:00
|
|
|
|
string const & latexname) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-12-21 06:10:21 +00:00
|
|
|
|
os << string(depth, ' ') << "</" << latexname << ">\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
void Buffer::makeLinuxDocFile(string const & fname, int column)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = paragraph;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
string top_element = textclasslist.LatexnameOfClass(params.textclass);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string environment_stack[10];
|
|
|
|
|
string item_name;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
int depth = 0; /* paragraph depth */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
ofstream ofs(fname.c_str());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
if (!ofs) {
|
1999-12-21 06:10:21 +00:00
|
|
|
|
WriteAlert(_("LYX_ERROR:"), _("Cannot write file"), fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
tex_code_break_column = column;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
texrow.reset();
|
|
|
|
|
|
|
|
|
|
if (params.preamble.empty()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "<!doctype linuxdoc system>\n\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "<!doctype linuxdoc system \n [ "
|
|
|
|
|
<< params.preamble << " \n]>\n\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-01-19 14:07:39 +00:00
|
|
|
|
ofs << "<!-- " << LYX_DOCVERSION
|
|
|
|
|
<< " created this file. For more info see http://www.lyx.org/"
|
|
|
|
|
<< " -->\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if(params.options.empty())
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, 0, top_element);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else {
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string top = top_element;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
top += " ";
|
|
|
|
|
top += params.options;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, 0, top);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (par) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
int desc_on = 0; /* description mode*/
|
|
|
|
|
LyXLayout const & style =
|
2000-01-07 03:42:16 +00:00
|
|
|
|
textclasslist.Style(users->buffer()->params.textclass,
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->layout);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->AutoDeleteInsets();
|
|
|
|
|
|
|
|
|
|
/* treat <toc> as a special case for compatibility with old code */
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (par->GetChar(0) == LyXParagraph::META_INSET) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
Inset * inset = par->GetInset(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
char lyx_code = inset->LyxCode();
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (lyx_code == Inset::TOC_CODE){
|
|
|
|
|
string temp = "toc";
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth, temp);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
par = par->next;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
linuxDocHandleFootnote(ofs, par, depth);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-08 21:02:58 +00:00
|
|
|
|
// environment tag closing
|
1999-12-07 00:44:53 +00:00
|
|
|
|
for( ; depth > par->depth; --depth) {
|
|
|
|
|
sgmlCloseTag(ofs, depth, environment_stack[depth]);
|
1999-10-19 20:59:27 +00:00
|
|
|
|
environment_stack[depth].clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-01-08 21:02:58 +00:00
|
|
|
|
// write opening SGML tags
|
1999-11-04 01:40:20 +00:00
|
|
|
|
switch(style.latextype) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
case LATEX_PARAGRAPH:
|
|
|
|
|
if(depth == par->depth
|
|
|
|
|
&& !environment_stack[depth].empty()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth, environment_stack[depth]);
|
1999-10-19 20:59:27 +00:00
|
|
|
|
environment_stack[depth].clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if(depth)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
--depth;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "</p>";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth, style.latexname());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LATEX_COMMAND:
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (depth!= 0)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LinuxDocError(par, 0, _("Error : Wrong depth for LatexType Command.\n"));
|
|
|
|
|
|
|
|
|
|
if (!environment_stack[depth].empty()){
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth,
|
|
|
|
|
environment_stack[depth]);
|
|
|
|
|
ofs << "</p>";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-10-19 20:59:27 +00:00
|
|
|
|
environment_stack[depth].clear();
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth, style.latexname());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LATEX_ENVIRONMENT:
|
|
|
|
|
case LATEX_ITEM_ENVIRONMENT:
|
|
|
|
|
if(depth == par->depth
|
1999-11-04 01:40:20 +00:00
|
|
|
|
&& environment_stack[depth] != style.latexname()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
&& !environment_stack[depth].empty()) {
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth,
|
1999-11-15 12:01:38 +00:00
|
|
|
|
environment_stack[depth]);
|
1999-10-19 20:59:27 +00:00
|
|
|
|
environment_stack[depth].clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
if (depth < par->depth) {
|
|
|
|
|
depth = par->depth;
|
1999-10-19 20:59:27 +00:00
|
|
|
|
environment_stack[depth].clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (environment_stack[depth] != style.latexname()) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if(depth == 0) {
|
|
|
|
|
string temp = "p";
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth, temp);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
environment_stack[depth] = style.latexname();
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth, environment_stack[depth]);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if(style.latextype == LATEX_ENVIRONMENT) break;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
desc_on = (style.labeltype == LABEL_MANUAL);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if(desc_on)
|
1999-11-15 12:01:38 +00:00
|
|
|
|
item_name = "tag";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-11-15 12:01:38 +00:00
|
|
|
|
item_name = "item";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth + 1, item_name);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth, style.latexname());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
do {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
SimpleLinuxDocOnePar(ofs, par, desc_on, depth);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
par = par->next;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
linuxDocHandleFootnote(ofs, par, depth);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
while(par && par->IsDummy());
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/* write closing SGML tags */
|
1999-11-04 01:40:20 +00:00
|
|
|
|
switch(style.latextype) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
case LATEX_COMMAND:
|
|
|
|
|
case LATEX_ENVIRONMENT:
|
|
|
|
|
case LATEX_ITEM_ENVIRONMENT:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth, style.latexname());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Close open tags */
|
1999-12-07 00:44:53 +00:00
|
|
|
|
for(; depth > 0; --depth)
|
|
|
|
|
sgmlCloseTag(ofs, depth, environment_stack[depth]);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if(!environment_stack[depth].empty())
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth, environment_stack[depth]);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\n\n";
|
|
|
|
|
sgmlCloseTag(ofs, 0, top_element);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs.close();
|
|
|
|
|
// How to check for successful close
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
void Buffer::linuxDocHandleFootnote(ostream & os, LyXParagraph * & par,
|
1999-11-15 12:01:38 +00:00
|
|
|
|
int const depth)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
|
string tag = "footnote";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
while (par && par->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(os, depth + 1, tag);
|
|
|
|
|
SimpleLinuxDocOnePar(os, par, 0, depth + 1);
|
|
|
|
|
sgmlCloseTag(os, depth + 1, tag);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par = par->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
|
|
|
|
void Buffer::DocBookHandleCaption(ostream & os, string & inner_tag,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
int const depth, int desc_on,
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXParagraph * & par)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXParagraph * tpar = par;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string tmp_par, extra_par;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (tpar && (tpar->footnoteflag != LyXParagraph::NO_FOOTNOTE) &&
|
1999-12-07 00:44:53 +00:00
|
|
|
|
(tpar->layout != textclasslist.NumberOfLayout(params.textclass,
|
|
|
|
|
"Caption").second))
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tpar = tpar->next;
|
|
|
|
|
if (tpar &&
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tpar->layout == textclasslist.NumberOfLayout(params.textclass,
|
|
|
|
|
"Caption").second) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(os, depth + 1, inner_tag);
|
|
|
|
|
SimpleDocBookOnePar(tmp_par, extra_par, tpar,
|
|
|
|
|
desc_on, depth + 2);
|
|
|
|
|
tmp_par = strip(tmp_par);
|
|
|
|
|
tmp_par = frontStrip(tmp_par);
|
|
|
|
|
os << tmp_par;
|
|
|
|
|
sgmlCloseTag(os, depth+1, inner_tag);
|
|
|
|
|
if(!extra_par.empty())
|
|
|
|
|
os << extra_par;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
|
|
|
|
void Buffer::DocBookHandleFootnote(ostream & os, LyXParagraph * & par,
|
1999-11-15 12:01:38 +00:00
|
|
|
|
int const depth)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
|
string tag, inner_tag;
|
|
|
|
|
string tmp_par, extra_par;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
bool inner_span = false;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
int desc_on = 4;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// This is not how I like to see enums. They should not be anonymous
|
|
|
|
|
// and variables of its type should not be declared right after the
|
|
|
|
|
// last brace. (Lgb)
|
|
|
|
|
enum {
|
|
|
|
|
NO_ONE,
|
|
|
|
|
FOOTNOTE_LIKE,
|
|
|
|
|
MARGIN_LIKE,
|
|
|
|
|
FIG_LIKE,
|
|
|
|
|
TAB_LIKE
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} last = NO_ONE, present = FOOTNOTE_LIKE;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
while (par && par->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if(last == present) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if(inner_span) {
|
|
|
|
|
if(!tmp_par.empty()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << tmp_par;
|
1999-10-19 20:59:27 +00:00
|
|
|
|
tmp_par.clear();
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(os, depth+1, inner_tag);
|
|
|
|
|
sgmlOpenTag(os, depth+1, inner_tag);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << tmp_par;
|
|
|
|
|
if(!inner_tag.empty()) sgmlCloseTag(os, depth+1, inner_tag);
|
|
|
|
|
if(!extra_par.empty()) os << extra_par;
|
|
|
|
|
if(!tag.empty()) sgmlCloseTag(os, depth, tag);
|
1999-10-19 20:59:27 +00:00
|
|
|
|
extra_par.clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
switch (par->footnotekind) {
|
|
|
|
|
case LyXParagraph::FOOTNOTE:
|
|
|
|
|
case LyXParagraph::ALGORITHM:
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tag = "footnote";
|
|
|
|
|
inner_tag = "para";
|
|
|
|
|
present = FOOTNOTE_LIKE;
|
|
|
|
|
inner_span = true;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXParagraph::MARGIN:
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tag = "sidebar";
|
|
|
|
|
inner_tag = "para";
|
|
|
|
|
present = MARGIN_LIKE;
|
|
|
|
|
inner_span = true;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXParagraph::FIG:
|
|
|
|
|
case LyXParagraph::WIDE_FIG:
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tag = "figure";
|
|
|
|
|
inner_tag = "title";
|
|
|
|
|
present = FIG_LIKE;
|
|
|
|
|
inner_span = false;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXParagraph::TAB:
|
|
|
|
|
case LyXParagraph::WIDE_TAB:
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tag = "table";
|
|
|
|
|
inner_tag = "title";
|
|
|
|
|
present = TAB_LIKE;
|
|
|
|
|
inner_span = false;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(os, depth, tag);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if ((present == TAB_LIKE) || (present == FIG_LIKE)) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
DocBookHandleCaption(os, inner_tag, depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
desc_on, par);
|
1999-10-19 20:59:27 +00:00
|
|
|
|
inner_tag.clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(os, depth + 1, inner_tag);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// ignore all caption here, we processed them above!!!
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (par->layout != textclasslist.NumberOfLayout(params.textclass,
|
|
|
|
|
"Caption").second) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
SimpleDocBookOnePar(tmp_par, extra_par, par,
|
1999-12-07 00:44:53 +00:00
|
|
|
|
desc_on, depth + 2);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-10-02 16:21:10 +00:00
|
|
|
|
tmp_par = frontStrip(strip(tmp_par));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
last = present;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par = par->next;
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << tmp_par;
|
|
|
|
|
if(!inner_tag.empty()) sgmlCloseTag(os, depth+1, inner_tag);
|
|
|
|
|
if(!extra_par.empty()) os << extra_par;
|
|
|
|
|
if(!tag.empty()) sgmlCloseTag(os, depth, tag);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* push a tag in a style stack */
|
1999-12-07 00:44:53 +00:00
|
|
|
|
void Buffer::push_tag(ostream & os, char const * tag,
|
1999-11-15 12:01:38 +00:00
|
|
|
|
int & pos, char stack[5][3])
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
/* pop all previous tags */
|
2000-01-06 02:44:26 +00:00
|
|
|
|
for (int j = pos; j >= 0; --j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "</" << stack[j] << ">";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/* add new tag */
|
|
|
|
|
sprintf(stack[++pos], "%s", tag);
|
|
|
|
|
|
|
|
|
|
/* push all tags */
|
2000-01-06 02:44:26 +00:00
|
|
|
|
for (int i = 0; i <= pos; ++i)
|
|
|
|
|
os << "<" << stack[i] << ">";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// pop a tag from a style stack
|
1999-12-07 00:44:53 +00:00
|
|
|
|
void Buffer::pop_tag(ostream & os, char const * tag,
|
1999-11-15 12:01:38 +00:00
|
|
|
|
int & pos, char stack[5][3])
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
// pop all tags till specified one
|
2000-01-06 02:44:26 +00:00
|
|
|
|
for (int j = pos; (j >= 0) && (strcmp(stack[j], tag)); --j)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "</" << stack[j] << ">";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// closes the tag
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "</" << tag << ">";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// push all tags, but the specified one
|
2000-01-06 11:36:48 +00:00
|
|
|
|
for (int i = 0; i <= pos; ++i) {
|
2000-01-06 02:44:26 +00:00
|
|
|
|
os << "<" << stack[i] << ">";
|
|
|
|
|
strcpy(stack[i - 1], stack[i]);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
--pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* handle internal paragraph parsing -- layout already processed */
|
|
|
|
|
|
|
|
|
|
// checks, if newcol chars should be put into this line
|
|
|
|
|
// writes newline, if necessary.
|
|
|
|
|
static
|
1999-12-07 00:44:53 +00:00
|
|
|
|
void linux_doc_line_break(ostream & os, unsigned int & colcount,
|
1999-11-15 12:01:38 +00:00
|
|
|
|
const unsigned int newcol)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
colcount += newcol;
|
|
|
|
|
if (colcount > lyxrc->ascii_linelen) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
colcount = newcol; // assume write after this call
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
void Buffer::SimpleLinuxDocOnePar(ostream & os, LyXParagraph * par,
|
1999-12-13 21:59:26 +00:00
|
|
|
|
int desc_on, int const /*depth*/)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXFont font1, font2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
char c;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Inset * inset;
|
|
|
|
|
LyXParagraph::size_type main_body;
|
|
|
|
|
int j;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXLayout const & style = textclasslist.Style(params.textclass,
|
|
|
|
|
par->GetLayout());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
char family_type = 0; // family font flag
|
|
|
|
|
bool is_bold = false; // series font flag
|
|
|
|
|
char shape_type = 0; // shape font flag
|
|
|
|
|
bool is_em = false; // emphasis (italic) font flag
|
|
|
|
|
|
|
|
|
|
int stack_num = -1; // style stack position
|
|
|
|
|
char stack[5][3]; // style stack
|
|
|
|
|
unsigned int char_line_count = 5; // Heuristic choice ;-)
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (style.labeltype != LABEL_MANUAL)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
main_body = 0;
|
|
|
|
|
else
|
|
|
|
|
main_body = par->BeginningOfMainBody();
|
|
|
|
|
|
|
|
|
|
/* gets paragraph main font */
|
|
|
|
|
if (main_body > 0)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
font1 = style.labelfont;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-11-04 01:40:20 +00:00
|
|
|
|
font1 = style.font;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* parsing main loop */
|
1999-11-04 01:40:20 +00:00
|
|
|
|
for (LyXParagraph::size_type i = 0;
|
|
|
|
|
i < par->size(); ++i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/* handle quote tag */
|
|
|
|
|
if (i == main_body && !par->IsDummy()) {
|
|
|
|
|
if (main_body > 0)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
font1 = style.font;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
font2 = par->getFont(i);
|
|
|
|
|
|
|
|
|
|
if (font1.family() != font2.family()) {
|
|
|
|
|
switch(family_type) {
|
|
|
|
|
case 0:
|
|
|
|
|
if (font2.family() == LyXFont::TYPEWRITER_FAMILY) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
push_tag(os, "tt", stack_num, stack);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
family_type= 1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else if (font2.family() == LyXFont::SANS_FAMILY) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
push_tag(os, "sf", stack_num, stack);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
family_type= 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
1999-12-07 00:44:53 +00:00
|
|
|
|
pop_tag(os, "tt", stack_num, stack);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (font2.family() == LyXFont::SANS_FAMILY) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
push_tag(os, "sf", stack_num, stack);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
family_type= 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
family_type= 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
1999-12-07 00:44:53 +00:00
|
|
|
|
pop_tag(os, "sf", stack_num, stack);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (font2.family() == LyXFont::TYPEWRITER_FAMILY) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
push_tag(os, "tt", stack_num, stack);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
family_type= 1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
family_type= 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* handle bold face */
|
|
|
|
|
if (font1.series() != font2.series()) {
|
|
|
|
|
if (font2.series() == LyXFont::BOLD_SERIES) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
push_tag(os, "bf", stack_num, stack);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
is_bold = true;
|
|
|
|
|
}
|
|
|
|
|
else if (is_bold) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
pop_tag(os, "bf", stack_num, stack);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
is_bold = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* handle italic and slanted fonts */
|
|
|
|
|
if (font1.shape() != font2.shape()) {
|
|
|
|
|
switch(shape_type) {
|
|
|
|
|
case 0:
|
|
|
|
|
if (font2.shape() == LyXFont::ITALIC_SHAPE) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
push_tag(os, "it", stack_num, stack);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
shape_type= 1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else if (font2.shape() == LyXFont::SLANTED_SHAPE) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
push_tag(os, "sl", stack_num, stack);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
shape_type= 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
1999-12-07 00:44:53 +00:00
|
|
|
|
pop_tag(os, "it", stack_num, stack);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (font2.shape() == LyXFont::SLANTED_SHAPE) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
push_tag(os, "sl", stack_num, stack);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
shape_type= 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
shape_type= 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
1999-12-07 00:44:53 +00:00
|
|
|
|
pop_tag(os, "sl", stack_num, stack);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (font2.shape() == LyXFont::ITALIC_SHAPE) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
push_tag(os, "it", stack_num, stack);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
shape_type= 1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
shape_type= 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* handle <em> tag */
|
|
|
|
|
if (font1.emph() != font2.emph()) {
|
|
|
|
|
if (font2.emph() == LyXFont::ON) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
push_tag(os, "em", stack_num, stack);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
is_em = true;
|
|
|
|
|
} else if (is_em) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
pop_tag(os, "em", stack_num, stack);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
is_em = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
c = par->GetChar(i);
|
|
|
|
|
|
|
|
|
|
if (font2.latex() == LyXFont::ON) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
// "TeX"-Mode on == > SGML-Mode on.
|
|
|
|
|
if (c!= '\0')
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << c; // see LaTeX-Generation...
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++char_line_count;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (c == LyXParagraph::META_INSET) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = par->GetInset(i);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string tmp_out;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset->Linuxdoc(tmp_out);
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << tmp_out;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string sgml_string;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (par->linuxDocConvertChar(c, sgml_string)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
&& !style.free_spacing) { // in freespacing
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// mode, spaces are
|
|
|
|
|
// non-breaking characters
|
|
|
|
|
// char is ' '
|
|
|
|
|
if (desc_on == 1) {
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++char_line_count;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
linux_doc_line_break(os, char_line_count, 6);
|
|
|
|
|
os << "</tag>";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
desc_on = 2;
|
|
|
|
|
}
|
|
|
|
|
else {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
linux_doc_line_break(os, char_line_count, 1);
|
|
|
|
|
os << c;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << sgml_string;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
char_line_count += sgml_string.length();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
font1 = font2;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
/* needed if there is an optional argument but no contents */
|
|
|
|
|
if (main_body > 0 && main_body == par->size()) {
|
|
|
|
|
font1 = style.font;
|
|
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/* pop all defined Styles */
|
1999-12-07 00:44:53 +00:00
|
|
|
|
for (j = stack_num; j >= 0; --j) {
|
|
|
|
|
linux_doc_line_break(os,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
char_line_count,
|
1999-12-07 00:44:53 +00:00
|
|
|
|
3 + strlen(stack[j]));
|
|
|
|
|
os << "</" << stack[j] << ">";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* resets description flag correctly */
|
|
|
|
|
switch(desc_on){
|
|
|
|
|
case 1:
|
|
|
|
|
/* <tag> not closed... */
|
1999-12-07 00:44:53 +00:00
|
|
|
|
linux_doc_line_break(os, char_line_count, 6);
|
|
|
|
|
os << "</tag>";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
/* fprintf(file, "</p>");*/
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* print an error message */
|
1999-11-04 01:40:20 +00:00
|
|
|
|
void Buffer::LinuxDocError(LyXParagraph * par, int pos,
|
|
|
|
|
char const * message)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
InsetError * new_inset;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/* insert an error marker in text */
|
|
|
|
|
new_inset = new InsetError(message);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertInset(pos, new_inset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This constant defines the maximum number of
|
|
|
|
|
// environment layouts that can be nesteded.
|
|
|
|
|
// The same applies for command layouts.
|
|
|
|
|
// These values should be more than enough.
|
|
|
|
|
// Jos<6F> Matos (1999/07/22)
|
|
|
|
|
|
|
|
|
|
enum { MAX_NEST_LEVEL = 25};
|
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
void Buffer::makeDocBookFile(string const & fname, int column)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = paragraph;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
string top_element= textclasslist.LatexnameOfClass(params.textclass);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string environment_stack[MAX_NEST_LEVEL];
|
|
|
|
|
string environment_inner[MAX_NEST_LEVEL];
|
|
|
|
|
string command_stack[MAX_NEST_LEVEL];
|
1999-11-15 12:01:38 +00:00
|
|
|
|
bool command_flag= false;
|
|
|
|
|
int command_depth= 0, command_base= 0, cmd_depth= 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
string item_name, command_name;
|
|
|
|
|
string c_depth, c_params, tmps;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
int depth= 0; /* paragraph depth */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
tex_code_break_column = column;
|
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
ofstream ofs(fname.c_str());
|
1999-12-07 00:44:53 +00:00
|
|
|
|
if (!ofs) {
|
1999-12-21 06:10:21 +00:00
|
|
|
|
WriteAlert(_("LYX_ERROR:"), _("Cannot write file"), fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
texrow.reset();
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "<!doctype " << top_element
|
|
|
|
|
<< " public \"-//OASIS//DTD DocBook V3.1//EN\"";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (params.preamble.empty())
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << ">\n\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\n [ " << params.preamble << " \n]>\n\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-15 17:42:22 +00:00
|
|
|
|
ofs << "<!-- DocBook file was created by " << LYX_DOCVERSION
|
|
|
|
|
<< "\n See http://www.lyx.org/ for more information -->\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if(params.options.empty())
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, 0, top_element);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else {
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string top = top_element;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
top += " ";
|
|
|
|
|
top += params.options;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, 0, top);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (par) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
int desc_on= 0; /* description mode*/
|
2000-01-07 03:42:16 +00:00
|
|
|
|
LyXLayout const & style = textclasslist.Style(users->buffer()->params.textclass,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->layout);
|
|
|
|
|
par->AutoDeleteInsets();
|
|
|
|
|
|
|
|
|
|
/* environment tag closing */
|
1999-12-07 00:44:53 +00:00
|
|
|
|
for( ; depth > par->depth; --depth) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if(environment_inner[depth] != "!-- --") {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
item_name= "listitem";
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, command_depth + depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
item_name);
|
|
|
|
|
if( environment_inner[depth] == "varlistentry")
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth+command_depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
environment_inner[depth]);
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth + command_depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
environment_stack[depth]);
|
1999-10-19 20:59:27 +00:00
|
|
|
|
environment_stack[depth].clear();
|
|
|
|
|
environment_inner[depth].clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(depth == par->depth
|
1999-11-04 01:40:20 +00:00
|
|
|
|
&& environment_stack[depth] != style.latexname()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
&& !environment_stack[depth].empty()) {
|
|
|
|
|
if(environment_inner[depth] != "!-- --") {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
item_name= "listitem";
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, command_depth+depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
item_name);
|
|
|
|
|
if( environment_inner[depth] == "varlistentry")
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs,
|
|
|
|
|
depth + command_depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
environment_inner[depth]);
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth + command_depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
environment_stack[depth]);
|
|
|
|
|
|
1999-10-19 20:59:27 +00:00
|
|
|
|
environment_stack[depth].clear();
|
|
|
|
|
environment_inner[depth].clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Write opening SGML tags.
|
1999-11-04 01:40:20 +00:00
|
|
|
|
switch(style.latextype) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
case LATEX_PARAGRAPH:
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if(style.latexname() != "dummy")
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth+command_depth,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
style.latexname());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LATEX_COMMAND:
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (depth!= 0)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LinuxDocError(par, 0,
|
|
|
|
|
_("Error : Wrong depth for "
|
|
|
|
|
"LatexType Command.\n"));
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
command_name = style.latexname();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
tmps = style.latexparam();
|
|
|
|
|
c_params = split(tmps, c_depth,'|');
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
cmd_depth= atoi(c_depth.c_str());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if(command_flag) {
|
|
|
|
|
if(cmd_depth<command_base) {
|
|
|
|
|
for(int j = command_depth;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
j >= command_base; --j)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if(!command_stack[j].empty())
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, j, command_stack[j]);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
command_depth= command_base= cmd_depth;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
else if(cmd_depth <= command_depth) {
|
|
|
|
|
for(int j = command_depth;
|
|
|
|
|
j >= cmd_depth; --j)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if(!command_stack[j].empty())
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, j, command_stack[j]);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
command_depth= cmd_depth;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
1999-11-15 12:01:38 +00:00
|
|
|
|
command_depth= cmd_depth;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
command_depth = command_base = cmd_depth;
|
|
|
|
|
command_flag = true;
|
|
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
|
command_stack[command_depth]= command_name;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// treat label as a special case for
|
|
|
|
|
// more WYSIWYM handling.
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (par->GetChar(0) == LyXParagraph::META_INSET) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
Inset * inset = par->GetInset(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
char lyx_code = inset->LyxCode();
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (lyx_code == Inset::LABEL_CODE){
|
1999-12-07 00:44:53 +00:00
|
|
|
|
command_name += " id=\"";
|
|
|
|
|
command_name += (static_cast<InsetCommand *>(inset))->getContents();
|
|
|
|
|
command_name += "\"";
|
|
|
|
|
desc_on = 3;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth+command_depth, command_name);
|
|
|
|
|
item_name = "title";
|
|
|
|
|
sgmlOpenTag(ofs, depth + 1 + command_depth, item_name);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LATEX_ENVIRONMENT:
|
|
|
|
|
case LATEX_ITEM_ENVIRONMENT:
|
|
|
|
|
if (depth < par->depth) {
|
|
|
|
|
depth = par->depth;
|
1999-10-19 20:59:27 +00:00
|
|
|
|
environment_stack[depth].clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (environment_stack[depth] != style.latexname()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
environment_stack[depth] = style.latexname();
|
|
|
|
|
environment_inner[depth] = "!-- --";
|
|
|
|
|
sgmlOpenTag(ofs, depth + command_depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
environment_stack[depth]);
|
|
|
|
|
} else {
|
|
|
|
|
if(environment_inner[depth] != "!-- --") {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
item_name= "listitem";
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
command_depth + depth,
|
|
|
|
|
item_name);
|
|
|
|
|
if (environment_inner[depth] == "varlistentry")
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs,
|
|
|
|
|
depth + command_depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
environment_inner[depth]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if(style.latextype == LATEX_ENVIRONMENT) {
|
|
|
|
|
if(!style.latexparam().empty())
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth + command_depth,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
style.latexparam());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
desc_on = (style.labeltype == LABEL_MANUAL);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if(desc_on)
|
1999-11-15 12:01:38 +00:00
|
|
|
|
environment_inner[depth]= "varlistentry";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-11-15 12:01:38 +00:00
|
|
|
|
environment_inner[depth]= "listitem";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth + 1 + command_depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
environment_inner[depth]);
|
|
|
|
|
|
|
|
|
|
if(desc_on) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
item_name= "term";
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth + 1 + command_depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
item_name);
|
|
|
|
|
}
|
|
|
|
|
else {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
item_name= "para";
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth + 1 + command_depth,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
item_name);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlOpenTag(ofs, depth + command_depth,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
style.latexname());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
do {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
string tmp_par, extra_par;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
SimpleDocBookOnePar(tmp_par, extra_par, par, desc_on,
|
1999-12-07 00:44:53 +00:00
|
|
|
|
depth + 1 + command_depth);
|
|
|
|
|
ofs << tmp_par;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
par = par->next;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
DocBookHandleFootnote(ofs, par,
|
|
|
|
|
depth + 1 + command_depth);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
while(par && par->IsDummy());
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string end_tag;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/* write closing SGML tags */
|
1999-11-04 01:40:20 +00:00
|
|
|
|
switch(style.latextype) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
case LATEX_COMMAND:
|
1999-11-04 01:40:20 +00:00
|
|
|
|
end_tag = "title";
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth + command_depth, end_tag);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LATEX_ENVIRONMENT:
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if(!style.latexparam().empty())
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth + command_depth,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
style.latexparam());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LATEX_ITEM_ENVIRONMENT:
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if(desc_on == 1) break;
|
|
|
|
|
end_tag= "para";
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth + 1 + command_depth, end_tag);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LATEX_PARAGRAPH:
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if(style.latexname() != "dummy")
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth + command_depth,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
style.latexname());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth + command_depth,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
style.latexname());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Close open tags
|
1999-12-07 00:44:53 +00:00
|
|
|
|
for(; depth >= 0; --depth) {
|
1999-10-02 14:01:04 +00:00
|
|
|
|
if(!environment_stack[depth].empty()) {
|
|
|
|
|
if(environment_inner[depth] != "!-- --") {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
item_name= "listitem";
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, command_depth + depth,
|
1999-10-02 14:01:04 +00:00
|
|
|
|
item_name);
|
|
|
|
|
if( environment_inner[depth] == "varlistentry")
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth + command_depth,
|
1999-10-02 14:01:04 +00:00
|
|
|
|
environment_inner[depth]);
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, depth + command_depth,
|
1999-10-02 14:01:04 +00:00
|
|
|
|
environment_stack[depth]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
for(int j = command_depth; j >= command_base; --j)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if(!command_stack[j].empty())
|
1999-12-07 00:44:53 +00:00
|
|
|
|
sgmlCloseTag(ofs, j, command_stack[j]);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\n\n";
|
|
|
|
|
sgmlCloseTag(ofs, 0, top_element);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs.close();
|
|
|
|
|
// How to check for successful close
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
void Buffer::SimpleDocBookOnePar(string & file, string & extra,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LyXParagraph * par, int & desc_on,
|
|
|
|
|
int const depth)
|
|
|
|
|
{
|
|
|
|
|
if (par->table) {
|
|
|
|
|
par->SimpleDocBookOneTablePar(file, extra, desc_on, depth);
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXFont font1, font2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
char c;
|
|
|
|
|
Inset *inset;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph::size_type main_body;
|
|
|
|
|
int j;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
string emph= "emphasis";
|
|
|
|
|
bool emph_flag= false;
|
|
|
|
|
int char_line_count= 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXLayout const & style = textclasslist.Style(params.textclass,
|
|
|
|
|
par->GetLayout());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (style.labeltype != LABEL_MANUAL)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
main_body = 0;
|
|
|
|
|
else
|
|
|
|
|
main_body = par->BeginningOfMainBody();
|
|
|
|
|
|
|
|
|
|
/* gets paragraph main font */
|
|
|
|
|
if (main_body > 0)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
font1 = style.labelfont;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-11-04 01:40:20 +00:00
|
|
|
|
font1 = style.font;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
char_line_count = depth;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if(!style.free_spacing)
|
2000-01-24 18:34:46 +00:00
|
|
|
|
for (j = 0; j < depth; ++j)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
file += ' ';
|
|
|
|
|
|
|
|
|
|
/* parsing main loop */
|
1999-11-04 01:40:20 +00:00
|
|
|
|
for (LyXParagraph::size_type i = 0;
|
|
|
|
|
i < par->size(); ++i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
font2 = par->getFont(i);
|
|
|
|
|
|
|
|
|
|
/* handle <emphasis> tag */
|
|
|
|
|
if (font1.emph() != font2.emph() && i) {
|
|
|
|
|
if (font2.emph() == LyXFont::ON) {
|
|
|
|
|
file += "<emphasis>";
|
1999-11-15 12:01:38 +00:00
|
|
|
|
emph_flag= true;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}else {
|
|
|
|
|
file += "</emphasis>";
|
1999-11-15 12:01:38 +00:00
|
|
|
|
emph_flag= false;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
c = par->GetChar(i);
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (c == LyXParagraph::META_INSET) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset = par->GetInset(i);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string tmp_out;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
inset->DocBook(tmp_out);
|
|
|
|
|
//
|
|
|
|
|
// This code needs some explanation:
|
|
|
|
|
// Two insets are treated specially
|
|
|
|
|
// label if it is the first element in a command paragraph
|
1999-11-15 12:01:38 +00:00
|
|
|
|
// desc_on == 3
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// graphics inside tables or figure floats can't go on
|
|
|
|
|
// title (the equivalente in latex for this case is caption
|
|
|
|
|
// and title should come first
|
1999-11-15 12:01:38 +00:00
|
|
|
|
// desc_on == 4
|
1999-09-27 18:44:28 +00:00
|
|
|
|
//
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if(desc_on!= 3 || i!= 0) {
|
1999-12-14 14:50:03 +00:00
|
|
|
|
if(!tmp_out.empty() && tmp_out[0] == '@') {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if(desc_on == 4)
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extra += frontStrip(tmp_out, '@');
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-10-02 16:21:10 +00:00
|
|
|
|
file += frontStrip(tmp_out, '@');
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
file += tmp_out;
|
|
|
|
|
}
|
|
|
|
|
} else if (font2.latex() == LyXFont::ON) {
|
1999-11-15 12:07:35 +00:00
|
|
|
|
// "TeX"-Mode on ==> SGML-Mode on.
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (c!= '\0')
|
1999-09-27 18:44:28 +00:00
|
|
|
|
file += c;
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++char_line_count;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string sgml_string;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (par->linuxDocConvertChar(c, sgml_string)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
&& !style.free_spacing) { // in freespacing
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// mode, spaces are
|
|
|
|
|
// non-breaking characters
|
|
|
|
|
// char is ' '
|
|
|
|
|
if (desc_on == 1) {
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++char_line_count;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
file += '\n';
|
|
|
|
|
file += "</term><listitem><para>";
|
|
|
|
|
desc_on = 2;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
file += c;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
file += sgml_string;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
font1 = font2;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
/* needed if there is an optional argument but no contents */
|
|
|
|
|
if (main_body > 0 && main_body == par->size()) {
|
|
|
|
|
font1 = style.font;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (emph_flag) {
|
|
|
|
|
file += "</emphasis>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* resets description flag correctly */
|
|
|
|
|
switch(desc_on){
|
|
|
|
|
case 1:
|
|
|
|
|
/* <term> not closed... */
|
|
|
|
|
file += "</term>";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
file += '\n';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Buffer::runLaTeX()
|
|
|
|
|
{
|
1999-12-10 00:07:59 +00:00
|
|
|
|
if (!users->text) return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
ProhibitInput();
|
|
|
|
|
|
|
|
|
|
// get LaTeX-Filename
|
1999-12-03 13:51:01 +00:00
|
|
|
|
string name = getLatexName();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string path = OnlyPath(filename);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string org_path = path;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (lyxrc->use_tempdir || (IsDirWriteable(path) < 1)) {
|
|
|
|
|
path = tmppath;
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-13 17:32:46 +00:00
|
|
|
|
Path p(path); // path to LaTeX file
|
1999-11-09 23:52:04 +00:00
|
|
|
|
users->owner()->getMiniBuffer()->Set(_("Running LaTeX..."));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Remove all error insets
|
2000-01-08 21:02:58 +00:00
|
|
|
|
bool a = users->removeAutoInsets();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Always generate the LaTeX file
|
|
|
|
|
makeLaTeXFile(name, org_path, false);
|
|
|
|
|
markDviDirty();
|
|
|
|
|
|
|
|
|
|
// do the LaTex run(s)
|
|
|
|
|
TeXErrors terr;
|
2000-01-11 01:59:00 +00:00
|
|
|
|
string latex_command = lyxrc->pdf_mode ?
|
|
|
|
|
lyxrc->pdflatex_command : lyxrc->latex_command;
|
|
|
|
|
LaTeX latex(latex_command, name, filepath);
|
1999-11-09 23:52:04 +00:00
|
|
|
|
int res = latex.run(terr,
|
|
|
|
|
users->owner()->getMiniBuffer()); // running latex
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// check return value from latex.run().
|
|
|
|
|
if ((res & LaTeX::NO_LOGFILE)) {
|
|
|
|
|
WriteAlert(_("LaTeX did not work!"),
|
|
|
|
|
_("Missing log file:"), name);
|
|
|
|
|
} else if ((res & LaTeX::ERRORS)) {
|
1999-11-09 23:52:04 +00:00
|
|
|
|
users->owner()->getMiniBuffer()->Set(_("Done"));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Insert all errors as errors boxes
|
2000-01-08 21:02:58 +00:00
|
|
|
|
users->insertErrors(terr);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Dvi should also be kept dirty if the latex run
|
|
|
|
|
// ends up with errors. However it should be possible
|
|
|
|
|
// to view a dirty dvi too.
|
|
|
|
|
} else {
|
|
|
|
|
//no errors or any other things to think about so:
|
1999-11-09 23:52:04 +00:00
|
|
|
|
users->owner()->getMiniBuffer()->Set(_("Done"));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
markDviClean();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if we removed error insets before we ran LaTeX or if we inserted
|
|
|
|
|
// error insets after we ran LaTeX this must be run:
|
|
|
|
|
if (a || (res & LaTeX::ERRORS)){
|
|
|
|
|
users->redraw();
|
|
|
|
|
users->fitCursor();
|
|
|
|
|
users->updateScrollbar();
|
|
|
|
|
}
|
|
|
|
|
AllowInput();
|
|
|
|
|
|
|
|
|
|
return latex.getNumErrors();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Buffer::runLiterate()
|
|
|
|
|
{
|
1999-12-10 00:07:59 +00:00
|
|
|
|
if (!users->text) return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
ProhibitInput();
|
|
|
|
|
|
|
|
|
|
// get LaTeX-Filename
|
1999-12-03 13:51:01 +00:00
|
|
|
|
string name = getLatexName();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// get Literate-Filename
|
1999-12-03 13:51:01 +00:00
|
|
|
|
string lit_name = ChangeExtension (getLatexName(),
|
|
|
|
|
lyxrc->literate_extension, true);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string path = OnlyPath(filename);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string org_path = path;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (lyxrc->use_tempdir || (IsDirWriteable(path) < 1)) {
|
|
|
|
|
path = tmppath;
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-13 17:32:46 +00:00
|
|
|
|
Path p(path); // path to Literate file
|
1999-11-09 23:52:04 +00:00
|
|
|
|
users->owner()->getMiniBuffer()->Set(_("Running Literate..."));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Remove all error insets
|
2000-01-08 21:02:58 +00:00
|
|
|
|
bool a = users->removeAutoInsets();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// generate the Literate file if necessary
|
|
|
|
|
if (!isDviClean() || a) {
|
|
|
|
|
makeLaTeXFile(lit_name, org_path, false);
|
|
|
|
|
markDviDirty();
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-11 01:59:00 +00:00
|
|
|
|
string latex_command = lyxrc->pdf_mode ?
|
|
|
|
|
lyxrc->pdflatex_command : lyxrc->latex_command;
|
|
|
|
|
Literate literate(latex_command, name, filepath,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lit_name,
|
|
|
|
|
lyxrc->literate_command, lyxrc->literate_error_filter,
|
|
|
|
|
lyxrc->build_command, lyxrc->build_error_filter);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
TeXErrors terr;
|
1999-11-09 23:52:04 +00:00
|
|
|
|
int res = literate.weave(terr, users->owner()->getMiniBuffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// check return value from literate.weave().
|
|
|
|
|
if ((res & Literate::NO_LOGFILE)) {
|
|
|
|
|
WriteAlert(_("Literate command did not work!"),
|
|
|
|
|
_("Missing log file:"), name);
|
|
|
|
|
} else if ((res & Literate::ERRORS)) {
|
1999-11-09 23:52:04 +00:00
|
|
|
|
users->owner()->getMiniBuffer()->Set(_("Done"));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Insert all errors as errors boxes
|
2000-01-08 21:02:58 +00:00
|
|
|
|
users->insertErrors(terr);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Dvi should also be kept dirty if the latex run
|
|
|
|
|
// ends up with errors. However it should be possible
|
|
|
|
|
// to view a dirty dvi too.
|
|
|
|
|
} else {
|
|
|
|
|
//no errors or any other things to think about so:
|
1999-11-09 23:52:04 +00:00
|
|
|
|
users->owner()->getMiniBuffer()->Set(_("Done"));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
markDviClean();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if we removed error insets before we ran LaTeX or if we inserted
|
|
|
|
|
// error insets after we ran LaTeX this must be run:
|
|
|
|
|
if (a || (res & Literate::ERRORS)){
|
|
|
|
|
users->redraw();
|
|
|
|
|
users->fitCursor();
|
|
|
|
|
users->updateScrollbar();
|
|
|
|
|
}
|
|
|
|
|
AllowInput();
|
|
|
|
|
|
|
|
|
|
return literate.getNumErrors();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Buffer::buildProgram()
|
|
|
|
|
{
|
1999-12-10 00:07:59 +00:00
|
|
|
|
if (!users->text) return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
ProhibitInput();
|
|
|
|
|
|
|
|
|
|
// get LaTeX-Filename
|
1999-12-03 13:51:01 +00:00
|
|
|
|
string name = getLatexName();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// get Literate-Filename
|
1999-12-03 13:51:01 +00:00
|
|
|
|
string lit_name = ChangeExtension(getLatexName(),
|
|
|
|
|
lyxrc->literate_extension, true);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string path = OnlyPath(filename);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string org_path = path;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (lyxrc->use_tempdir || (IsDirWriteable(path) < 1)) {
|
|
|
|
|
path = tmppath;
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-13 17:32:46 +00:00
|
|
|
|
Path p(path); // path to Literate file
|
1999-11-09 23:52:04 +00:00
|
|
|
|
users->owner()->getMiniBuffer()->Set(_("Building Program..."));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Remove all error insets
|
2000-01-08 21:02:58 +00:00
|
|
|
|
bool a = users->removeAutoInsets();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// generate the LaTeX file if necessary
|
|
|
|
|
if (!isNwClean() || a) {
|
|
|
|
|
makeLaTeXFile(lit_name, org_path, false);
|
|
|
|
|
markNwDirty();
|
|
|
|
|
}
|
2000-01-11 01:59:00 +00:00
|
|
|
|
|
|
|
|
|
string latex_command = lyxrc->pdf_mode ?
|
|
|
|
|
lyxrc->pdflatex_command : lyxrc->latex_command;
|
|
|
|
|
Literate literate(latex_command, name, filepath,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lit_name,
|
|
|
|
|
lyxrc->literate_command, lyxrc->literate_error_filter,
|
|
|
|
|
lyxrc->build_command, lyxrc->build_error_filter);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
TeXErrors terr;
|
1999-11-09 23:52:04 +00:00
|
|
|
|
int res = literate.build(terr, users->owner()->getMiniBuffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// check return value from literate.build().
|
|
|
|
|
if ((res & Literate::NO_LOGFILE)) {
|
|
|
|
|
WriteAlert(_("Build did not work!"),
|
|
|
|
|
_("Missing log file:"), name);
|
|
|
|
|
} else if ((res & Literate::ERRORS)) {
|
1999-11-09 23:52:04 +00:00
|
|
|
|
users->owner()->getMiniBuffer()->Set(_("Done"));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Insert all errors as errors boxes
|
2000-01-08 21:02:58 +00:00
|
|
|
|
users->insertErrors(terr);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Literate files should also be kept dirty if the literate
|
|
|
|
|
// command run ends up with errors.
|
|
|
|
|
} else {
|
|
|
|
|
//no errors or any other things to think about so:
|
1999-11-09 23:52:04 +00:00
|
|
|
|
users->owner()->getMiniBuffer()->Set(_("Done"));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
markNwClean();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if we removed error insets before we ran Literate/Build or if we inserted
|
|
|
|
|
// error insets after we ran Literate/Build this must be run:
|
|
|
|
|
if (a || (res & Literate::ERRORS)){
|
|
|
|
|
users->redraw();
|
|
|
|
|
users->fitCursor();
|
|
|
|
|
users->updateScrollbar();
|
|
|
|
|
}
|
|
|
|
|
AllowInput();
|
|
|
|
|
|
|
|
|
|
return literate.getNumErrors();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// This should be enabled when the Chktex class is implemented. (Asger)
|
|
|
|
|
// chktex should be run with these flags disabled: 3, 22, 25, 30, 38(?)
|
|
|
|
|
// Other flags: -wall -v0 -x
|
|
|
|
|
int Buffer::runChktex()
|
|
|
|
|
{
|
1999-12-10 00:07:59 +00:00
|
|
|
|
if (!users->text) return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
ProhibitInput();
|
|
|
|
|
|
|
|
|
|
// get LaTeX-Filename
|
1999-12-03 13:51:01 +00:00
|
|
|
|
string name = getLatexName();
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string path = OnlyPath(filename);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string org_path = path;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (lyxrc->use_tempdir || (IsDirWriteable(path) < 1)) {
|
|
|
|
|
path = tmppath;
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-13 17:32:46 +00:00
|
|
|
|
Path p(path); // path to LaTeX file
|
1999-11-09 23:52:04 +00:00
|
|
|
|
users->owner()->getMiniBuffer()->Set(_("Running chktex..."));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Remove all error insets
|
2000-01-08 21:02:58 +00:00
|
|
|
|
bool a = users->removeAutoInsets();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Generate the LaTeX file if neccessary
|
|
|
|
|
if (!isDviClean() || a) {
|
|
|
|
|
makeLaTeXFile(name, org_path, false);
|
|
|
|
|
markDviDirty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TeXErrors terr;
|
|
|
|
|
Chktex chktex(lyxrc->chktex_command, name, filepath);
|
|
|
|
|
int res = chktex.run(terr); // run chktex
|
|
|
|
|
|
|
|
|
|
if (res == -1) {
|
|
|
|
|
WriteAlert(_("chktex did not work!"),
|
|
|
|
|
_("Could not run with file:"), name);
|
|
|
|
|
} else if (res > 0) {
|
|
|
|
|
// Insert all errors as errors boxes
|
2000-01-08 21:02:58 +00:00
|
|
|
|
users->insertErrors(terr);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if we removed error insets before we ran chktex or if we inserted
|
|
|
|
|
// error insets after we ran chktex, this must be run:
|
|
|
|
|
if (a || res){
|
|
|
|
|
users->redraw();
|
|
|
|
|
users->fitCursor();
|
|
|
|
|
users->updateScrollbar();
|
|
|
|
|
}
|
|
|
|
|
AllowInput();
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
void Buffer::RoffAsciiTable(ostream & os, LyXParagraph * par)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-12-07 00:44:53 +00:00
|
|
|
|
LyXFont font1 = LyXFont(LyXFont::ALL_INHERIT);
|
|
|
|
|
LyXFont font2;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Inset * inset;
|
|
|
|
|
LyXParagraph::size_type i;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
int j, cell = 0;
|
|
|
|
|
char c;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
string fname1 = TmpFileName(string(), "RAT1");
|
|
|
|
|
string fname2 = TmpFileName(string(), "RAT2");
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
|
|
|
|
ofstream ofs(fname1.c_str());
|
|
|
|
|
if (!ofs) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
WriteAlert(_("LYX_ERROR:"),
|
|
|
|
|
_("Cannot open temporary file:"), fname1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
par->table->RoffEndOfCell(ofs, -1);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
for (i = 0; i < par->size(); ++i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
c = par->GetChar(i);
|
|
|
|
|
if (par->table->IsContRow(cell)) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (c == LyXParagraph::META_NEWLINE)
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++cell;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
font2 = par->GetFontSettings(i);
|
|
|
|
|
if (font1.latex() != font2.latex()) {
|
|
|
|
|
if (font2.latex() != LyXFont::OFF)
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
switch (c) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case LyXParagraph::META_INSET:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if ((inset = par->GetInset(i))) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
fstream fs(fname2.c_str(), ios::in|ios::out);
|
|
|
|
|
if (!fs) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
WriteAlert(_("LYX_ERROR:"),
|
|
|
|
|
_("Cannot open temporary file:"), fname2);
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs.close();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
remove(fname1.c_str());
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
inset->Latex(fs, -1);
|
|
|
|
|
fs.seekp(0);
|
|
|
|
|
fs.get(c);
|
|
|
|
|
while(!fs) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (c == '\\')
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\\\\";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << c;
|
|
|
|
|
fs >> c;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
fs.close();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case LyXParagraph::META_NEWLINE:
|
|
|
|
|
if (par->table->CellHasContRow(cell)>= 0)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
par->RoffContTableRows(ofs, i+1, cell);
|
|
|
|
|
par->table->RoffEndOfCell(ofs, cell);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++cell;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case LyXParagraph::META_HFILL:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
case LyXParagraph::META_PROTECTED_SEPARATOR:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case '\\':
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << "\\\\";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
if (c != '\0')
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ofs << c;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else if (c == '\0')
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr.debug()
|
|
|
|
|
<< "RoffAsciiTable:"
|
|
|
|
|
" NULL char in structure." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
par->table->RoffEndOfCell(ofs, cell);
|
|
|
|
|
ofs.close();
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string cmd = lyxrc->ascii_roff_command + " >" + fname2;
|
1999-10-26 23:33:30 +00:00
|
|
|
|
cmd = subst(cmd, "$$FName", fname1);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
Systemcalls one(Systemcalls::System, cmd);
|
1999-10-07 18:44:17 +00:00
|
|
|
|
if (!(lyxerr.debugging(Debug::ROFF))) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
remove(fname1.c_str());
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ifstream ifs(fname2.c_str());
|
|
|
|
|
if (!ifs) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
WriteFSAlert(_("Error! Can't open temporary file:"), fname2);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// now output the produced file
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "\n\n";
|
|
|
|
|
ifs.get(c);
|
|
|
|
|
if (!ifs)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
WriteAlert(_("Error!"),
|
|
|
|
|
_("Error executing *roff command on table"));
|
|
|
|
|
// overread leading blank lines
|
1999-12-07 00:44:53 +00:00
|
|
|
|
while(!ifs && (c == '\n'))
|
|
|
|
|
ifs.get(c);
|
|
|
|
|
while(!ifs) {
|
|
|
|
|
for(j = 0; j < par->depth; ++j)
|
|
|
|
|
os << " ";
|
|
|
|
|
while(!ifs && (c != '\n')) {
|
|
|
|
|
os << c;
|
|
|
|
|
ifs.get(c);
|
|
|
|
|
}
|
|
|
|
|
os << '\n';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// overread trailing blank lines
|
1999-12-07 00:44:53 +00:00
|
|
|
|
while(!ifs && (c == '\n'))
|
|
|
|
|
ifs.get(c);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
ifs.close();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
remove(fname2.c_str());
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// changed Heinrich Bauer, 23/03/98
|
2000-02-04 09:38:32 +00:00
|
|
|
|
bool Buffer::isDviClean() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (lyxrc->use_tempdir)
|
|
|
|
|
return dvi_clean_tmpd;
|
|
|
|
|
else
|
|
|
|
|
return dvi_clean_orgd;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// changed Heinrich Bauer, 23/03/98
|
|
|
|
|
void Buffer::markDviClean()
|
|
|
|
|
{
|
|
|
|
|
if (lyxrc->use_tempdir)
|
|
|
|
|
dvi_clean_tmpd = true;
|
|
|
|
|
else
|
|
|
|
|
dvi_clean_orgd = true;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// changed Heinrich Bauer, 23/03/98
|
|
|
|
|
void Buffer::markDviDirty()
|
|
|
|
|
{
|
|
|
|
|
if (lyxrc->use_tempdir)
|
|
|
|
|
dvi_clean_tmpd = false;
|
|
|
|
|
else
|
|
|
|
|
dvi_clean_orgd = false;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
|
void Buffer::validate(LaTeXFeatures & features) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = paragraph;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXTextClass const & tclass =
|
1999-11-04 01:40:20 +00:00
|
|
|
|
textclasslist.TextClass(params.textclass);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// AMS Style is at document level
|
|
|
|
|
|
|
|
|
|
features.amsstyle = (params.use_amsmath ||
|
1999-11-04 01:40:20 +00:00
|
|
|
|
tclass.provides(LyXTextClass::amsmath));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
while (par) {
|
|
|
|
|
// We don't use "lyxerr.debug" because of speed. (Asger)
|
1999-10-07 18:44:17 +00:00
|
|
|
|
if (lyxerr.debugging(Debug::LATEX))
|
|
|
|
|
lyxerr << "Paragraph: " << par << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Now just follow the list of paragraphs and run
|
|
|
|
|
// validate on each of them.
|
|
|
|
|
par->validate(features);
|
|
|
|
|
|
|
|
|
|
// and then the next paragraph
|
|
|
|
|
par = par->next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// the bullet shapes are buffer level not paragraph level
|
|
|
|
|
// so they are tested here
|
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
|
if (params.user_defined_bullets[i] != ITEMIZE_DEFAULTS[i]) {
|
|
|
|
|
int font = params.user_defined_bullets[i].getFont();
|
|
|
|
|
if (font == 0) {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
int c = params
|
|
|
|
|
.user_defined_bullets[i]
|
|
|
|
|
.getCharacter();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (c == 16
|
|
|
|
|
|| c == 17
|
|
|
|
|
|| c == 25
|
|
|
|
|
|| c == 26
|
|
|
|
|
|| c == 31) {
|
|
|
|
|
features.latexsym = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (font == 1) {
|
|
|
|
|
features.amssymb = true;
|
|
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
|
else if ((font >= 2 && font <= 5)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
features.pifont = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
|
if (lyxerr.debugging(Debug::LATEX)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
features.showStruct(params);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Buffer::setPaperStuff()
|
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
|
params.papersize = BufferParams::PAPER_DEFAULT;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
char c1 = params.paperpackage;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (c1 == BufferParams::PACKAGE_NONE) {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
char c2 = params.papersize2;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (c2 == BufferParams::VM_PAPER_USLETTER)
|
|
|
|
|
params.papersize = BufferParams::PAPER_USLETTER;
|
|
|
|
|
else if (c2 == BufferParams::VM_PAPER_USLEGAL)
|
|
|
|
|
params.papersize = BufferParams::PAPER_LEGALPAPER;
|
|
|
|
|
else if (c2 == BufferParams::VM_PAPER_USEXECUTIVE)
|
|
|
|
|
params.papersize = BufferParams::PAPER_EXECUTIVEPAPER;
|
|
|
|
|
else if (c2 == BufferParams::VM_PAPER_A3)
|
|
|
|
|
params.papersize = BufferParams::PAPER_A3PAPER;
|
|
|
|
|
else if (c2 == BufferParams::VM_PAPER_A4)
|
|
|
|
|
params.papersize = BufferParams::PAPER_A4PAPER;
|
|
|
|
|
else if (c2 == BufferParams::VM_PAPER_A5)
|
|
|
|
|
params.papersize = BufferParams::PAPER_A5PAPER;
|
|
|
|
|
else if ((c2 == BufferParams::VM_PAPER_B3) || (c2 == BufferParams::VM_PAPER_B4) ||
|
|
|
|
|
(c2 == BufferParams::VM_PAPER_B5))
|
|
|
|
|
params.papersize = BufferParams::PAPER_B5PAPER;
|
|
|
|
|
} else if ((c1 == BufferParams::PACKAGE_A4) || (c1 == BufferParams::PACKAGE_A4WIDE) ||
|
|
|
|
|
(c1 == BufferParams::PACKAGE_WIDEMARGINSA4))
|
|
|
|
|
params.papersize = BufferParams::PAPER_A4PAPER;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-08 21:02:58 +00:00
|
|
|
|
// This function should be in Buffer because it's a buffer's property (ale)
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string Buffer::getIncludeonlyList(char delim)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
string lst;
|
|
|
|
|
LyXParagraph * par = paragraph;
|
|
|
|
|
LyXParagraph::size_type pos;
|
|
|
|
|
Inset * inset;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (par){
|
|
|
|
|
pos = -1;
|
|
|
|
|
while ((inset = par->ReturnNextInsetPointer(pos))){
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (inset->LyxCode() == Inset::INCLUDE_CODE) {
|
|
|
|
|
InsetInclude * insetinc =
|
1999-11-04 01:40:20 +00:00
|
|
|
|
static_cast<InsetInclude*>(inset);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (insetinc->isInclude()
|
|
|
|
|
&& insetinc->isNoLoad()) {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (!lst.empty())
|
|
|
|
|
lst += delim;
|
|
|
|
|
lst += ChangeExtension(insetinc->getContents(), string(), true);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
par = par->next;
|
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
lyxerr.debug() << "Includeonly(" << lst << ')' << endl;
|
|
|
|
|
return lst;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-08 21:02:58 +00:00
|
|
|
|
// This is also a buffer property (ale)
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string Buffer::getReferenceList(char delim)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
/// if this is a child document and the parent is already loaded
|
|
|
|
|
/// Use the parent's list instead [ale990407]
|
2000-01-25 12:35:27 +00:00
|
|
|
|
if (!params.parentname.empty()
|
|
|
|
|
&& bufferlist.exists(params.parentname)) {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
Buffer * tmp = bufferlist.getBuffer(params.parentname);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (tmp)
|
2000-01-25 12:35:27 +00:00
|
|
|
|
return tmp->getReferenceList(delim);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-10 00:07:59 +00:00
|
|
|
|
LyXParagraph * par = paragraph;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph::size_type pos;
|
|
|
|
|
Inset * inset;
|
|
|
|
|
string lst;
|
2000-01-25 12:35:27 +00:00
|
|
|
|
while (par) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
pos = -1;
|
|
|
|
|
while ((inset = par->ReturnNextInsetPointer(pos))){
|
2000-01-24 18:34:46 +00:00
|
|
|
|
for (int i = 0; i < inset->GetNumberOfLabels(); ++i) {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (!lst.empty())
|
|
|
|
|
lst += delim;
|
|
|
|
|
lst += inset->getLabel(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++pos;
|
2000-01-25 12:35:27 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par = par->next;
|
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
lyxerr.debug() << "References(" << lst << ")" << endl;
|
|
|
|
|
return lst;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-08 21:02:58 +00:00
|
|
|
|
// This is also a buffer property (ale)
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string Buffer::getBibkeyList(char delim)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
/// if this is a child document and the parent is already loaded
|
|
|
|
|
/// Use the parent's list instead [ale990412]
|
|
|
|
|
if (!params.parentname.empty() && bufferlist.exists(params.parentname)) {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
Buffer * tmp = bufferlist.getBuffer(params.parentname);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (tmp)
|
|
|
|
|
return tmp->getBibkeyList(delim);
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string bibkeys;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = paragraph;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (par) {
|
|
|
|
|
if (par->bibkey) {
|
|
|
|
|
if (!bibkeys.empty())
|
|
|
|
|
bibkeys += delim;
|
|
|
|
|
bibkeys += par->bibkey->getContents();
|
|
|
|
|
}
|
|
|
|
|
par = par->next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Might be either using bibtex or a child has bibliography
|
|
|
|
|
if (bibkeys.empty()) {
|
|
|
|
|
par = paragraph;
|
|
|
|
|
while (par) {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Inset * inset;
|
|
|
|
|
LyXParagraph::size_type pos = -1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Search for Bibtex or Include inset
|
|
|
|
|
while ((inset = par->ReturnNextInsetPointer(pos))) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (inset-> LyxCode() == Inset::BIBTEX_CODE) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!bibkeys.empty())
|
|
|
|
|
bibkeys += delim;
|
1999-12-22 14:35:05 +00:00
|
|
|
|
bibkeys += static_cast<InsetBibtex*>(inset)->getKeys(delim);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} else if (inset-> LyxCode() == Inset::INCLUDE_CODE) {
|
1999-12-22 14:35:05 +00:00
|
|
|
|
string bk = static_cast<InsetInclude*>(inset)->getKeys(delim);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!bk.empty()) {
|
|
|
|
|
if (!bibkeys.empty())
|
|
|
|
|
bibkeys += delim;
|
|
|
|
|
bibkeys += bk;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
par = par->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr.debug() << "Bibkeys(" << bibkeys << ")" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return bibkeys;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
bool Buffer::isDepClean(string const & name) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
DEPCLEAN * item = dep_clean;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (item && item->master != name)
|
|
|
|
|
item = item->next;
|
|
|
|
|
if (!item) return true;
|
|
|
|
|
return item->clean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
void Buffer::markDepClean(string const & name)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (!dep_clean) {
|
|
|
|
|
dep_clean = new DEPCLEAN;
|
|
|
|
|
dep_clean->clean = true;
|
|
|
|
|
dep_clean->master = name;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
dep_clean->next = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else {
|
|
|
|
|
DEPCLEAN* item = dep_clean;
|
|
|
|
|
while (item && item->master != name)
|
|
|
|
|
item = item->next;
|
|
|
|
|
if (item) {
|
|
|
|
|
item->clean = true;
|
|
|
|
|
} else {
|
|
|
|
|
item = new DEPCLEAN;
|
|
|
|
|
item->clean = true;
|
|
|
|
|
item->master = name;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
item->next = 0;;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
2000-01-08 21:02:58 +00:00
|
|
|
|
|
|
|
|
|
void Buffer::Dispatch(string const & command)
|
1999-12-10 00:07:59 +00:00
|
|
|
|
{
|
|
|
|
|
// Split command string into command and argument
|
|
|
|
|
string cmd, line = frontStrip(command);
|
|
|
|
|
string arg = strip(frontStrip(split(line, cmd, ' ')));
|
|
|
|
|
|
1999-12-10 14:45:32 +00:00
|
|
|
|
Dispatch(lyxaction.LookupFunc(cmd.c_str()), arg.c_str());
|
1999-12-10 00:07:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-01-08 21:02:58 +00:00
|
|
|
|
|
|
|
|
|
void Buffer::Dispatch(int action, string const & argument)
|
1999-12-10 00:07:59 +00:00
|
|
|
|
{
|
|
|
|
|
switch (action) {
|
1999-12-15 17:42:22 +00:00
|
|
|
|
case LFUN_EXPORT:
|
|
|
|
|
MenuExport(this, argument);
|
|
|
|
|
break;
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
lyxerr << "A truly unknown func!" << endl;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
} // end of switch
|
|
|
|
|
}
|