]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / ExternalTemplate.h
index 0d1f29dc48e6e64d2cb78e60656f3d79538d25aa..151c26221fd84999c75a049ce85c3f03f8284f1e 100644 (file)
@@ -12,9 +12,6 @@
 #ifndef EXTERNALTEMPLATE_H
 #define EXTERNALTEMPLATE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include <iosfwd>
 #include <map>
@@ -31,10 +28,12 @@ struct ExternalTemplate {
        string guiName;
        /// A short help text
        string helpText;
+       /** The format of the input file. Can be "*", in which case we try and
+           ascertain the format from the contents of the file.
+       */
+       string inputFormat;
        /// A file extension regular expression for the file browser
        string fileRegExp;
-       /// What command should be executed to view the file?
-       string viewCommand;
        /// What command should be executed to edit the file?
        string editCommand;
        /// Should we do automatic production of the output?
@@ -43,10 +42,10 @@ struct ExternalTemplate {
        struct FormatTemplate {
                /// The text that should be inserted into the exported file
                string product;
-               /// The shell command to produce a resulting file
-               string updateCommand;
                /// The filename of the resulting file
                string updateResult;
+               /// The format of this file.
+               string updateFormat;
                /// What features does this external inset require?
                string requirement;
                /// What should be inserted into the preamble
@@ -67,7 +66,6 @@ struct ExternalTemplate {
 
        /// We have to have default commands for safety reasons!
        ExternalTemplate();
-
 };