2007-09-11 07:34:46 +00:00
|
|
|
/***************/
|
|
|
|
/* hotkeys.h */
|
|
|
|
/***************/
|
|
|
|
#ifndef KOTKEYS_H
|
|
|
|
#define KOTKEYS_H
|
|
|
|
|
|
|
|
#include "hotkeys_basic.h"
|
|
|
|
|
2010-02-14 18:14:33 +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 {
|
2010-02-14 18:14:33 +00:00
|
|
|
HK_SWITCH_UNITS = HK_COMMON_END,
|
2010-09-28 14:42:05 +00:00
|
|
|
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 pcbnew
|
|
|
|
extern struct Ki_HotkeyInfoSectionDescriptor s_Gerbview_Hokeys_Descr[];
|
|
|
|
|
|
|
|
#endif // KOTKEYS_H
|