]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
Graphics cleanup: get rid of Previews.{h,cpp}
[lyx.git] / src / insets / ExternalTemplate.h
index 99cededd1275575c552506f499d4bc78949abe4b..23f1f78802ffb9d98d7977ac36a10fce38e41ad1 100644 (file)
 
 #include "ExternalTransforms.h"
 
-#include <boost/utility.hpp>
-
-class LyXLex;
+#include <boost/noncopyable.hpp>
 
 namespace lyx {
+
+namespace support { class FileName; }
+
+class Lexer;
+
+enum PreviewMode {
+       PREVIEW_OFF = 0,
+       PREVIEW_GRAPHICS,
+       PREVIEW_INSTANT
+};
+
 namespace external {
 
 class Template {
@@ -27,7 +36,7 @@ public:
        /// We have to have default commands for safety reasons!
        Template();
        ///
-       void readTemplate(LyXLex &);
+       void readTemplate(Lexer &);
        ///
        void dumpFormats(std::ostream &) const;
 
@@ -53,6 +62,8 @@ public:
        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<TransformID> transformIds;
 
@@ -61,7 +72,7 @@ public:
        public:
                Format();
                ///
-               void readFormat(LyXLex &);
+               void readFormat(Lexer &);
 
                /// The text that should be inserted into the exported file
                std::string product;
@@ -81,7 +92,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 +127,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;