source: tags/arb-6.0/AWT/awt_map_key.hxx

Last change on this file was 8885, checked in by westram, 12 years ago
  • fixed cppcheck warnings
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1001 bytes
Line 
1// =========================================================== //
2//                                                             //
3//   File      : awt_map_key.hxx                               //
4//   Purpose   :                                               //
5//                                                             //
6//   Institute of Microbiology (Technical University Munich)   //
7//   http://www.arb-home.de/                                   //
8//                                                             //
9// =========================================================== //
10
11#ifndef AWT_MAP_KEY_HXX
12#define AWT_MAP_KEY_HXX
13
14#define MAX_MAPPED_KEYS 20
15
16class AW_root;
17class AW_window;
18
19class ed_key {
20    char mapping[256];
21
22public:
23    ed_key();
24
25    char map_key(char) const;
26    void create_awars(AW_root *root);
27
28    void rehash_mapping(AW_root *awr);
29};
30
31AW_window *create_key_map_window(AW_root *root);
32
33
34
35#else
36#error awt_map_key.hxx included twice
37#endif // AWT_MAP_KEY_HXX
Note: See TracBrowser for help on using the repository browser.