X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FExternalTemplate.h;h=4392870057d3969c20d8729edf336b205575d312;hb=dbb1ac30e9a87007af7c53f0f93ec9e21826f90b;hp=314ca06e6e94dbcd69fc70b518a5c84f1400ebb4;hpb=d4e8fdd7039b087a26bd1e15c35d3865a0093879;p=lyx.git diff --git a/src/insets/ExternalTemplate.h b/src/insets/ExternalTemplate.h index 314ca06e6e..4392870057 100644 --- a/src/insets/ExternalTemplate.h +++ b/src/insets/ExternalTemplate.h @@ -15,13 +15,21 @@ #include "ExternalTransforms.h" -#include +#include + +#include namespace lyx { namespace support { class FileName; } -class LyXLex; +class Lexer; + +enum PreviewMode { + PREVIEW_OFF = 0, + PREVIEW_GRAPHICS, + PREVIEW_INSTANT +}; namespace external { @@ -30,7 +38,7 @@ public: /// We have to have default commands for safety reasons! Template(); /// - void readTemplate(LyXLex &); + void readTemplate(Lexer &); /// void dumpFormats(std::ostream &) const; @@ -56,6 +64,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 transformIds; @@ -64,7 +74,7 @@ public: public: Format(); /// - void readFormat(LyXLex &); + void readFormat(Lexer &); /// The text that should be inserted into the exported file std::string product;