mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
e1efef8a60
* src/insets/ExternalSupport.C (updateExternal): Add new dryrun flag and only record updated files for the exporter if that flag is false (writeExternal): Call updateExternal also if dryrun is true and the product contains the $$Contents placeholder. In this case we need to run the conversion(s) even in dryrun mode, because we would not output the right stuff to the .tex file otherwise. * src/insets/ExternalSupport.[Ch] (writeExternal): rename external_in_comment flag to dryrun git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17204 a592a061-630c-0410-9148-cb99ea01b6c8
75 lines
1.7 KiB
C++
75 lines
1.7 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file ExternalSupport.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Asger Alstrup Nielsen
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef EXTERNALSUPPORT_H
|
|
#define EXTERNALSUPPORT_H
|
|
|
|
#include "support/docstream.h"
|
|
|
|
namespace lyx {
|
|
|
|
class Buffer;
|
|
class ExportData;
|
|
class InsetExternalParams;
|
|
|
|
namespace external {
|
|
|
|
class Template;
|
|
|
|
/// A shorthand, helper function
|
|
Template const * getTemplatePtr(InsetExternalParams const & params);
|
|
|
|
|
|
/// Invoke the external editor.
|
|
void editExternal(InsetExternalParams const & params,
|
|
Buffer const & buffer);
|
|
|
|
|
|
enum Substitute {
|
|
ALL,
|
|
PATHS,
|
|
ALL_BUT_PATHS
|
|
};
|
|
|
|
/** Substitute meta-variables in string \p s, making use of \p params and
|
|
\p buffer.
|
|
If \p external_in_tmpdir is true, all files are assumed to be in the
|
|
master buffers temp path, and the mangled filename is used.
|
|
Otherwise, the output filename (absolute or relative to the parent
|
|
document, as written in the .lyx file) is used.
|
|
*/
|
|
std::string const doSubstitution(InsetExternalParams const & params,
|
|
Buffer const & buffer,
|
|
std::string const & s,
|
|
bool use_latex_path,
|
|
bool external_in_tmpdir = false,
|
|
Substitute what = ALL);
|
|
|
|
|
|
/** Write the output for a specific file format
|
|
and generate any external data files.
|
|
If \p external_in_tmpdir == true, then the generated file is
|
|
place in the buffer's temporary directory.
|
|
*/
|
|
int writeExternal(InsetExternalParams const &,
|
|
std::string const & format,
|
|
Buffer const &,
|
|
odocstream &,
|
|
ExportData &,
|
|
bool external_in_tmpdir,
|
|
bool dryrun);
|
|
|
|
} // namespace external
|
|
} // namespace lyx
|
|
|
|
#endif // NOT EXTERNALSUPPORT_H
|