mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
2e23774c6c
This is needed to be able to use Encodings in tex2lyx without the need to compile Buffer as well, or to use a TEX2LYX define.
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file BufferEncodings.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
* \author Jean-Marc Lasgouttes
|
|
* \author Stephan Witt
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef BUFFER_ENCODINGS_H
|
|
#define BUFFER_ENCODINGS_H
|
|
|
|
#include "Encoding.h"
|
|
#include "support/docstring.h"
|
|
#include "support/types.h"
|
|
|
|
namespace lyx {
|
|
|
|
class Buffer;
|
|
class LaTeXFeatures;
|
|
|
|
class BufferEncodings : public Encodings {
|
|
public:
|
|
/**
|
|
* Initialize mathcmd, textcmd, and mathsym sets.
|
|
*/
|
|
static void initUnicodeMath(Buffer const & buffer, bool for_master = true);
|
|
/**
|
|
* If \p c cannot be encoded in the given \p encoding, convert
|
|
* it to something that LaTeX can understand in mathmode.
|
|
* \p needsTermination indicates whether the command needs to be
|
|
* terminated by {} or a space.
|
|
* \return whether \p command is a mathmode command
|
|
*/
|
|
static void validate(char_type c, LaTeXFeatures & features, bool for_mathed = false);
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // BUFFER_ENCODINGS_H
|