kicad/eeschema/hotkeys.h

52 lines
1.3 KiB
C
Raw Normal View History

2007-08-30 14:57:35 +00:00
/***************/
/* hotkeys.h */
/***************/
#ifndef KOTKEYS_H
#define KOTKEYS_H
#include "hotkeys_basic.h"
enum hotkey_id_commnand {
HK_NOT_FOUND = 0,
HK_RESET_LOCAL_COORD,
HK_HELP,
HK_ZOOM_IN,
HK_ZOOM_OUT,
HK_ZOOM_REDRAW,
HK_ZOOM_CENTER,
2009-09-27 14:09:26 +00:00
HK_ZOOM_AUTO,
2007-08-30 14:57:35 +00:00
HK_NEXT_SEARCH,
HK_DELETE,
HK_REPEAT_LAST,
HK_EDIT_PIN,
HK_LIBEDIT_MOVE_GRAPHIC_ITEM,
2010-01-17 20:25:10 +00:00
HK_LIBEDIT_ROTATE_PIN,
HK_DELETE_PIN,
2007-09-19 15:29:50 +00:00
HK_UNDO,
HK_REDO,
2007-08-30 14:57:35 +00:00
HK_MOVEBLOCK_TO_DRAGBLOCK,
2010-01-17 20:25:10 +00:00
HK_ROTATE_COMPONENT_OR_ITEM,
2009-12-27 14:01:21 +00:00
HK_EDIT_COMPONENT_OR_LABEL,
HK_EDIT_COMPONENT_VALUE,
HK_EDIT_COMPONENT_FOOTPRINT,
2007-08-30 14:57:35 +00:00
HK_MIRROR_X_COMPONENT,
HK_MIRROR_Y_COMPONENT,
HK_ORIENT_NORMAL_COMPONENT,
2010-01-17 20:25:10 +00:00
HK_MOVE_COMPONENT_OR_ITEM,
HK_COPY_COMPONENT_OR_LABEL,
HK_DRAG_COMPONENT,
2007-08-30 14:57:35 +00:00
HK_ADD_NEW_COMPONENT,
HK_BEGIN_WIRE
};
// List of hotkey descriptors for eeschema
extern struct Ki_HotkeyInfoSectionDescriptor s_Eeschema_Hokeys_Descr[];
// List of hotkey descriptors for the schematic editor only
extern struct Ki_HotkeyInfoSectionDescriptor s_Schematic_Hokeys_Descr[];
// List of hotkey descriptors for the lib editor only
extern struct Ki_HotkeyInfoSectionDescriptor s_Libedit_Hokeys_Descr[];
2009-09-27 14:09:26 +00:00
// List of hotkey descriptors for the lib browser only
extern struct Ki_HotkeyInfoSectionDescriptor s_Viewlib_Hokeys_Descr[];
2007-08-30 14:57:35 +00:00
#endif // KOTKEYS_H