1999-09-27 18:44:28 +00:00
|
|
|
/* This file is part of
|
1999-11-15 12:01:38 +00:00
|
|
|
* ======================================================
|
1999-10-02 16:21:10 +00:00
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
* Copyright 1995-1999 The LyX Team.
|
|
|
|
*
|
1999-11-15 12:01:38 +00:00
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
1999-10-02 16:21:10 +00:00
|
|
|
#include <cstdlib>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation "bufferparams.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "bufferparams.h"
|
|
|
|
#include "tex-strings.h"
|
|
|
|
#include "layout.h"
|
|
|
|
#include "vspace.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
#include "debug.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "support/lyxlib.h"
|
|
|
|
#include "support/lstrings.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
BufferParams::BufferParams()
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
paragraph_separation = PARSEP_INDENT;
|
1999-09-27 18:44:28 +00:00
|
|
|
defskip = VSpace(VSpace::MEDSKIP);
|
|
|
|
quotes_language = InsetQuotes::EnglishQ;
|
|
|
|
quotes_times = InsetQuotes::DoubleQ;
|
|
|
|
fontsize = "default";
|
1999-11-25 17:29:19 +00:00
|
|
|
// Initialize textclass to point to article. if `first' is
|
|
|
|
// true in the returned pair, then `second' is the textclass
|
|
|
|
// number; if it is false, second is 0. In both cases, second
|
|
|
|
// is what we want.
|
|
|
|
textclass = textclasslist.NumberOfClass("article").second;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/* PaperLayout */
|
|
|
|
papersize = PAPER_DEFAULT;
|
|
|
|
papersize2 = VM_PAPER_DEFAULT; /* DEFAULT */
|
|
|
|
paperpackage = PACKAGE_NONE;
|
|
|
|
orientation = ORIENTATION_PORTRAIT;
|
|
|
|
use_geometry = false;
|
|
|
|
use_amsmath = false;
|
|
|
|
secnumdepth = 3;
|
|
|
|
tocdepth = 3;
|
|
|
|
language = "default";
|
|
|
|
fonts = "default";
|
1999-10-05 09:17:15 +00:00
|
|
|
inputenc = "latin1";
|
1999-09-27 18:44:28 +00:00
|
|
|
graphicsDriver = "default";
|
1999-11-04 01:40:20 +00:00
|
|
|
sides = LyXTextClass::OneSide;
|
1999-09-27 18:44:28 +00:00
|
|
|
columns = 1;
|
|
|
|
pagestyle = "default";
|
|
|
|
for(int iter = 0; iter < 4; iter++) {
|
|
|
|
user_defined_bullets[iter] = temp_bullets[iter]
|
|
|
|
= ITEMIZE_DEFAULTS[iter];
|
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
allowAccents = false;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
void BufferParams::writeFile(FILE * file)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
// The top of the file is written by the buffer.
|
|
|
|
// Prints out the buffer info into the .lyx file given by file
|
|
|
|
|
|
|
|
// the textclass
|
|
|
|
fprintf(file, "\\textclass %s\n",
|
1999-11-04 01:40:20 +00:00
|
|
|
textclasslist.NameOfClass(textclass).c_str());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// then the the preamble
|
|
|
|
if (!preamble.empty()) {
|
|
|
|
fprintf(file, "\\begin_preamble\n");
|
|
|
|
{
|
|
|
|
// remove '\n' from the end of preamble
|
1999-10-02 16:21:10 +00:00
|
|
|
preamble = strip(preamble, '\n');
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// write out the whole preamble in one go
|
|
|
|
fwrite(preamble.c_str(),
|
|
|
|
sizeof(char),
|
|
|
|
preamble.length(),
|
|
|
|
file);
|
|
|
|
fprintf(file, "\n\\end_preamble\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the options */
|
|
|
|
if (!options.empty()) {
|
|
|
|
fprintf(file,
|
|
|
|
"\\options %s\n",
|
|
|
|
options.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* then the text parameters */
|
|
|
|
fprintf(file, "\\language %s\n", language.c_str());
|
|
|
|
fprintf(file, "\\inputencoding %s\n", inputenc.c_str());
|
|
|
|
fprintf(file, "\\fontscheme %s\n", fonts.c_str());
|
|
|
|
fprintf(file, "\\graphics %s\n", graphicsDriver.c_str());
|
|
|
|
|
|
|
|
if (!float_placement.empty()) {
|
|
|
|
fprintf(file,
|
|
|
|
"\\float_placement %s\n",
|
|
|
|
float_placement.c_str());
|
|
|
|
}
|
|
|
|
fprintf(file, "\\paperfontsize %s\n", fontsize.c_str());
|
|
|
|
|
|
|
|
spacing.writeFile(file);
|
|
|
|
|
|
|
|
fprintf(file, "\\papersize %s\n", string_papersize[papersize2]);
|
|
|
|
fprintf(file, "\\paperpackage %s\n",
|
|
|
|
string_paperpackages[paperpackage]);
|
1999-11-15 12:01:38 +00:00
|
|
|
fprintf(file, "\\use_geometry %d\n", use_geometry);
|
|
|
|
fprintf(file, "\\use_amsmath %d\n", use_amsmath);
|
1999-09-27 18:44:28 +00:00
|
|
|
fprintf(file, "\\paperorientation %s\n",
|
|
|
|
string_orientation[orientation]);
|
|
|
|
if (!paperwidth.empty())
|
|
|
|
fprintf(file, "\\paperwidth %s\n",
|
|
|
|
VSpace(paperwidth).asLyXCommand().c_str());
|
|
|
|
if (!paperheight.empty())
|
|
|
|
fprintf(file, "\\paperheight %s\n",
|
|
|
|
VSpace(paperheight).asLyXCommand().c_str());
|
|
|
|
if (!leftmargin.empty())
|
|
|
|
fprintf(file, "\\leftmargin %s\n",
|
|
|
|
VSpace(leftmargin).asLyXCommand().c_str());
|
|
|
|
if (!topmargin.empty())
|
|
|
|
fprintf(file, "\\topmargin %s\n",
|
|
|
|
VSpace(topmargin).asLyXCommand().c_str());
|
|
|
|
if (!rightmargin.empty())
|
|
|
|
fprintf(file, "\\rightmargin %s\n",
|
|
|
|
VSpace(rightmargin).asLyXCommand().c_str());
|
|
|
|
if (!bottommargin.empty())
|
|
|
|
fprintf(file, "\\bottommargin %s\n",
|
|
|
|
VSpace(bottommargin).asLyXCommand().c_str());
|
|
|
|
if (!headheight.empty())
|
|
|
|
fprintf(file, "\\headheight %s\n",
|
|
|
|
VSpace(headheight).asLyXCommand().c_str());
|
|
|
|
if (!headsep.empty())
|
|
|
|
fprintf(file, "\\headsep %s\n",
|
|
|
|
VSpace(headsep).asLyXCommand().c_str());
|
|
|
|
if (!footskip.empty())
|
|
|
|
fprintf(file, "\\footskip %s\n",
|
|
|
|
VSpace(footskip).asLyXCommand().c_str());
|
|
|
|
fprintf(file, "\\secnumdepth %d\n", secnumdepth);
|
|
|
|
fprintf(file, "\\tocdepth %d\n", tocdepth);
|
|
|
|
fprintf(file, "\\paragraph_separation %s\n",
|
|
|
|
string_paragraph_separation[paragraph_separation]);
|
|
|
|
fprintf(file, "\\defskip %s\n", defskip.asLyXCommand().c_str());
|
|
|
|
fprintf(file, "\\quotes_language %s\n",
|
|
|
|
string_quotes_language[quotes_language]);
|
|
|
|
switch(quotes_times) {
|
|
|
|
case InsetQuotes::SingleQ:
|
|
|
|
fprintf(file, "\\quotes_times 1\n"); break;
|
|
|
|
case InsetQuotes::DoubleQ:
|
|
|
|
fprintf(file, "\\quotes_times 2\n"); break;
|
|
|
|
}
|
|
|
|
fprintf(file, "\\papercolumns %d\n", columns);
|
|
|
|
fprintf(file, "\\papersides %d\n", sides);
|
|
|
|
fprintf(file, "\\paperpagestyle %s\n", pagestyle.c_str());
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
if (user_defined_bullets[i] != ITEMIZE_DEFAULTS[i]) {
|
|
|
|
if (user_defined_bullets[i].getFont() != -1) {
|
|
|
|
fprintf(file, "\\bullet %d\n\t%d\n\t%d\n\t%d\n\\end_bullet\n",
|
|
|
|
i,
|
|
|
|
user_defined_bullets[i].getFont(),
|
|
|
|
user_defined_bullets[i].getCharacter(),
|
|
|
|
user_defined_bullets[i].getSize());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(file, "\\bulletLaTeX %d\n\t%s\n\\end_bullet\n",
|
|
|
|
i,
|
|
|
|
user_defined_bullets[i].c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferParams::useClassDefaults() {
|
1999-11-04 01:40:20 +00:00
|
|
|
LyXTextClass const & tclass = textclasslist.TextClass(textclass);
|
|
|
|
|
|
|
|
sides = tclass.sides();
|
|
|
|
columns = tclass.columns();
|
|
|
|
pagestyle = tclass.pagestyle();
|
|
|
|
options = tclass.options();
|
|
|
|
secnumdepth = tclass.secnumdepth();
|
|
|
|
tocdepth = tclass.tocdepth();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
void BufferParams::readPreamble(LyXLex & lex)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
if (lex.GetString() != "\\begin_preamble")
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr << "Error (BufferParams::readPreamble):"
|
|
|
|
"consistency check failed." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
preamble = lex.getLongString("\\end_preamble");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
void BufferParams::readLanguage(LyXLex & lex)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
if (!lex.next()) return;
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
string tmptok = lex.GetString();
|
|
|
|
string test;
|
|
|
|
int n = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
// check if tmptok is part of tex_babel in tex-defs.h
|
|
|
|
while (true) {
|
|
|
|
test = tex_babel[n++];
|
|
|
|
|
|
|
|
if (test == tmptok) {
|
|
|
|
language = tmptok;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (test.empty()) {
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr << "Warning: language `"
|
|
|
|
<< tmptok << "' not recognized!\n"
|
|
|
|
<< " Setting language to `default'."
|
|
|
|
<< endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
language = "default";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
void BufferParams::readGraphicsDriver(LyXLex & lex)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
string tmptok;
|
|
|
|
string test;
|
1999-11-15 12:01:38 +00:00
|
|
|
int n = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (!lex.next()) return;
|
|
|
|
|
|
|
|
tmptok = lex.GetString();
|
|
|
|
// check if tmptok is part of tex_graphics in tex_defs.h
|
|
|
|
while (true) {
|
|
|
|
test = tex_graphics[n++];
|
|
|
|
|
|
|
|
if (test == tmptok) {
|
|
|
|
graphicsDriver = tmptok;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (test == "last_item") {
|
|
|
|
lex.printError(
|
|
|
|
"Warning: graphics driver `$$Token' not recognized!\n"
|
|
|
|
" Setting graphics driver to `default'.\n");
|
|
|
|
graphicsDriver = "default";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|