2003-05-22 18:59:10 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2003-11-05 12:06:20 +00:00
|
|
|
* \file outputparams.h
|
2003-05-22 18:59:10 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Angus Leeming
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-05-22 18:59:10 +00:00
|
|
|
*/
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
#ifndef OUTPUTPARAMS_H
|
|
|
|
#define OUTPUTPARAMS_H
|
2003-05-22 18:59:10 +00:00
|
|
|
|
2004-03-27 01:18:51 +00:00
|
|
|
#include "support/types.h"
|
|
|
|
|
2004-04-08 15:03:33 +00:00
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
struct OutputParams {
|
2004-04-08 15:03:33 +00:00
|
|
|
//
|
|
|
|
enum FLAVOR {
|
|
|
|
LATEX,
|
|
|
|
PDFLATEX
|
|
|
|
};
|
2003-05-22 18:59:10 +00:00
|
|
|
|
2004-04-08 15:03:33 +00:00
|
|
|
OutputParams()
|
|
|
|
: flavor(LATEX), nice(false), moving_arg(false),
|
|
|
|
free_spacing(false), use_babel(false),
|
|
|
|
mixed_content(false), linelen(0)
|
|
|
|
{}
|
2003-05-22 18:59:10 +00:00
|
|
|
|
2003-05-22 21:10:22 +00:00
|
|
|
/** The latex that we export depends occasionally on what is to
|
|
|
|
compile the file.
|
|
|
|
*/
|
2004-04-08 15:03:33 +00:00
|
|
|
FLAVOR flavor;
|
2003-05-22 22:44:30 +00:00
|
|
|
|
2003-05-22 21:10:22 +00:00
|
|
|
/** Are we to write a 'nice' LaTeX file or not.
|
|
|
|
This esentially seems to mean whether InsetInclude, InsetGraphics
|
|
|
|
and InsetExternal should add the absolute path to any external
|
|
|
|
files or not.
|
|
|
|
*/
|
|
|
|
bool nice;
|
2003-05-22 22:44:30 +00:00
|
|
|
|
2003-05-23 09:23:03 +00:00
|
|
|
/** moving_arg == true means that the environment in which the inset
|
|
|
|
is typeset is a moving argument. The inset should take care about
|
2003-05-22 22:44:30 +00:00
|
|
|
fragile commands by preceding the latex with \protect.
|
|
|
|
*/
|
2003-05-23 09:23:03 +00:00
|
|
|
bool moving_arg;
|
2003-05-22 22:44:30 +00:00
|
|
|
|
2003-05-23 08:59:47 +00:00
|
|
|
/** free_spacing == true means that the inset is in a free-spacing
|
|
|
|
paragraph.
|
|
|
|
*/
|
|
|
|
bool free_spacing;
|
2003-09-09 18:27:24 +00:00
|
|
|
|
2003-05-22 22:44:30 +00:00
|
|
|
/** This var is set by the return value from BufferParams::writeLaTeX
|
2004-04-08 15:03:33 +00:00
|
|
|
*/
|
2003-05-22 22:44:30 +00:00
|
|
|
bool use_babel;
|
2003-10-31 18:45:43 +00:00
|
|
|
|
|
|
|
/** Used for docbook to see if inside a region of mixed content.
|
|
|
|
In that case all the white spaces are significant and can not appear
|
|
|
|
at the begin or end.
|
2004-04-08 15:03:33 +00:00
|
|
|
*/
|
2003-10-31 18:45:43 +00:00
|
|
|
bool mixed_content;
|
|
|
|
|
2004-04-08 15:03:33 +00:00
|
|
|
/** Line length to use with ascii export.
|
|
|
|
*/
|
2004-03-27 01:18:51 +00:00
|
|
|
lyx::size_type linelen;
|
2003-05-22 18:59:10 +00:00
|
|
|
};
|
|
|
|
|
2003-05-22 22:44:30 +00:00
|
|
|
#endif // LATEXRUNPARAMS_H
|