kicad/gerbview/hotkeys.h

24 lines
528 B
C
Raw Normal View History

/**
* gerbview/hotkeys.h
*/
#ifndef GERBVIEW_KOTKEYS_H_
#define GERBVIEW_KOTKEYS_H_
2007-09-11 07:34:46 +00:00
#include <hotkeys_basic.h>
2007-09-11 07:34:46 +00:00
// List of hot keys id.
// see also enum common_hotkey_id_commnand in hotkeys_basic.h
// for shared hotkeys id
2007-09-11 07:34:46 +00:00
enum hotkey_id_commnand {
HK_SWITCH_UNITS = HK_COMMON_END,
HK_SWITCH_GBR_ITEMS_DISPLAY_MODE,
2007-09-11 07:34:46 +00:00
HK_SWITCH_LAYER_TO_NEXT,
HK_SWITCH_LAYER_TO_PREVIOUS
};
// List of hotkey descriptors for GerbView.
extern struct EDA_HOTKEY_CONFIG s_Gerbview_Hokeys_Descr[];
2007-09-11 07:34:46 +00:00
#endif // GERBVIEW_KOTKEYS_H_