2000-06-12 11:27:15 +00:00
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
/**
|
|
|
|
* \file ExternalTemplate.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2000-06-12 11:27:15 +00:00
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
* \author Asger Alstrup Nielsen
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-25 14:26:13 +00:00
|
|
|
*/
|
2000-06-12 11:27:15 +00:00
|
|
|
|
|
|
|
#ifndef EXTERNALTEMPLATE_H
|
|
|
|
#define EXTERNALTEMPLATE_H
|
|
|
|
|
2003-10-01 10:16:00 +00:00
|
|
|
#include <boost/function.hpp>
|
2000-10-02 00:55:02 +00:00
|
|
|
#include <boost/utility.hpp>
|
2003-10-06 15:43:21 +00:00
|
|
|
|
2003-09-25 10:49:13 +00:00
|
|
|
#include <iosfwd>
|
|
|
|
#include <map>
|
2003-09-23 17:04:25 +00:00
|
|
|
#include <vector>
|
2000-06-12 11:27:15 +00:00
|
|
|
|
|
|
|
class LyXLex;
|
|
|
|
|
2003-10-01 10:16:00 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace external {
|
2003-09-25 10:49:13 +00:00
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2003-10-01 10:16:00 +00:00
|
|
|
struct Template {
|
|
|
|
/// We have to have default commands for safety reasons!
|
|
|
|
Template();
|
|
|
|
///
|
|
|
|
void readTemplate(LyXLex &);
|
|
|
|
///
|
|
|
|
void dumpFormats(std::ostream &) const;
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
/// What is the name of this template in the LyX format?
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string lyxName;
|
2000-06-12 11:27:15 +00:00
|
|
|
/// What will the button in the GUI say?
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string guiName;
|
2000-06-12 11:27:15 +00:00
|
|
|
/// A short help text
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string helpText;
|
2003-06-04 09:16:29 +00:00
|
|
|
/** The format of the input file. Can be "*", in which case we try and
|
2003-10-01 10:16:00 +00:00
|
|
|
* ascertain the format from the contents of the file.
|
|
|
|
*/
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string inputFormat;
|
2000-06-12 11:27:15 +00:00
|
|
|
/// A file extension regular expression for the file browser
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string fileRegExp;
|
2000-06-12 11:27:15 +00:00
|
|
|
/// What command should be executed to edit the file?
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string editCommand;
|
2000-06-12 11:27:15 +00:00
|
|
|
/// Should we do automatic production of the output?
|
|
|
|
bool automaticProduction;
|
2003-10-01 10:16:00 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
/// This is the information needed to support a specific output format
|
2003-10-01 10:16:00 +00:00
|
|
|
struct Format {
|
|
|
|
/// This constructor has to default a command for safety reasons!
|
|
|
|
Format();
|
|
|
|
///
|
|
|
|
void readFormat(LyXLex &);
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
/// The text that should be inserted into the exported file
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string product;
|
2001-11-02 16:18:07 +00:00
|
|
|
/// The filename of the resulting file
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string updateResult;
|
2003-06-04 09:16:29 +00:00
|
|
|
/// The format of this file.
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string updateFormat;
|
2000-06-12 11:27:15 +00:00
|
|
|
/// What features does this external inset require?
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string requirement;
|
2003-09-23 17:04:25 +00:00
|
|
|
/// A collection of preamble snippets identified by name.
|
2003-10-06 15:43:21 +00:00
|
|
|
std::vector<std::string> preambleNames;
|
2000-06-12 11:27:15 +00:00
|
|
|
};
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
typedef std::map<std::string, Format> Formats;
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
Formats formats;
|
|
|
|
};
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
/**
|
2000-08-07 20:58:24 +00:00
|
|
|
A singleton class that manages the external inset templates
|
|
|
|
*/
|
2003-10-01 10:16:00 +00:00
|
|
|
class TemplateManager : boost::noncopyable {
|
2000-06-12 11:27:15 +00:00
|
|
|
public:
|
|
|
|
/// Map from the LyX name of the template to the template structure
|
2003-10-06 15:43:21 +00:00
|
|
|
typedef std::map<std::string, Template> Templates;
|
2003-09-04 17:01:00 +00:00
|
|
|
/** Map from the LyX name of the preamble definition to the preamble
|
|
|
|
* definition itself.
|
|
|
|
*/
|
2003-10-06 15:43:21 +00:00
|
|
|
typedef std::map<std::string, std::string> PreambleDefs;
|
2001-03-12 11:22:26 +00:00
|
|
|
|
2003-10-01 10:16:00 +00:00
|
|
|
static TemplateManager & get();
|
2000-06-12 11:27:15 +00:00
|
|
|
Templates & getTemplates();
|
|
|
|
Templates const & getTemplates() const;
|
2003-09-25 10:49:13 +00:00
|
|
|
/** return the template by LyX name.
|
|
|
|
* If it isn't found, return 0.
|
|
|
|
*/
|
2003-10-06 15:43:21 +00:00
|
|
|
Template const * getTemplateByName(std::string const & name) const;
|
2003-09-25 10:49:13 +00:00
|
|
|
/** return the preamble definition by LyX name.
|
2003-10-06 15:43:21 +00:00
|
|
|
* If it isn't found, return an empty std::string.
|
2003-09-25 10:49:13 +00:00
|
|
|
*/
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const getPreambleDefByName(std::string const & name) const;
|
2000-06-12 11:27:15 +00:00
|
|
|
private:
|
2003-10-01 10:16:00 +00:00
|
|
|
TemplateManager();
|
2003-10-06 15:43:21 +00:00
|
|
|
void readTemplates(std::string const & path);
|
2003-09-04 17:01:00 +00:00
|
|
|
void dumpTemplates(std::ostream &) const;
|
|
|
|
void dumpPreambleDefs(std::ostream &) const;
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
Templates templates;
|
2003-09-04 17:01:00 +00:00
|
|
|
PreambleDefs preambledefs;
|
2000-06-12 11:27:15 +00:00
|
|
|
};
|
|
|
|
|
2003-10-01 10:16:00 +00:00
|
|
|
} // namespace external
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif // EXTERNALTEMPLATE_H
|