]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / ExternalTemplate.h
index a585cd1ce9bfcd06cce24f3801b8f18db83a1276..6617dcba003debf67f4ddce5372c85ab16fef54b 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Asger Alstrup Nielsen
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef EXTERNALTEMPLATE_H
@@ -28,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?
@@ -40,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
@@ -64,7 +66,6 @@ struct ExternalTemplate {
 
        /// We have to have default commands for safety reasons!
        ExternalTemplate();
-
 };
 
 
@@ -80,7 +81,7 @@ public:
        Templates & getTemplates();
        Templates const & getTemplates() const;
        /// return the template by LyX name
-       ExternalTemplate const & getTemplateByName(const string & name);
+       ExternalTemplate const & getTemplateByName(string const & name);
 private:
        ExternalTemplateManager();
        void readTemplates(string const & path);