mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
eb485caa96
* src/buffer.h buffer.C - getSourceCode() * src/lyxfunc.C - open view-source dialog * src/text3.C - change LFUN_MOUSE_RELEASE * src/output_linuxdoc.C, src/output_docbook.C, src/output_latex.C - intercept output * src/outputparams.h, outputparams.C - add par_begin, par_end, dryrun * src/insets/insetgraphics.C - add dryrun mode of file conversion * lib/ui/stdmenus.ui - add view-source menu item under view * Add view-source dialog, add src/frontends/qt2/QViewSourceDialog.h, QViewSource.C, QViewSource.h, QViewSourceDialog.C src/frontends/qt2/ui/QViewSourceDialogBase.ui src/frontends/controllers/ControlViewSource.h ControlViewSource.C modify src/frontends/qt2/Makefile.dialogs, Makefile.am, Dialogs.C, src/frontends/controllers/Makefile.am, po.POTFILES.in git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13610 a592a061-630c-0410-9148-cb99ea01b6c8
30 lines
601 B
C
30 lines
601 B
C
/**
|
|
* \file outputparams.C
|
|
* 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.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "outputparams.h"
|
|
#include "exporter.h"
|
|
|
|
|
|
OutputParams::OutputParams()
|
|
: flavor(LATEX), nice(false), moving_arg(false),
|
|
local_font(0), free_spacing(false), use_babel(false),
|
|
linelen(0), depth(0),
|
|
exportdata(new ExportData),
|
|
inComment(false),
|
|
par_begin(0), par_end(0),
|
|
dryrun(false)
|
|
{}
|
|
|
|
|
|
OutputParams::~OutputParams()
|
|
{}
|