mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
efe0b0b8eb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2254 a592a061-630c-0410-9148-cb99ea01b6c8
51 lines
625 B
C++
51 lines
625 B
C++
// -*- C++ -*-
|
|
#ifndef Trans_Decl_h
|
|
#define Trans_Decl_h
|
|
|
|
#include <list>
|
|
|
|
#include "LString.h"
|
|
#include "tex-accent.h"
|
|
|
|
///
|
|
struct Keyexc {
|
|
/// character to make exception
|
|
char c;
|
|
/// exception data
|
|
string data;
|
|
#if 0
|
|
///
|
|
Keyexc * next;
|
|
#endif
|
|
/// Combination with another deadkey
|
|
bool combined;
|
|
/// The accent comined with
|
|
tex_accent accent;
|
|
};
|
|
|
|
#if 0
|
|
///
|
|
typedef Keyexc * KmodException;
|
|
#else
|
|
///
|
|
typedef std::list<Keyexc> KmodException;
|
|
#endif
|
|
|
|
///
|
|
struct KmodInfo {
|
|
///
|
|
string data;
|
|
///
|
|
tex_accent accent;
|
|
#if 0
|
|
///
|
|
string allowed;
|
|
#endif
|
|
///
|
|
KmodException exception_list;
|
|
///
|
|
KmodInfo();
|
|
};
|
|
|
|
#endif
|