]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
Embedding: display a pin at the top left corner of embedded figures
[lyx.git] / src / insets / ExternalTemplate.h
index e7ad1521451c1997ca95d07d05cdaf0d5262c6b1..7afc65715ba7ad5cd75e15ffac56053f42d23382 100644 (file)
 
 #include "ExternalTransforms.h"
 
-#include <boost/utility.hpp>
-
-class LyXLex;
+#include <boost/noncopyable.hpp>
 
 namespace lyx {
+
+namespace support { class FileName; }
+
+class Lexer;
+
 namespace external {
 
 class Template {
@@ -27,7 +30,7 @@ public:
        /// We have to have default commands for safety reasons!
        Template();
        ///
-       void readTemplate(LyXLex &);
+       void readTemplate(Lexer &);
        ///
        void dumpFormats(std::ostream &) const;
 
@@ -61,7 +64,7 @@ public:
        public:
                Format();
                ///
-               void readFormat(LyXLex &);
+               void readFormat(Lexer &);
 
                /// The text that should be inserted into the exported file
                std::string product;
@@ -70,7 +73,7 @@ public:
                /// 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.
@@ -81,7 +84,7 @@ public:
                std::map<TransformID, TransformStore> option_transformers;
 
                typedef std::map<std::string,
-                                std::vector<std::string> > FileMap;
+                                std::vector<std::string> > FileMap;
                /// Referenced files for some formats
                FileMap referencedFiles;
        };
@@ -116,7 +119,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;