]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / ExternalTemplate.h
index 23667f4cc2fcabd6cbd3816b3825740cd588e217..45f1b348ff66f8307acbdd83a497247de8876d42 100644 (file)
 
 #include <boost/utility.hpp>
 
-#include <iosfwd>
-#include <map>
-#include <string>
-#include <vector>
+namespace lyx {
 
 class LyXLex;
 
-namespace lyx {
 namespace external {
 
-struct Template {
+class Template {
+public:
        /// We have to have default commands for safety reasons!
        Template();
        ///
@@ -35,7 +32,8 @@ struct Template {
        ///
        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,15 +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<TransformID> transformIds;
 
        /// This is the information needed to support a specific output format
-       struct Format {
+       class Format {
+       public:
                Format();
                ///
                void readFormat(LyXLex &);
@@ -74,7 +71,7 @@ struct Template {
                /// The format of this file.
                std::string updateFormat;
                /// What features does this external inset require?
-               std::string requirement;
+               std::vector<std::string> requirements;
                /// A collection of preamble snippets identified by name.
                std::vector<std::string> preambleNames;
                /// A list of options to the basic command.
@@ -83,6 +80,11 @@ struct Template {
                /// The factory functions for each supported transformation.
                std::map<TransformID, TransformStore> command_transformers;
                std::map<TransformID, TransformStore> option_transformers;
+
+               typedef std::map<std::string,
+                                std::vector<std::string> > FileMap;
+               /// Referenced files for some formats
+               FileMap referencedFiles;
        };
        ///
        typedef std::map<std::string, Format> Formats;
@@ -90,8 +92,6 @@ struct Template {
        Formats formats;
 };
 
-#include "ExternalTransforms.h"
-
 /**
  *  A singleton class that manages the external inset templates
  */