X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FExternalTemplate.h;h=4392870057d3969c20d8729edf336b205575d312;hb=3934f4a36f0402612206cfc0abe0b0b62166214b;hp=9b5566cb283091712f6506f5c0a21f3e195589cb;hpb=6bba977f42b0cde753ac2ffd26f3f9c6b32ba0b6;p=lyx.git diff --git a/src/insets/ExternalTemplate.h b/src/insets/ExternalTemplate.h index 9b5566cb28..4392870057 100644 --- a/src/insets/ExternalTemplate.h +++ b/src/insets/ExternalTemplate.h @@ -1,87 +1,143 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file ExternalTemplate.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * \author Asger Alstrup Nielsen + * \author Angus Leeming * - * ====================================================== */ + * Full author contact details are available in file CREDITS. + */ #ifndef EXTERNALTEMPLATE_H #define EXTERNALTEMPLATE_H -#ifdef __GNUG__ -#pragma interface -#endif +#include "ExternalTransforms.h" + +#include + +#include + +namespace lyx { + +namespace support { class FileName; } + +class Lexer; -#include -#include -#include "LString.h" +enum PreviewMode { + PREVIEW_OFF = 0, + PREVIEW_GRAPHICS, + PREVIEW_INSTANT +}; + +namespace external { + +class Template { +public: + /// We have to have default commands for safety reasons! + Template(); + /// + void readTemplate(Lexer &); + /// + void dumpFormats(std::ostream &) const; -class LyXLex; + class Option { + public: + Option(std::string const & name_, std::string const & opt_) + : name(name_), option(opt_) {} + std::string name; + std::string option; + }; -struct ExternalTemplate { /// What is the name of this template in the LyX format? - string lyxName; + std::string lyxName; /// What will the button in the GUI say? - string guiName; + std::string guiName; /// A short help text - string helpText; + std::string helpText; + /** The format of the input file. Can be "*", in which case we try and + * ascertain the format from the contents of the file. + */ + std::string inputFormat; /// A file extension regular expression for the file browser - string fileRegExp; - /// What command should be executed to view the file? - string viewCommand; - /// What command should be executed to edit the file? - string editCommand; + std::string fileRegExp; /// Should we do automatic production of the output? bool automaticProduction; + /// How should we preview the data in LyX? + PreviewMode preview_mode; + /// A collection of transforms that we can use to transform the data. + std::vector transformIds; + /// This is the information needed to support a specific output format - struct FormatTemplate { + class Format { + public: + Format(); + /// + void readFormat(Lexer &); + /// The text that should be inserted into the exported file - string product; - /// The shell command to produce a resulting file - string updateCommand; + std::string product; + /// The filename of the resulting file + std::string updateResult; + /// The format of this file. + std::string updateFormat; /// What features does this external inset require? - string requirement; - /// What should be inserted into the preamble - string preamble; - /// - void readFormat(LyXLex &); - /// This constructor has to default a command for safety reasons! - FormatTemplate(); - }; - void readTemplate(LyXLex &); - - typedef std::map Formats; + std::vector requirements; + /// A collection of preamble snippets identified by name. + std::vector preambleNames; + /// A list of options to the basic command. + std::vector