X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FExternalTemplate.h;h=4392870057d3969c20d8729edf336b205575d312;hb=dbb1ac30e9a87007af7c53f0f93ec9e21826f90b;hp=23667f4cc2fcabd6cbd3816b3825740cd588e217;hpb=8c96de553bc0850495e2e29469aa585ff95d3e0a;p=lyx.git diff --git a/src/insets/ExternalTemplate.h b/src/insets/ExternalTemplate.h index 23667f4cc2..4392870057 100644 --- a/src/insets/ExternalTemplate.h +++ b/src/insets/ExternalTemplate.h @@ -15,27 +15,35 @@ #include "ExternalTransforms.h" -#include +#include -#include -#include -#include #include -class LyXLex; - namespace lyx { + +namespace support { class FileName; } + +class Lexer; + +enum PreviewMode { + PREVIEW_OFF = 0, + PREVIEW_GRAPHICS, + PREVIEW_INSTANT +}; + namespace external { -struct Template { +class Template { +public: /// We have to have default commands for safety reasons! Template(); /// - void readTemplate(LyXLex &); + void readTemplate(Lexer &); /// void dumpFormats(std::ostream &) const; - struct Option { + class Option { + public: Option(std::string const & name_, std::string const & opt_) : name(name_), option(opt_) {} std::string name; @@ -54,18 +62,19 @@ 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; + /// 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 Format { + class Format { + public: Format(); /// - void readFormat(LyXLex &); + void readFormat(Lexer &); /// The text that should be inserted into the exported file std::string product; @@ -74,7 +83,7 @@ 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. @@ -83,6 +92,11 @@ struct Template { /// The factory functions for each supported transformation. std::map command_transformers; std::map option_transformers; + + typedef std::map > FileMap; + /// Referenced files for some formats + FileMap referencedFiles; }; /// typedef std::map Formats; @@ -90,8 +104,6 @@ struct Template { Formats formats; }; -#include "ExternalTransforms.h" - /** * A singleton class that manages the external inset templates */ @@ -117,7 +129,7 @@ public: std::string const getPreambleDefByName(std::string const & name) const; private: TemplateManager(); - void readTemplates(std::string const & path); + void readTemplates(support::FileName const & path); void dumpTemplates(std::ostream &) const; void dumpPreambleDefs(std::ostream &) const;