2014-10-19 22:17:43 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2017-01-30 22:30:05 +00:00
|
|
|
* Copyright (C) 2014-2017 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-19 22:17:43 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-09-29 16:49:40 +00:00
|
|
|
/**
|
|
|
|
* eeschema/hotkeys.h
|
|
|
|
*/
|
2012-01-23 04:33:36 +00:00
|
|
|
#ifndef EESCHEMA_KOTKEYS_H_
|
|
|
|
#define EESCHEMA_KOTKEYS_H_
|
2007-08-30 14:57:35 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <hotkeys_basic.h>
|
2007-08-30 14:57:35 +00:00
|
|
|
|
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-08-30 14:57:35 +00:00
|
|
|
enum hotkey_id_commnand {
|
2010-03-16 18:22:59 +00:00
|
|
|
HK_FIND_NEXT_ITEM = HK_COMMON_END,
|
|
|
|
HK_FIND_NEXT_DRC_MARKER,
|
2010-02-16 10:42:57 +00:00
|
|
|
HK_FIND_ITEM,
|
2014-04-03 07:40:55 +00:00
|
|
|
HK_FIND_REPLACE,
|
2007-08-30 14:57:35 +00:00
|
|
|
HK_DELETE,
|
|
|
|
HK_REPEAT_LAST,
|
2010-07-26 17:06:36 +00:00
|
|
|
HK_LIBEDIT_MOVE_GRAPHIC_ITEM,
|
2007-08-30 14:57:35 +00:00
|
|
|
HK_MOVEBLOCK_TO_DRAGBLOCK,
|
2010-07-26 17:06:36 +00:00
|
|
|
HK_LIBEDIT_CREATE_PIN,
|
2018-09-24 14:31:35 +00:00
|
|
|
HK_LIBEDIT_VIEW_DOC,
|
2010-07-26 17:06:36 +00:00
|
|
|
HK_DELETE_PIN,
|
2010-02-04 17:46:12 +00:00
|
|
|
HK_ROTATE,
|
2010-07-26 17:06:36 +00:00
|
|
|
HK_EDIT,
|
|
|
|
HK_EDIT_COMPONENT_VALUE,
|
2012-12-08 17:24:49 +00:00
|
|
|
HK_EDIT_COMPONENT_REFERENCE,
|
2010-07-26 17:06:36 +00:00
|
|
|
HK_EDIT_COMPONENT_FOOTPRINT,
|
2018-09-24 14:31:35 +00:00
|
|
|
HK_SHOW_COMPONENT_DATASHEET,
|
2015-03-14 11:50:39 +00:00
|
|
|
HK_EDIT_COMPONENT_WITH_LIBEDIT,
|
2015-04-26 16:32:16 +00:00
|
|
|
HK_MIRROR_X,
|
|
|
|
HK_MIRROR_Y,
|
2007-08-30 14:57:35 +00:00
|
|
|
HK_ORIENT_NORMAL_COMPONENT,
|
2010-01-17 20:25:10 +00:00
|
|
|
HK_MOVE_COMPONENT_OR_ITEM,
|
2017-07-03 15:37:18 +00:00
|
|
|
HK_DUPLICATE_ITEM,
|
2010-02-04 17:46:12 +00:00
|
|
|
HK_DRAG,
|
2007-08-30 14:57:35 +00:00
|
|
|
HK_ADD_NEW_COMPONENT,
|
2010-11-11 17:54:24 +00:00
|
|
|
HK_ADD_NEW_POWER,
|
2010-07-15 14:18:11 +00:00
|
|
|
HK_BEGIN_WIRE,
|
2010-11-11 17:54:24 +00:00
|
|
|
HK_BEGIN_BUS,
|
2012-10-23 16:37:19 +00:00
|
|
|
HK_END_CURR_LINEWIREBUS,
|
2010-11-11 17:54:24 +00:00
|
|
|
HK_ADD_WIRE_ENTRY,
|
|
|
|
HK_ADD_BUS_ENTRY,
|
2010-07-26 17:06:36 +00:00
|
|
|
HK_ADD_LABEL,
|
2010-11-11 17:54:24 +00:00
|
|
|
HK_ADD_HLABEL,
|
|
|
|
HK_ADD_GLABEL,
|
2010-10-30 10:03:41 +00:00
|
|
|
HK_ADD_JUNCTION,
|
2010-11-11 17:54:24 +00:00
|
|
|
HK_ADD_HIER_SHEET,
|
|
|
|
HK_ADD_GRAPHIC_TEXT,
|
|
|
|
HK_ADD_GRAPHIC_POLYLINE,
|
2012-09-12 09:53:11 +00:00
|
|
|
HK_ADD_NOCONN_FLAG,
|
2014-04-03 07:40:55 +00:00
|
|
|
HK_LEFT_CLICK,
|
2015-06-12 21:31:44 +00:00
|
|
|
HK_LEFT_DCLICK,
|
2015-06-19 15:24:12 +00:00
|
|
|
HK_LEAVE_SHEET,
|
2016-01-29 14:43:40 +00:00
|
|
|
HK_DELETE_NODE,
|
2015-12-13 16:56:47 +00:00
|
|
|
HK_AUTOPLACE_FIELDS,
|
2017-07-24 19:58:55 +00:00
|
|
|
HK_UPDATE_PCB_FROM_SCH,
|
2018-09-10 13:37:28 +00:00
|
|
|
HK_SELECT_ITEMS_ON_PCB,
|
|
|
|
HK_CANVAS_OPENGL,
|
|
|
|
HK_CANVAS_CAIRO,
|
2007-08-30 14:57:35 +00:00
|
|
|
};
|
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
// List of hotkey descriptors for Eeschema
|
2019-04-01 17:14:16 +00:00
|
|
|
extern struct EDA_HOTKEY_CONFIG g_Eeschema_Hotkeys_Descr[];
|
2010-07-26 17:06:36 +00:00
|
|
|
|
2007-09-06 11:52:26 +00:00
|
|
|
// List of hotkey descriptors for the schematic editor only
|
2019-04-01 17:14:16 +00:00
|
|
|
extern struct EDA_HOTKEY_CONFIG g_Schematic_Hotkeys_Descr[];
|
2010-07-26 17:06:36 +00:00
|
|
|
|
2007-09-06 11:52:26 +00:00
|
|
|
// List of hotkey descriptors for the lib editor only
|
2019-04-01 17:14:16 +00:00
|
|
|
extern struct EDA_HOTKEY_CONFIG g_Libedit_Hotkeys_Descr[];
|
2010-07-26 17:06:36 +00:00
|
|
|
|
2009-09-27 14:09:26 +00:00
|
|
|
// List of hotkey descriptors for the lib browser only
|
2019-04-01 17:14:16 +00:00
|
|
|
extern struct EDA_HOTKEY_CONFIG g_Viewlib_Hotkeys_Descr[];
|
2007-08-30 14:57:35 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#endif // EESCHEMA_KOTKEYS_H_
|