mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
244b2c1fab
encodings in the preferences dialog * src/LaTeXFeatures.C: special treatment for tis620-0 encoding * src/bufferparams.C: ditto * src/output_latex.C: ditto * src/encoding.[Ch]: Add the possibility to iterate over all encodings * src/paragraph_pimpl.C: Add latin10 and cp858 to Euro treatment * src/buffer.C: Update format number * src/frontends/qt4/QDocumentDialog.C: Don't hardcode available encodings * lib/lyx2lyx/LyX.py, lib/lyx2lyx/lyx_1_5.py: implement conversion from 256 to 255 * lib/encodings: Add some encodings, fix all "unknown" entries * development/FORMAT: Document file format change git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16418 a592a061-630c-0410-9148-cb99ea01b6c8
112 lines
2.3 KiB
C++
112 lines
2.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file encoding.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
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef ENCODING_H
|
|
#define ENCODING_H
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include "support/types.h"
|
|
|
|
namespace lyx {
|
|
|
|
namespace support { class FileName; }
|
|
|
|
///
|
|
class Encoding {
|
|
public:
|
|
///
|
|
Encoding() {}
|
|
///
|
|
Encoding(std::string const & n, std::string const & l,
|
|
std::string const & i)
|
|
: Name_(n), LatexName_(l), iconvName_(i)
|
|
{
|
|
}
|
|
///
|
|
std::string const & name() const { return Name_; }
|
|
///
|
|
std::string const & latexName() const { return LatexName_; }
|
|
///
|
|
std::string const & iconvName() const { return iconvName_; }
|
|
private:
|
|
///
|
|
std::string Name_;
|
|
///
|
|
std::string LatexName_;
|
|
///
|
|
std::string iconvName_;
|
|
};
|
|
|
|
class Encodings {
|
|
public:
|
|
///
|
|
typedef std::map<std::string, Encoding> EncodingList;
|
|
/// 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); }
|
|
};
|
|
///
|
|
Encodings();
|
|
///
|
|
void read(support::FileName const & filename);
|
|
/// Get encoding from LyX name \p name
|
|
Encoding const * getFromLyXName(std::string const & name) const;
|
|
/// Get encoding from LaTeX name \p name
|
|
Encoding const * getFromLaTeXName(std::string const & name) const;
|
|
|
|
///
|
|
const_iterator begin() const { return encodinglist.begin(); }
|
|
///
|
|
const_iterator end() const { return encodinglist.end(); }
|
|
|
|
///
|
|
enum Letter_Form {
|
|
///
|
|
FORM_ISOLATED,
|
|
///
|
|
FORM_FINAL,
|
|
///
|
|
FORM_INITIAL,
|
|
///
|
|
FORM_MEDIAL
|
|
};
|
|
///
|
|
static bool isComposeChar_hebrew(char_type c);
|
|
///
|
|
static bool isComposeChar_arabic(char_type c);
|
|
///
|
|
static bool is_arabic_special(char_type c);
|
|
///
|
|
static bool is_arabic(char_type c);
|
|
///
|
|
static char_type transformChar(char_type c, Letter_Form form);
|
|
|
|
private:
|
|
///
|
|
EncodingList encodinglist;
|
|
};
|
|
|
|
extern Encodings encodings;
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|