X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FExternalTemplate.h;h=a585cd1ce9bfcd06cce24f3801b8f18db83a1276;hb=6ce86e2bfe0a403e0e811b66fdddb2d56cfe0f83;hp=9b5566cb283091712f6506f5c0a21f3e195589cb;hpb=6bba977f42b0cde753ac2ffd26f3f9c6b32ba0b6;p=lyx.git diff --git a/src/insets/ExternalTemplate.h b/src/insets/ExternalTemplate.h index 9b5566cb28..a585cd1ce9 100644 --- a/src/insets/ExternalTemplate.h +++ b/src/insets/ExternalTemplate.h @@ -1,27 +1,26 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file ExternalTemplate.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * \author Asger Alstrup Nielsen * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef EXTERNALTEMPLATE_H #define EXTERNALTEMPLATE_H -#ifdef __GNUG__ -#pragma interface -#endif #include #include #include "LString.h" +#include class LyXLex; +/// struct ExternalTemplate { /// What is the name of this template in the LyX format? string lyxName; @@ -43,6 +42,8 @@ struct ExternalTemplate { string product; /// The shell command to produce a resulting file string updateCommand; + /// The filename of the resulting file + string updateResult; /// What features does this external inset require? string requirement; /// What should be inserted into the preamble @@ -52,23 +53,25 @@ struct ExternalTemplate { /// This constructor has to default a command for safety reasons! FormatTemplate(); }; + /// void readTemplate(LyXLex &); - + /// typedef std::map Formats; - + /// Formats formats; - + /// void dumpFormats(std::ostream &) const; - + /// We have to have default commands for safety reasons! ExternalTemplate(); - + }; + /** - * A singleton class that manages the external inset templates - */ -class ExternalTemplateManager { + A singleton class that manages the external inset templates +*/ +class ExternalTemplateManager : boost::noncopyable { public: /// Map from the LyX name of the template to the template structure typedef std::map Templates; @@ -76,6 +79,8 @@ public: static ExternalTemplateManager & get(); Templates & getTemplates(); Templates const & getTemplates() const; + /// return the template by LyX name + ExternalTemplate const & getTemplateByName(const string & name); private: ExternalTemplateManager(); void readTemplates(string const & path); @@ -84,4 +89,3 @@ private: }; #endif -