|
Last change
on this file was
13753,
checked in by westram, 11 years ago
|
- edit4 key mappings
- added config manager
- use 2-column layout
- replaced magic awar names by define/inline
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
973 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 | class AW_root; |
|---|
| 15 | class AW_window; |
|---|
| 16 | |
|---|
| 17 | class ed_key { |
|---|
| 18 | char mapping[256]; |
|---|
| 19 | |
|---|
| 20 | public: |
|---|
| 21 | ed_key(); |
|---|
| 22 | |
|---|
| 23 | char map_key(char) const; |
|---|
| 24 | void create_awars(AW_root *root); |
|---|
| 25 | |
|---|
| 26 | void rehash_mapping(AW_root *awr); |
|---|
| 27 | }; |
|---|
| 28 | |
|---|
| 29 | AW_window *create_key_map_window(AW_root *root); |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | #else |
|---|
| 34 | #error awt_map_key.hxx included twice |
|---|
| 35 | #endif // AWT_MAP_KEY_HXX |
|---|
Note: See
TracBrowser
for help on using the repository browser.