mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
b1be8f3cb0
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8869 a592a061-630c-0410-9148-cb99ea01b6c8
90 lines
2.0 KiB
C++
90 lines
2.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file outputparams.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef OUTPUTPARAMS_H
|
|
#define OUTPUTPARAMS_H
|
|
|
|
#include <string>
|
|
|
|
#include "support/types.h"
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
class ExportData;
|
|
|
|
|
|
struct OutputParams {
|
|
//
|
|
enum FLAVOR {
|
|
LATEX,
|
|
PDFLATEX,
|
|
XML
|
|
};
|
|
|
|
OutputParams();
|
|
~OutputParams();
|
|
|
|
/** The latex that we export depends occasionally on what is to
|
|
compile the file.
|
|
*/
|
|
FLAVOR flavor;
|
|
|
|
/** 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;
|
|
|
|
/** moving_arg == true means that the environment in which the inset
|
|
is typeset is a moving argument. The inset should take care about
|
|
fragile commands by preceding the latex with \protect.
|
|
*/
|
|
bool moving_arg;
|
|
|
|
/** intitle == true means that the environment in which the
|
|
inset is typeset is part of a title (before a \maketitle).
|
|
Footnotes in such environments have moving arguments.
|
|
*/
|
|
bool intitle;
|
|
|
|
/** the babel name of the language at the point where the inset is
|
|
*/
|
|
std::string lang;
|
|
|
|
/** free_spacing == true means that the inset is in a free-spacing
|
|
paragraph.
|
|
*/
|
|
bool free_spacing;
|
|
|
|
/** This var is set by the return value from BufferParams::writeLaTeX
|
|
*/
|
|
bool use_babel;
|
|
|
|
/** Used for docbook to see if inside a region of mixed content.
|
|
In that case all the white spaces are significant and cannot appear
|
|
at the begin or end.
|
|
*/
|
|
bool mixed_content;
|
|
|
|
/** Line length to use with ascii export.
|
|
*/
|
|
lyx::size_type linelen;
|
|
|
|
/** Export data filled in by the latex(), docbook() etc methods.
|
|
This is a hack: Make it possible to add stuff to constant
|
|
OutputParams instances.
|
|
*/
|
|
boost::shared_ptr<ExportData> exportdata;
|
|
};
|
|
|
|
#endif // NOT OUTPUTPARAMS_H
|