2000-07-04 20:32:37 +00:00
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
/**
|
2007-04-26 04:41:58 +00:00
|
|
|
* \file Encoding.h
|
2003-08-23 00:17:00 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
2003-08-23 00:17:00 +00:00
|
|
|
* \author Jean-Marc Lasgouttes
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
2000-07-04 20:32:37 +00:00
|
|
|
|
|
|
|
#ifndef ENCODING_H
|
|
|
|
#define ENCODING_H
|
|
|
|
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
#include "support/docstring.h"
|
2014-12-07 17:26:44 +00:00
|
|
|
#include "support/trivstring.h"
|
2007-12-18 17:51:20 +00:00
|
|
|
#include "support/types.h"
|
2003-10-06 15:43:21 +00:00
|
|
|
|
2007-01-29 08:18:21 +00:00
|
|
|
#include <map>
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
#include <set>
|
2008-03-21 21:08:57 +00:00
|
|
|
#include <vector>
|
2003-07-26 23:04:39 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
namespace support { class FileName; }
|
|
|
|
|
2007-12-18 17:51:20 +00:00
|
|
|
class EncodingException : public std::exception {
|
|
|
|
public:
|
|
|
|
EncodingException(char_type c);
|
|
|
|
virtual ~EncodingException() throw() {}
|
|
|
|
virtual const char * what() const throw();
|
2014-12-07 17:26:44 +00:00
|
|
|
|
2007-12-18 17:51:20 +00:00
|
|
|
char_type failed_char;
|
|
|
|
int par_id;
|
|
|
|
pos_type pos;
|
|
|
|
};
|
|
|
|
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
|
2013-09-29 12:27:48 +00:00
|
|
|
enum CharInfoFlags {
|
|
|
|
///
|
|
|
|
CharInfoCombining = 1,
|
|
|
|
///
|
|
|
|
CharInfoTextFeature = 2,
|
|
|
|
///
|
|
|
|
CharInfoMathFeature = 4,
|
|
|
|
///
|
|
|
|
CharInfoForce = 8,
|
|
|
|
///
|
|
|
|
CharInfoTextNoTermination = 16,
|
|
|
|
///
|
|
|
|
CharInfoMathNoTermination = 32,
|
|
|
|
///
|
|
|
|
CharInfoForceSelected = 64,
|
2016-01-08 20:06:24 +00:00
|
|
|
///
|
|
|
|
CharInfoDeprecated = 128
|
2013-09-29 12:27:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/// Information about a single UCS4 character
|
|
|
|
class CharInfo {
|
|
|
|
public:
|
2014-05-24 14:02:31 +00:00
|
|
|
CharInfo() : flags_(0) {}
|
2013-09-29 13:07:22 +00:00
|
|
|
CharInfo(
|
2014-07-05 17:13:10 +00:00
|
|
|
docstring const & textcommand, docstring const & mathcommand,
|
|
|
|
std::string const & textpreamble, std::string const & mathpreamble,
|
|
|
|
std::string const & tipashortcut, unsigned int flags);
|
2013-08-23 05:46:35 +00:00
|
|
|
// we assume that at least one command is nonempty when using unicodesymbols
|
2013-09-29 13:07:22 +00:00
|
|
|
bool isUnicodeSymbol() const { return !textcommand_.empty() || !mathcommand_.empty(); }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// LaTeX command (text mode) for this character
|
2013-09-29 13:07:22 +00:00
|
|
|
docstring const textcommand() const { return textcommand_; }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// LaTeX command (math mode) for this character
|
2013-09-29 13:07:22 +00:00
|
|
|
docstring mathcommand() const { return mathcommand_; }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// Needed LaTeX preamble (or feature) for text mode
|
2013-09-29 13:07:22 +00:00
|
|
|
std::string textpreamble() const { return textpreamble_; }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// Needed LaTeX preamble (or feature) for math mode
|
2013-09-29 13:07:22 +00:00
|
|
|
std::string mathpreamble() const { return mathpreamble_; }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// Is this a combining character?
|
2013-09-29 13:07:22 +00:00
|
|
|
bool combining() const { return flags_ & CharInfoCombining ? true : false; }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// Is \c textpreamble a feature known by LaTeXFeatures, or a raw LaTeX
|
|
|
|
/// command?
|
2013-09-29 13:07:22 +00:00
|
|
|
bool textfeature() const { return flags_ & CharInfoTextFeature ? true : false; }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// Is \c mathpreamble a feature known by LaTeXFeatures, or a raw LaTeX
|
|
|
|
/// command?
|
2013-09-29 13:07:22 +00:00
|
|
|
bool mathfeature() const { return flags_ & CharInfoMathFeature ? true : false; }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// Always force the LaTeX command, even if the encoding contains
|
|
|
|
/// this character?
|
2013-09-29 13:07:22 +00:00
|
|
|
bool force() const { return flags_ & CharInfoForce ? true : false; }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// Force the LaTeX command for some encodings?
|
2013-09-29 13:07:22 +00:00
|
|
|
bool forceselected() const { return flags_ & CharInfoForceSelected ? true : false; }
|
2016-01-08 20:06:24 +00:00
|
|
|
/// Disable LaTeX command => char_type conversion for this deprecated symbol?
|
|
|
|
bool deprecated() const { return flags_ & CharInfoDeprecated ? true : false; }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// TIPA shortcut
|
2013-09-29 13:07:22 +00:00
|
|
|
std::string const tipashortcut() const { return tipashortcut_; }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// \c textcommand needs no termination (such as {} or space).
|
2013-09-29 13:07:22 +00:00
|
|
|
bool textnotermination() const { return flags_ & CharInfoTextNoTermination ? true : false; }
|
2013-09-29 12:27:48 +00:00
|
|
|
/// \c mathcommand needs no termination (such as {} or space).
|
2013-09-29 13:07:22 +00:00
|
|
|
bool mathnotermination() const { return flags_ & CharInfoMathNoTermination ? true : false; }
|
2013-09-29 12:27:48 +00:00
|
|
|
///
|
2013-09-29 13:07:22 +00:00
|
|
|
private:
|
|
|
|
/// LaTeX command (text mode) for this character
|
2014-12-07 17:26:44 +00:00
|
|
|
trivdocstring textcommand_;
|
2013-09-29 13:07:22 +00:00
|
|
|
/// LaTeX command (math mode) for this character
|
2014-12-07 17:26:44 +00:00
|
|
|
trivdocstring mathcommand_;
|
2013-09-29 13:07:22 +00:00
|
|
|
/// Needed LaTeX preamble (or feature) for text mode
|
2014-12-07 17:26:44 +00:00
|
|
|
trivstring textpreamble_;
|
2013-09-29 13:07:22 +00:00
|
|
|
/// Needed LaTeX preamble (or feature) for math mode
|
2014-12-07 17:26:44 +00:00
|
|
|
trivstring mathpreamble_;
|
2013-09-29 13:07:22 +00:00
|
|
|
/// TIPA shortcut
|
2014-12-07 17:26:44 +00:00
|
|
|
trivstring tipashortcut_;
|
2013-09-29 13:07:22 +00:00
|
|
|
/// feature flags
|
|
|
|
unsigned int flags_;
|
2013-09-29 12:27:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-12-08 21:25:40 +00:00
|
|
|
/**
|
|
|
|
* An encoding as defined in lib/encodings.
|
|
|
|
* All const methods are thread-safe, so the caller does not need any locking.
|
|
|
|
* This property must be kept when changing the class.
|
|
|
|
*/
|
2000-07-04 20:32:37 +00:00
|
|
|
class Encoding {
|
|
|
|
public:
|
2007-05-06 20:26:02 +00:00
|
|
|
/// Which LaTeX package handles this encoding?
|
|
|
|
enum Package {
|
2013-01-19 18:47:15 +00:00
|
|
|
none = 1,
|
|
|
|
inputenc = 2,
|
|
|
|
CJK = 4,
|
|
|
|
japanese = 8
|
2007-05-06 20:26:02 +00:00
|
|
|
};
|
2013-01-19 18:47:15 +00:00
|
|
|
/// Represent any of the above packages
|
2013-01-26 05:10:44 +00:00
|
|
|
static int const any;
|
2000-10-10 12:36:36 +00:00
|
|
|
///
|
2016-06-12 03:39:45 +00:00
|
|
|
Encoding() : fixedwidth_(true), unsafe_(false), forced_(0),
|
|
|
|
start_encodable_(0), package_(none), complete_(false) {}
|
2000-10-10 12:36:36 +00:00
|
|
|
///
|
2006-10-26 15:01:45 +00:00
|
|
|
Encoding(std::string const & n, std::string const & l,
|
2008-07-11 08:56:17 +00:00
|
|
|
std::string const & g, std::string const & i,
|
2012-12-30 19:39:33 +00:00
|
|
|
bool f, bool u, Package p);
|
2007-05-06 20:26:02 +00:00
|
|
|
///
|
|
|
|
void init() const;
|
2000-10-10 12:36:36 +00:00
|
|
|
///
|
2014-12-07 17:26:44 +00:00
|
|
|
std::string const name() const { return name_; }
|
2000-10-10 12:36:36 +00:00
|
|
|
///
|
2014-12-07 17:26:44 +00:00
|
|
|
std::string const latexName() const { return latexName_; }
|
2000-10-10 12:36:36 +00:00
|
|
|
///
|
2014-12-07 17:26:44 +00:00
|
|
|
std::string const guiName() const { return guiName_; }
|
2008-07-11 08:56:17 +00:00
|
|
|
///
|
2014-12-07 17:26:44 +00:00
|
|
|
std::string const iconvName() const { return iconvName_; }
|
2008-07-20 17:14:10 +00:00
|
|
|
///
|
2012-12-30 19:39:33 +00:00
|
|
|
bool hasFixedWidth() const { return fixedwidth_; }
|
|
|
|
///
|
|
|
|
bool unsafe() const { return unsafe_; }
|
2012-03-25 13:36:00 +00:00
|
|
|
/// \p c is representable in this encoding without a LaTeX macro
|
|
|
|
bool encodable(char_type c) const;
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
/**
|
|
|
|
* Convert \p c to something that LaTeX can understand.
|
|
|
|
* This is either the character itself (if it is representable
|
2008-06-02 01:35:42 +00:00
|
|
|
* in this encoding), or a LaTeX macro.
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
* If the character is not representable in this encoding, but no
|
|
|
|
* LaTeX macro is known, a warning is given of lyxerr, and the
|
|
|
|
* character is returned.
|
2012-03-25 13:36:00 +00:00
|
|
|
* \return the converted character and a flag indicating whether
|
|
|
|
* the command needs to be terminated by {} or a space.
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
*/
|
2012-03-25 13:36:00 +00:00
|
|
|
std::pair<docstring, bool> latexChar(char_type c) const;
|
2012-06-30 11:30:48 +00:00
|
|
|
/**
|
|
|
|
* Convert \p input to something that LaTeX can understand.
|
|
|
|
* This is either the string itself (if it is representable
|
|
|
|
* in this encoding), or a LaTeX macro.
|
|
|
|
* If a character is not representable in this encoding, but no
|
|
|
|
* LaTeX macro is known, a warning is given of lyxerr, and the
|
|
|
|
* character is returned in the second string of the pair and
|
|
|
|
* omitted in the first.
|
|
|
|
* \p dryrun specifies whether the string is used within source
|
|
|
|
* preview (which yields a special warning).
|
|
|
|
*/
|
2014-07-05 17:13:10 +00:00
|
|
|
std::pair<docstring, docstring> latexString(docstring const & input,
|
2012-06-30 11:30:48 +00:00
|
|
|
bool dryrun = false) const;
|
2007-05-06 20:26:02 +00:00
|
|
|
/// Which LaTeX package handles this encoding?
|
|
|
|
Package package() const { return package_; }
|
2008-02-07 13:18:07 +00:00
|
|
|
/// A list of all characters usable in this encoding
|
2008-03-21 21:08:57 +00:00
|
|
|
std::vector<char_type> symbolsList() const;
|
2000-10-10 12:36:36 +00:00
|
|
|
private:
|
2013-01-12 18:25:24 +00:00
|
|
|
/**
|
|
|
|
* Do we have to output this character as LaTeX command in any case?
|
|
|
|
* This is true if the "force" flag is set.
|
|
|
|
* We need this if the inputencoding does not support a certain glyph.
|
|
|
|
*/
|
|
|
|
bool isForced(char_type c) const;
|
2000-10-10 12:36:36 +00:00
|
|
|
///
|
2014-12-07 17:26:44 +00:00
|
|
|
trivstring name_;
|
2000-10-10 12:36:36 +00:00
|
|
|
///
|
2014-12-07 17:26:44 +00:00
|
|
|
trivstring latexName_;
|
2000-10-10 12:36:36 +00:00
|
|
|
///
|
2014-12-07 17:26:44 +00:00
|
|
|
trivstring guiName_;
|
2008-07-11 08:56:17 +00:00
|
|
|
///
|
2014-12-07 17:26:44 +00:00
|
|
|
trivstring iconvName_;
|
2007-05-06 20:26:02 +00:00
|
|
|
/// Is this a fixed width encoding?
|
|
|
|
bool fixedwidth_;
|
2012-12-30 19:39:33 +00:00
|
|
|
/// Is this encoding TeX unsafe, e.g. control characters like {, }
|
|
|
|
/// and \\ may appear in high bytes?
|
|
|
|
bool unsafe_;
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
///
|
|
|
|
typedef std::set<char_type> CharSet;
|
|
|
|
/// Set of UCS4 characters that we can encode (for singlebyte
|
|
|
|
/// encodings only)
|
2014-12-08 21:25:40 +00:00
|
|
|
CharSet encodable_;
|
2013-01-12 18:25:24 +00:00
|
|
|
/// Set of UCS4 characters that we can't encode
|
|
|
|
CharSet const * forced_;
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
/// All code points below this are encodable. This helps us to avoid
|
|
|
|
/// lokup of ASCII characters in encodable_ and gives about 1 sec
|
|
|
|
/// speedup on export of the Userguide.
|
2014-12-08 21:25:40 +00:00
|
|
|
char_type start_encodable_;
|
2007-05-06 20:26:02 +00:00
|
|
|
/// Which LaTeX package handles this encoding?
|
|
|
|
Package package_;
|
|
|
|
/**
|
|
|
|
* If this is true the stored information about the encoding covers
|
|
|
|
* all encodable characters. We set this to false initially so that
|
|
|
|
* we only need to query iconv for the actually used encodings.
|
|
|
|
* This is needed especially for the multibyte encodings, if we
|
|
|
|
* complete all encoding info on startup it takes 2-3 minutes.
|
|
|
|
*/
|
2014-12-08 21:25:40 +00:00
|
|
|
bool complete_;
|
2000-10-10 12:36:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Encodings {
|
|
|
|
public:
|
2008-09-25 18:38:25 +00:00
|
|
|
///
|
|
|
|
typedef std::set<char_type> MathCommandSet;
|
|
|
|
///
|
|
|
|
typedef std::set<char_type> TextCommandSet;
|
|
|
|
///
|
|
|
|
typedef std::set<char_type> MathSymbolSet;
|
2000-10-10 12:36:36 +00:00
|
|
|
///
|
2014-12-07 17:26:44 +00:00
|
|
|
typedef std::map<trivstring, Encoding> EncodingList;
|
2006-12-28 18:15:25 +00:00
|
|
|
/// iterator to iterate over all encodings.
|
|
|
|
/// We hide the fact that our encoding list is implemented as a map.
|
|
|
|
class const_iterator : public EncodingList::const_iterator {
|
|
|
|
typedef EncodingList::const_iterator base;
|
|
|
|
public:
|
|
|
|
const_iterator() : base() {}
|
|
|
|
const_iterator(base const & b) : base(b) {}
|
|
|
|
Encoding const & operator*() const { return base::operator*().second; }
|
|
|
|
Encoding const * operator->() const { return &(base::operator*().second); }
|
|
|
|
};
|
2000-10-10 12:36:36 +00:00
|
|
|
///
|
|
|
|
Encodings();
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
/// Read the encodings.
|
|
|
|
/// \param encfile encodings definition file
|
|
|
|
/// \param symbolsfile unicode->LaTeX mapping file
|
|
|
|
void read(support::FileName const & encfile,
|
2007-05-28 22:27:45 +00:00
|
|
|
support::FileName const & symbolsfile);
|
2006-11-03 10:35:41 +00:00
|
|
|
/// Get encoding from LyX name \p name
|
2012-12-30 19:39:33 +00:00
|
|
|
Encoding const *
|
|
|
|
fromLyXName(std::string const & name, bool allowUnsafe = false) const;
|
2013-01-19 18:47:15 +00:00
|
|
|
/// Get encoding from LaTeX name \p name and package \p package
|
|
|
|
Encoding const * fromLaTeXName(std::string const & name,
|
|
|
|
int const & package = Encoding::any, bool allowUnsafe = false) const;
|
|
|
|
/// Get encoding from iconv name \p name and package \p package
|
|
|
|
Encoding const * fromIconvName(std::string const & name,
|
|
|
|
int const & package = Encoding::any, bool allowUnsafe = false) const;
|
2000-10-10 12:36:36 +00:00
|
|
|
|
2006-12-28 18:15:25 +00:00
|
|
|
///
|
|
|
|
const_iterator begin() const { return encodinglist.begin(); }
|
|
|
|
///
|
|
|
|
const_iterator end() const { return encodinglist.end(); }
|
|
|
|
|
2013-08-23 05:46:35 +00:00
|
|
|
/// Accessor for the unicode information table.
|
|
|
|
static CharInfo const & unicodeCharInfo(char_type c);
|
Add machinery to output arbitrary unicode characters with LaTeX commands
read from a text file.
* src/encoding.[Ch]
(Encoding::latexChar): New, output a character to LaTeX
(Encoding::validate): New, add needed preamble stuff for a character
(Encodings::read): Read new unicodesymbols file
(Encodings::isCombiningChar): New, is a character a combining char?
* src/paragraph_pimpl.C
(isEncoding): Delete, no longer needed
(getEncoding): New, get the real encoding of a font
(Paragraph::Pimpl::latexSurrogatePair): New, output a surrogate pair
to LaTeX
(Paragraph::Pimpl::simpleTeXBlanks): Use latexSurrogatePair if needed
(Paragraph::Pimpl::simpleTeXSpecialChars): Ditto, and replace several
hardcoded characters with a call of encoding.latexChar()
(Paragraph::Pimpl::validate): replace several hardcoded characters
with a call of encoding.validate()
* src/support/debugstream.h
(basic_debugstream::disable): New, disable the stream completely
(basic_debugstream::enable): New, reenable the stream
* src/lyx_main.[Ch]: Adjust to changes above
* src/paragraph.C: Ditto
* lib/unicodesymbols: New file with UCS4 -> LaTeX command mapping.
It is far from complete yet, but contains most accents on latin
characters.
* lib/Makefile.am: add lib/unicodesymbols
* development/scons/scons_manifest.py: ditto
* development/tools/unicodesymbols.py: Helper script to update
lib/unicodesymbols with new symbols
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-28 21:27:45 +00:00
|
|
|
/// Is this a combining char?
|
|
|
|
static bool isCombiningChar(char_type c);
|
2012-03-09 09:05:13 +00:00
|
|
|
/// Return the TIPA shortcut
|
|
|
|
static std::string const TIPAShortcut(char_type c);
|
2007-10-12 18:21:51 +00:00
|
|
|
/**
|
|
|
|
* Is this a known char from some language?
|
|
|
|
* If \p preamble is empty and code point \p c is known to belong
|
2007-10-24 17:22:57 +00:00
|
|
|
* to a supported script, true is returned and \p preamble is set
|
2007-10-12 18:21:51 +00:00
|
|
|
* to the corresponding entry in the unicodesymbols file.
|
|
|
|
* If \p preamble is not empty, a check is made whether code point
|
|
|
|
* \p c is a known character matching the preamble entry.
|
|
|
|
*/
|
2007-10-24 17:22:57 +00:00
|
|
|
static bool isKnownScriptChar(char_type const c, std::string & preamble);
|
2008-09-26 15:53:15 +00:00
|
|
|
/**
|
|
|
|
* Do we have to display in italics this character when in mathmode?
|
|
|
|
* This is true if the "mathalpha" flag is set. We use this for
|
2009-03-09 06:34:00 +00:00
|
|
|
* letters and accented characters that are output as math commands.
|
2008-09-26 15:53:15 +00:00
|
|
|
*/
|
|
|
|
static bool isMathAlpha(char_type c);
|
2016-09-10 11:36:45 +00:00
|
|
|
/**
|
|
|
|
* Do we have to wrap in \text this character when in mathmode?
|
|
|
|
* This is true if \p c is not ascii and the "mathalpha" flag is not
|
|
|
|
* set and a mathcommand is not defined in the unicodesymbols file.
|
|
|
|
*/
|
|
|
|
static bool isUnicodeTextOnly(char_type c);
|
2008-09-25 18:38:25 +00:00
|
|
|
/**
|
|
|
|
* Register \p c as a mathmode command.
|
|
|
|
*/
|
|
|
|
static void addMathCmd(char_type c) { mathcmd.insert(c); }
|
|
|
|
/**
|
|
|
|
* Register \p c as a textmode command.
|
|
|
|
*/
|
|
|
|
static void addTextCmd(char_type c) { textcmd.insert(c); }
|
|
|
|
/**
|
|
|
|
* Register \p c as a mathmode symbol.
|
|
|
|
*/
|
|
|
|
static void addMathSym(char_type c) { mathsym.insert(c); }
|
|
|
|
/**
|
|
|
|
* Tell whether \p c is registered as a mathmode command.
|
|
|
|
*/
|
|
|
|
static bool isMathCmd(char_type c) { return mathcmd.count(c); }
|
|
|
|
/**
|
|
|
|
* Tell whether \p c is registered as a textmode command.
|
|
|
|
*/
|
|
|
|
static bool isTextCmd(char_type c) { return textcmd.count(c); }
|
|
|
|
/**
|
|
|
|
* Tell whether \p c is registered as a mathmode symbol.
|
|
|
|
*/
|
|
|
|
static bool isMathSym(char_type c) { return mathsym.count(c); }
|
2008-06-02 01:35:42 +00:00
|
|
|
/**
|
2008-07-20 01:50:54 +00:00
|
|
|
* If \p c cannot be encoded in the given \p encoding, convert
|
2008-09-25 18:38:25 +00:00
|
|
|
* it to something that LaTeX can understand in mathmode.
|
2012-03-25 13:36:00 +00:00
|
|
|
* \p needsTermination indicates whether the command needs to be
|
|
|
|
* terminated by {} or a space.
|
2008-09-25 18:38:25 +00:00
|
|
|
* \return whether \p command is a mathmode command
|
2008-06-02 01:35:42 +00:00
|
|
|
*/
|
2008-09-25 18:38:25 +00:00
|
|
|
static bool latexMathChar(char_type c, bool mathmode,
|
2012-03-25 13:36:00 +00:00
|
|
|
Encoding const * encoding, docstring & command,
|
|
|
|
bool & needsTermination);
|
2008-06-16 01:21:17 +00:00
|
|
|
/**
|
|
|
|
* Convert the LaTeX command in \p cmd to the corresponding unicode
|
2012-03-25 13:36:00 +00:00
|
|
|
* point and set \p combining to true if it is a combining symbol.
|
|
|
|
* \p needsTermination indicates whether the command needs to be
|
|
|
|
* terminated by {} or a space.
|
2008-06-16 01:21:17 +00:00
|
|
|
*/
|
2011-12-08 20:05:51 +00:00
|
|
|
static char_type fromLaTeXCommand(docstring const & cmd, int cmdtype,
|
2012-03-25 13:36:00 +00:00
|
|
|
bool & combining, bool & needsTermination,
|
|
|
|
std::set<std::string> * req = 0);
|
2009-06-12 14:03:57 +00:00
|
|
|
///
|
|
|
|
enum LatexCmd {
|
|
|
|
///
|
|
|
|
MATH_CMD = 1,
|
|
|
|
///
|
|
|
|
TEXT_CMD = 2
|
|
|
|
};
|
2008-06-16 01:21:17 +00:00
|
|
|
/**
|
|
|
|
* Convert the LaTeX commands in \p cmd and \return a docstring
|
|
|
|
* of corresponding unicode points. The conversion stops at the
|
|
|
|
* first command which could not be converted, and the remaining
|
2009-06-12 14:03:57 +00:00
|
|
|
* unconverted commands are returned in \p rem.
|
|
|
|
* The \p cmdtype parameter can be used to limit recognized
|
|
|
|
* commands to math or text mode commands only.
|
2012-03-25 13:36:00 +00:00
|
|
|
* \p needsTermination indicates whether the command needs to be
|
|
|
|
* terminated by {} or a space.
|
2008-06-16 01:21:17 +00:00
|
|
|
*/
|
2011-12-08 20:05:51 +00:00
|
|
|
static docstring fromLaTeXCommand(docstring const & cmd, int cmdtype,
|
2012-03-25 13:36:00 +00:00
|
|
|
bool & needsTermination, docstring & rem,
|
|
|
|
std::set<std::string> * req = 0);
|
2000-10-10 12:36:36 +00:00
|
|
|
|
2013-08-23 05:46:35 +00:00
|
|
|
protected:
|
2000-07-04 20:32:37 +00:00
|
|
|
///
|
2000-10-10 12:36:36 +00:00
|
|
|
EncodingList encodinglist;
|
2008-09-25 18:38:25 +00:00
|
|
|
///
|
|
|
|
static MathCommandSet mathcmd;
|
|
|
|
///
|
|
|
|
static TextCommandSet textcmd;
|
|
|
|
///
|
|
|
|
static MathSymbolSet mathsym;
|
2000-07-04 20:32:37 +00:00
|
|
|
};
|
|
|
|
|
2000-10-10 12:36:36 +00:00
|
|
|
extern Encodings encodings;
|
2000-07-04 20:32:37 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2000-07-04 20:32:37 +00:00
|
|
|
#endif
|