]> git.lyx.org Git - lyx.git/blob - src/trans_decl.h
Change the color of the background widget to red.
[lyx.git] / src / trans_decl.h
1 // -*- C++ -*-
2 /**
3  * \file trans_decl.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Matthias Ettrich
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef TRANS_DECL_H
14 #define TRANS_DECL_H
15
16 #include "tex-accent.h"
17
18 #include <list>
19 #include <string>
20
21
22 ///
23 struct Keyexc {
24         /// character to make exception
25         char c;
26         /// exception data
27         std::string data;
28         /// Combination with another deadkey
29         bool combined;
30         /// The accent comined with
31         tex_accent accent;
32 };
33
34 ///
35 typedef std::list<Keyexc> KmodException;
36
37 ///
38 struct KmodInfo {
39         ///
40         std::string data;
41         ///
42         tex_accent accent;
43         ///
44         KmodException exception_list;
45         ///
46         KmodInfo();
47 };
48
49 #endif