2003-08-04 10:26:10 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 10:04:35 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file tex2lyx.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-08-19 10:04:35 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2003-04-17 15:05:17 +00:00
|
|
|
|
#ifndef TEX2LYX_H
|
|
|
|
|
#define TEX2LYX_H
|
|
|
|
|
|
|
|
|
|
#include "texparser.h"
|
2003-07-28 21:58:09 +00:00
|
|
|
|
#include "lyxtextclass.h"
|
2003-04-17 15:05:17 +00:00
|
|
|
|
|
|
|
|
|
#include <iosfwd>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
2003-11-19 10:35:50 +00:00
|
|
|
|
#include <map>
|
2003-04-17 15:05:17 +00:00
|
|
|
|
|
2003-08-04 10:26:10 +00:00
|
|
|
|
class Context;
|
2003-04-17 15:05:17 +00:00
|
|
|
|
|
2003-08-04 10:26:10 +00:00
|
|
|
|
/// in preamble.C
|
2003-10-23 11:46:33 +00:00
|
|
|
|
LyXTextClass const parse_preamble(Parser & p, std::ostream & os, std::string const & forceclass);
|
2003-04-17 15:05:17 +00:00
|
|
|
|
|
2004-08-10 09:40:53 +00:00
|
|
|
|
/// used packages with options
|
|
|
|
|
extern std::map<std::string, std::vector<std::string> > used_packages;
|
|
|
|
|
|
2003-08-04 10:26:10 +00:00
|
|
|
|
|
|
|
|
|
/// in text.C
|
2003-07-28 21:58:09 +00:00
|
|
|
|
void parse_text(Parser & p, std::ostream & os, unsigned flags, bool outer,
|
2003-08-04 10:26:10 +00:00
|
|
|
|
Context & context);
|
|
|
|
|
|
|
|
|
|
//std::string parse_text(Parser & p, unsigned flags, const bool outer,
|
|
|
|
|
// Context & context);
|
2003-07-28 21:58:09 +00:00
|
|
|
|
|
2004-06-18 06:47:19 +00:00
|
|
|
|
/// parses a subdocument, usually useful in insets (whence the name)
|
2003-09-09 18:27:24 +00:00
|
|
|
|
void parse_text_in_inset(Parser & p, std::ostream & os, unsigned flags,
|
2003-08-04 10:26:10 +00:00
|
|
|
|
bool outer, Context & context);
|
2003-04-17 15:05:17 +00:00
|
|
|
|
|
|
|
|
|
|
2003-08-04 10:26:10 +00:00
|
|
|
|
/// in math.C
|
2003-04-17 15:05:17 +00:00
|
|
|
|
void parse_math(Parser & p, std::ostream & os, unsigned flags, mode_type mode);
|
|
|
|
|
|
|
|
|
|
|
2003-08-04 10:26:10 +00:00
|
|
|
|
/// in table.C
|
|
|
|
|
void handle_tabular(Parser & p, std::ostream & os, Context & context);
|
|
|
|
|
|
2003-04-17 15:05:17 +00:00
|
|
|
|
|
2003-08-04 10:26:10 +00:00
|
|
|
|
/// in tex2lyx.C
|
2003-04-17 15:05:17 +00:00
|
|
|
|
std::string const trim(std::string const & a, char const * p = " \t\n\r");
|
|
|
|
|
|
2003-06-30 11:36:08 +00:00
|
|
|
|
void split(std::string const & s, std::vector<std::string> & result,
|
|
|
|
|
char delim = ',');
|
|
|
|
|
std::string join(std::vector<std::string> const & input,
|
|
|
|
|
char const * delim);
|
2003-04-17 15:05:17 +00:00
|
|
|
|
|
|
|
|
|
bool is_math_env(std::string const & name);
|
2004-06-28 06:53:12 +00:00
|
|
|
|
char const * const * is_known(std::string const &, char const * const *);
|
2003-04-17 15:05:17 +00:00
|
|
|
|
|
|
|
|
|
// Access to environment stack
|
2003-04-23 15:14:43 +00:00
|
|
|
|
extern std::vector<std::string> active_environments;
|
|
|
|
|
std::string active_environment();
|
2003-04-17 15:05:17 +00:00
|
|
|
|
|
2003-11-19 10:35:50 +00:00
|
|
|
|
enum ArgumentType {
|
|
|
|
|
required,
|
|
|
|
|
verbatim,
|
|
|
|
|
optional
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// Known TeX commands with arguments that get parsed into ERT.
|
|
|
|
|
extern std::map<std::string, std::vector<ArgumentType> > known_commands;
|
|
|
|
|
|
2004-07-29 17:03:37 +00:00
|
|
|
|
|
|
|
|
|
/// path of the master .tex file
|
|
|
|
|
extern std::string getMasterFilePath();
|
|
|
|
|
|
|
|
|
|
|
2003-10-23 11:46:33 +00:00
|
|
|
|
/*! Reads tex input from \a is and writes lyx output to \a os.
|
|
|
|
|
* Uses some common settings for the preamble, so this should only
|
|
|
|
|
* be used more than once for included documents.
|
|
|
|
|
* Caution: Overwrites the existing preamble settings if the new document
|
|
|
|
|
* contains a preamble. */
|
|
|
|
|
void tex2lyx(std::istream &, std::ostream &);
|
|
|
|
|
/// \return true if the conversion was successful, else false.
|
|
|
|
|
bool tex2lyx(std::string const &, std::string const &);
|
|
|
|
|
|
2003-04-17 15:05:17 +00:00
|
|
|
|
#endif
|