Changeset 4780 in orxonox.OLD for orxonox/trunk/src/lib/event/key_names.h
- Timestamp:
- Jul 2, 2005, 10:55:47 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/event/key_names.h
r4457 r4780 2 2 \file keynames.h 3 3 \brief Key/button naming functions 4 5 4 5 Converts strings to SDLK/SDL_BUTTON values and vice versa 6 6 */ 7 7 #ifndef _KEY_NAMES_H … … 9 9 10 10 /** 11 12 13 11 \brief converts a button name string to a integer representing the corresponding SDL mouse button identifier 12 \param name: the name of the mouse button 13 \return an int containing the SDL identifier of the mouse button or -1 if the button name is not valid 14 14 */ 15 int buttonnameToSDLB( char* name);15 int buttonnameToSDLB(const char* name); 16 16 17 17 /** 18 19 20 18 \brief converst a SDL mouse button identifier to a name string 19 \param button: an SDL mouse button identifier 20 \return a pointer to a string containing the name of the mouse button 21 21 */ 22 22 char* SDLBToButtonname( int button); 23 23 24 24 /** 25 26 27 25 \brief converts a key name string to a integer representing the corresponding SDLK sym 26 \param name: the name of the key 27 \return the SDLK sym of the named key or -1 if the key name is not valid 28 28 */ 29 int keynameToSDLK( char* name);29 int keynameToSDLK(const char* name); 30 30 31 31 /** 32 33 34 32 \brief converts an SDLK sym to a name string 33 \param key: the SDLK sym 34 \return a pointer to a string containig the name of the key 35 35 */ 36 36 char* SDLKToKeyname( int key);
Note: See TracChangeset
for help on using the changeset viewer.