X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FExternalTemplate.h;h=45f1b348ff66f8307acbdd83a497247de8876d42;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=4259652ae7973a6c96bf9967e5c36bff41fbd53e;hpb=10cccff7c00abac8dfd1190e17ed349c4d55cee9;p=lyx.git diff --git a/src/insets/ExternalTemplate.h b/src/insets/ExternalTemplate.h index 4259652ae7..45f1b348ff 100644 --- a/src/insets/ExternalTemplate.h +++ b/src/insets/ExternalTemplate.h @@ -5,6 +5,7 @@ * 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. */ @@ -12,19 +13,18 @@ #ifndef EXTERNALTEMPLATE_H #define EXTERNALTEMPLATE_H +#include "ExternalTransforms.h" + #include -#include -#include -#include -#include +namespace lyx { class LyXLex; -namespace lyx { namespace external { -struct Template { +class Template { +public: /// We have to have default commands for safety reasons! Template(); /// @@ -32,6 +32,14 @@ struct Template { /// void dumpFormats(std::ostream &) const; + class Option { + public: + Option(std::string const & name_, std::string const & opt_) + : name(name_), option(opt_) {} + std::string name; + std::string option; + }; + /// What is the name of this template in the LyX format? std::string lyxName; /// What will the button in the GUI say? @@ -44,13 +52,14 @@ struct Template { std::string inputFormat; /// A file extension regular expression for the file browser std::string fileRegExp; - /// What command should be executed to edit the file? - std::string editCommand; /// Should we do automatic production of the output? bool automaticProduction; + /// 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 Format { + class Format { + public: Format(); /// void readFormat(LyXLex &); @@ -62,9 +71,20 @@ struct Template { /// The format of this file. std::string updateFormat; /// What features does this external inset require? - std::string requirement; + std::vector requirements; /// A collection of preamble snippets identified by name. std::vector preambleNames; + /// A list of options to the basic command. + std::vector