2014-10-23 17:53:38 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2016-04-18 15:03:59 +00:00
|
|
|
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-23 17:53:38 +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
|
|
|
/**
|
|
|
|
* @file pcbnew/hotkeys.cpp
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <wxPcbStruct.h>
|
2014-10-15 11:40:38 +00:00
|
|
|
#include <modview_frame.h>
|
|
|
|
#include <pcbnew_id.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <hotkeys.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
// Remark: the hotkey message info is used as keyword in hotkey config files and
|
|
|
|
// as comments in help windows, therefore translated only when displayed
|
|
|
|
// they are marked _HKI to be extracted by translation tools
|
|
|
|
// See hotkeys_basic.h for more info
|
|
|
|
|
|
|
|
|
2007-08-30 08:15:05 +00:00
|
|
|
/* How to add a new hotkey:
|
|
|
|
* add a new id in the enum hotkey_id_commnand like MY_NEW_ID_FUNCTION.
|
2011-09-29 16:49:40 +00:00
|
|
|
* add a new EDA_HOTKEY entry like:
|
2015-03-22 14:04:09 +00:00
|
|
|
* static EDA_HOTKEY HkMyNewEntry(_HKI("Command Label"), MY_NEW_ID_FUNCTION, default key value);
|
2011-09-29 16:49:40 +00:00
|
|
|
* "Command Label" is the name used in hotkey list display, and the identifier in the
|
|
|
|
* hotkey list file MY_NEW_ID_FUNCTION is an equivalent id function used in the switch
|
|
|
|
* in OnHotKey() function.
|
|
|
|
* default key value is the default hotkey for this command. Can be overridden by the user
|
|
|
|
* hotkey list file
|
|
|
|
* add the HkMyNewEntry pointer in the s_board_edit_Hotkey_List list ( or/and the
|
|
|
|
* s_module_edit_Hotkey_List list)
|
2007-08-30 08:15:05 +00:00
|
|
|
* Add the new code in the switch in OnHotKey() function.
|
2010-08-12 19:41:13 +00:00
|
|
|
* Note: when the variable itemCurrentlyEdited is true, an item is currently edited.
|
2011-09-29 16:49:40 +00:00
|
|
|
* This can be useful if the new function cannot be executed while an item is currently
|
|
|
|
* being edited ( For example, one cannot start a new wire when a component is moving.)
|
2007-08-30 08:15:05 +00:00
|
|
|
*
|
2013-08-03 05:15:23 +00:00
|
|
|
* Note: If a hotkey is a special key, be sure the corresponding wxWidget keycode (WXK_XXXX)
|
2007-08-30 08:15:05 +00:00
|
|
|
* is handled in the hotkey_name_descr s_Hotkey_Name_List list (see hotkeys_basic.cpp)
|
|
|
|
* and see this list for some ascii keys (space ...)
|
|
|
|
*/
|
2007-08-20 10:55:09 +00:00
|
|
|
|
2014-04-03 07:40:55 +00:00
|
|
|
// Hotkey list:
|
|
|
|
|
|
|
|
// mouse click command:
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkMouseLeftClick( _HKI( "Mouse Left Click" ),
|
2014-04-03 07:40:55 +00:00
|
|
|
HK_LEFT_CLICK, WXK_RETURN, 0 );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkMouseLeftDClick( _HKI( "Mouse Left Double Click" ),
|
2014-04-03 07:40:55 +00:00
|
|
|
HK_LEFT_DCLICK, WXK_END, 0 );
|
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitch2CopperLayer( _HKI( "Switch to Copper (B.Cu) layer" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_LAYER_TO_COPPER, WXK_PAGEDOWN );
|
2014-06-29 13:05:51 +00:00
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitch2ComponentLayer( _HKI( "Switch to Component (F.Cu) layer" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_LAYER_TO_COMPONENT, WXK_PAGEUP );
|
2014-06-29 13:05:51 +00:00
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitch2InnerLayer1( _HKI( "Switch to Inner layer 1" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_LAYER_TO_INNER1, WXK_F5 );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitch2InnerLayer2( _HKI( "Switch to Inner layer 2" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_LAYER_TO_INNER2, WXK_F6 );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitch2InnerLayer3( _HKI( "Switch to Inner layer 3" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_LAYER_TO_INNER3, WXK_F7 );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitch2InnerLayer4( _HKI( "Switch to Inner layer 4" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_LAYER_TO_INNER4, WXK_F8 );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitch2InnerLayer5( _HKI( "Switch to Inner layer 5" ),
|
2014-12-18 18:53:19 +00:00
|
|
|
HK_SWITCH_LAYER_TO_INNER5, GR_KB_SHIFT+WXK_F5 );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitch2InnerLayer6( _HKI( "Switch to Inner layer 6" ),
|
2014-12-18 18:53:19 +00:00
|
|
|
HK_SWITCH_LAYER_TO_INNER6, GR_KB_SHIFT+WXK_F6 );
|
2011-09-29 16:49:40 +00:00
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitch2NextCopperLayer( _HKI( "Switch to Next Layer" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_LAYER_TO_NEXT, '+' );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitch2PreviousCopperLayer( _HKI( "Switch to Previous Layer" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_LAYER_TO_PREVIOUS, '-' );
|
|
|
|
|
2015-03-23 08:28:12 +00:00
|
|
|
static EDA_HOTKEY HkSaveModule( _HKI( "Save Footprint" ), HK_SAVE_MODULE, 'S' + GR_KB_CTRL );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSavefile( _HKI( "Save Board" ), HK_SAVE_BOARD, 'S' + GR_KB_CTRL );
|
|
|
|
static EDA_HOTKEY HkSavefileAs( _HKI( "Save Board As" ), HK_SAVE_BOARD_AS, 'S' + GR_KB_CTRL + GR_KB_SHIFT );
|
|
|
|
static EDA_HOTKEY HkLoadfile( _HKI( "Load Board" ), HK_LOAD_BOARD, 'L' + GR_KB_CTRL );
|
|
|
|
static EDA_HOTKEY HkFindItem( _HKI( "Find Item" ), HK_FIND_ITEM, 'F' + GR_KB_CTRL );
|
2016-06-08 11:19:53 +00:00
|
|
|
static EDA_HOTKEY HkZoomSelection( _HKI( "Zoom to Selection" ), HK_ZOOM_SELECTION, '@', ID_ZOOM_SELECTION );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkBackspace( _HKI( "Delete Track Segment" ), HK_BACK_SPACE, WXK_BACK );
|
|
|
|
static EDA_HOTKEY HkAddNewTrack( _HKI( "Add New Track" ), HK_ADD_NEW_TRACK, 'X' );
|
|
|
|
static EDA_HOTKEY HkAddThroughVia( _HKI( "Add Through Via" ), HK_ADD_THROUGH_VIA, 'V' );
|
|
|
|
static EDA_HOTKEY HkSelLayerAndAddThroughVia( _HKI( "Select Layer and Add Through Via" ),
|
2013-09-20 10:52:33 +00:00
|
|
|
HK_SEL_LAYER_AND_ADD_THROUGH_VIA, '<' );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkAddMicroVia( _HKI( "Add MicroVia" ), HK_ADD_MICROVIA, 'V' + GR_KB_CTRL );
|
2015-06-19 12:32:31 +00:00
|
|
|
static EDA_HOTKEY HkAddBlindBuriedVia( _HKI( "Add Blind/Buried Via" ), HK_ADD_BLIND_BURIED_VIA, 'V' + GR_KB_ALT + GR_KB_SHIFT );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSelLayerAndAddBlindBuriedVia( _HKI( "Select Layer and Add Blind/Buried Via" ),
|
2013-09-20 10:52:33 +00:00
|
|
|
HK_SEL_LAYER_AND_ADD_BLIND_BURIED_VIA, '<' + GR_KB_ALT );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitchTrackPosture( _HKI( "Switch Track Posture" ), HK_SWITCH_TRACK_POSTURE, '/' );
|
|
|
|
static EDA_HOTKEY HkDragTrackKeepSlope( _HKI( "Drag Track Keep Slope" ), HK_DRAG_TRACK_KEEP_SLOPE, 'D' );
|
|
|
|
static EDA_HOTKEY HkPlaceItem( _HKI( "Place Item" ), HK_PLACE_ITEM, 'P' );
|
|
|
|
static EDA_HOTKEY HkEditBoardItem( _HKI( "Edit Item" ), HK_EDIT_ITEM, 'E' );
|
|
|
|
static EDA_HOTKEY HkEditWithModedit( _HKI( "Edit with Footprint Editor" ), HK_EDIT_MODULE_WITH_MODEDIT, 'E' + GR_KB_CTRL );
|
|
|
|
static EDA_HOTKEY HkFlipItem( _HKI( "Flip Item" ), HK_FLIP_ITEM, 'F' );
|
|
|
|
static EDA_HOTKEY HkRotateItem( _HKI( "Rotate Item" ), HK_ROTATE_ITEM, 'R' );
|
|
|
|
static EDA_HOTKEY HkMoveItem( _HKI( "Move Item" ), HK_MOVE_ITEM, 'M' );
|
|
|
|
static EDA_HOTKEY HkMoveItemExact( _HKI( "Move Item Exactly" ), HK_MOVE_ITEM_EXACT, 'M' + GR_KB_CTRL );
|
|
|
|
static EDA_HOTKEY HkDuplicateItem( _HKI( "Duplicate Item" ), HK_DUPLICATE_ITEM, 'D' + GR_KB_CTRL );
|
|
|
|
static EDA_HOTKEY HkDuplicateItemAndIncrement( _HKI( "Duplicate Item and Increment" ),
|
2015-02-12 03:22:24 +00:00
|
|
|
HK_DUPLICATE_ITEM_AND_INCREMENT, 'D' + GR_KB_SHIFTCTRL );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkCreateArray( _HKI( "Create Array" ), HK_CREATE_ARRAY, 'N' + GR_KB_CTRL );
|
|
|
|
static EDA_HOTKEY HkCopyItem( _HKI( "Copy Item" ), HK_COPY_ITEM, 'C' );
|
|
|
|
static EDA_HOTKEY HkDragFootprint( _HKI( "Drag Item" ), HK_DRAG_ITEM, 'G' );
|
|
|
|
static EDA_HOTKEY HkGetAndMoveFootprint( _HKI( "Get and Move Footprint" ), HK_GET_AND_MOVE_FOOTPRINT, 'T' );
|
|
|
|
static EDA_HOTKEY HkLock_Unlock_Footprint( _HKI( "Lock/Unlock Footprint" ), HK_LOCK_UNLOCK_FOOTPRINT, 'L' );
|
|
|
|
static EDA_HOTKEY HkDelete( _HKI( "Delete Track or Footprint" ), HK_DELETE, WXK_DELETE );
|
|
|
|
static EDA_HOTKEY HkResetLocalCoord( _HKI( "Reset Local Coordinates" ), HK_RESET_LOCAL_COORD, ' ' );
|
|
|
|
static EDA_HOTKEY HkSwitchHighContrastMode( _HKI( "Toggle High Contrast Mode" ), HK_SWITCH_HIGHCONTRAST_MODE,'H');
|
|
|
|
|
|
|
|
static EDA_HOTKEY HkSetGridOrigin( _HKI( "Set Grid Origin" ), HK_SET_GRID_ORIGIN, 'S' );
|
|
|
|
static EDA_HOTKEY HkResetGridOrigin( _HKI( "Reset Grid Origin" ), HK_RESET_GRID_ORIGIN, 'Z' );
|
|
|
|
|
2015-12-22 21:25:59 +00:00
|
|
|
static EDA_HOTKEY HkCanvasDefault( _HKI( "Switch to Legacy Canvas" ),
|
|
|
|
HK_CANVAS_LEGACY,
|
2015-07-06 11:52:52 +00:00
|
|
|
#ifdef __WXMAC__
|
|
|
|
GR_KB_ALT +
|
|
|
|
#endif
|
|
|
|
WXK_F9 );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkCanvasOpenGL( _HKI( "Switch to OpenGL Canvas" ),
|
2015-07-06 11:52:52 +00:00
|
|
|
HK_CANVAS_OPENGL,
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
GR_KB_ALT +
|
|
|
|
#endif
|
|
|
|
WXK_F11 );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkCanvasCairo( _HKI( "Switch to Cairo Canvas" ),
|
2015-07-06 11:52:52 +00:00
|
|
|
HK_CANVAS_CAIRO,
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
GR_KB_ALT +
|
|
|
|
#endif
|
|
|
|
WXK_F12 );
|
2013-07-07 00:30:28 +00:00
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkZoneFillOrRefill( _HKI( "Fill or Refill All Zones" ),
|
2014-12-06 21:21:13 +00:00
|
|
|
HK_ZONE_FILL_OR_REFILL, 'B' );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkZoneRemoveFilled( _HKI( "Remove Filled Areas in All Zones" ),
|
2015-05-01 09:31:23 +00:00
|
|
|
HK_ZONE_REMOVE_FILLED, 'B' + GR_KB_CTRL );
|
2010-02-16 10:42:57 +00:00
|
|
|
/* Fit on Screen */
|
|
|
|
#if !defined( __WXMAC__ )
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkZoomAuto( _HKI( "Zoom Auto" ), HK_ZOOM_AUTO, WXK_HOME );
|
2010-02-16 10:42:57 +00:00
|
|
|
#else
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkZoomAuto( _HKI( "Zoom Auto" ), HK_ZOOM_AUTO, GR_KB_CTRL + '0' );
|
2010-02-16 10:42:57 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkZoomCenter( _HKI( "Zoom Center" ), HK_ZOOM_CENTER, WXK_F4 );
|
2010-02-16 10:42:57 +00:00
|
|
|
|
|
|
|
/* Refresh Screen */
|
|
|
|
#if !defined( __WXMAC__ )
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkZoomRedraw( _HKI( "Zoom Redraw" ), HK_ZOOM_REDRAW, WXK_F3 );
|
2010-02-16 10:42:57 +00:00
|
|
|
#else
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkZoomRedraw( _HKI( "Zoom Redraw" ), HK_ZOOM_REDRAW, GR_KB_CTRL + 'R' );
|
2010-02-16 10:42:57 +00:00
|
|
|
#endif
|
2010-01-19 20:43:44 +00:00
|
|
|
|
|
|
|
/* Zoom In */
|
|
|
|
#if !defined( __WXMAC__ )
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkZoomIn( _HKI( "Zoom In" ), HK_ZOOM_IN, WXK_F1 );
|
2010-01-19 20:43:44 +00:00
|
|
|
#else
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkZoomIn( _HKI( "Zoom In" ), HK_ZOOM_IN, GR_KB_CTRL + '+' );
|
2010-01-19 20:43:44 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Zoom Out */
|
|
|
|
#if !defined( __WXMAC__ )
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkZoomOut( _HKI( "Zoom Out" ), HK_ZOOM_OUT, WXK_F2 );
|
2010-01-19 20:43:44 +00:00
|
|
|
#else
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkZoomOut( _HKI( "Zoom Out" ), HK_ZOOM_OUT, GR_KB_CTRL + '-' );
|
2010-01-19 20:43:44 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-26 19:04:52 +00:00
|
|
|
static EDA_HOTKEY Hk3DViewer( _HKI( "3D Viewer" ), HK_3D_VIEWER, GR_KB_ALT + '3' );
|
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkHelp( _HKI( "Help (this window)" ), HK_HELP, '?' );
|
2010-01-19 20:43:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Undo */
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkUndo( _HKI( "Undo" ), HK_UNDO, GR_KB_CTRL + 'Z', (int) wxID_UNDO );
|
2010-01-19 20:43:44 +00:00
|
|
|
|
|
|
|
/* Redo */
|
|
|
|
#if !defined( __WXMAC__ )
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkRedo( _HKI( "Redo" ), HK_REDO, GR_KB_CTRL + 'Y', (int) wxID_REDO );
|
2010-01-19 20:43:44 +00:00
|
|
|
#else
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkRedo( _HKI( "Redo" ), HK_REDO,
|
2011-09-29 16:49:40 +00:00
|
|
|
GR_KB_SHIFT + GR_KB_CTRL + 'Z',
|
|
|
|
(int) wxID_REDO );
|
2010-01-19 20:43:44 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitchTrackWidthToNext( _HKI( "Switch Track Width To Next" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_TRACK_WIDTH_TO_NEXT, 'W' );
|
2011-09-09 11:02:03 +00:00
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitchTrackWidthToPrevious( _HKI( "Switch Track Width To Previous" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_TRACK_WIDTH_TO_PREVIOUS, 'W'
|
|
|
|
+ GR_KB_CTRL );
|
2011-09-09 11:02:03 +00:00
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitchGridToFastGrid1( _HKI( "Switch Grid To Fast Grid1" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_GRID_TO_FASTGRID1, GR_KB_ALT + '1' );
|
2011-09-09 11:02:03 +00:00
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitchGridToFastGrid2( _HKI( "Switch Grid To Fast Grid2" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_GRID_TO_FASTGRID2, GR_KB_ALT + '2' );
|
2011-09-09 11:02:03 +00:00
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitchGridToNext( _HKI( "Switch Grid To Next" ),
|
2015-05-01 09:31:23 +00:00
|
|
|
HK_SWITCH_GRID_TO_NEXT, 'N' );
|
2011-09-09 11:02:03 +00:00
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitchGridToPrevious( _HKI( "Switch Grid To Previous" ),
|
2015-05-01 09:31:23 +00:00
|
|
|
HK_SWITCH_GRID_TO_PREVIOUS, 'N' + GR_KB_SHIFT );
|
2010-01-19 20:43:44 +00:00
|
|
|
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkSwitchUnits( _HKI( "Switch Units" ), HK_SWITCH_UNITS, 'U' + GR_KB_CTRL );
|
|
|
|
static EDA_HOTKEY HkTrackDisplayMode( _HKI( "Track Display Mode" ),
|
2011-09-29 16:49:40 +00:00
|
|
|
HK_SWITCH_TRACK_DISPLAY_MODE, 'K' );
|
2015-03-22 14:04:09 +00:00
|
|
|
static EDA_HOTKEY HkAddModule( _HKI( "Add Footprint" ), HK_ADD_MODULE, 'O' );
|
2011-09-09 11:02:03 +00:00
|
|
|
|
2007-09-10 04:51:01 +00:00
|
|
|
// List of common hotkey descriptors
|
2011-09-29 16:49:40 +00:00
|
|
|
EDA_HOTKEY* common_Hotkey_List[] =
|
2009-12-02 09:59:49 +00:00
|
|
|
{
|
|
|
|
&HkHelp, &HkZoomIn, &HkZoomOut,
|
2016-06-08 11:19:53 +00:00
|
|
|
&HkZoomRedraw, &HkZoomCenter, &HkZoomAuto, &HkZoomSelection, &Hk3DViewer,
|
2013-08-03 16:16:57 +00:00
|
|
|
&HkSwitchUnits, &HkResetLocalCoord, &HkSetGridOrigin, &HkResetGridOrigin,
|
2010-01-19 20:43:44 +00:00
|
|
|
&HkUndo, &HkRedo,
|
2014-04-03 07:40:55 +00:00
|
|
|
&HkMouseLeftClick,
|
|
|
|
&HkMouseLeftDClick,
|
2010-01-19 20:43:44 +00:00
|
|
|
NULL
|
2009-12-02 09:59:49 +00:00
|
|
|
};
|
2007-08-20 10:55:09 +00:00
|
|
|
|
2014-10-15 11:40:38 +00:00
|
|
|
// common hotkey descriptors only useful in footprint viewer
|
|
|
|
EDA_HOTKEY* common_basic_Hotkey_List[] =
|
|
|
|
{
|
|
|
|
&HkHelp, &HkZoomIn, &HkZoomOut,
|
2015-03-26 19:04:52 +00:00
|
|
|
&HkZoomRedraw, &HkZoomCenter, &HkZoomAuto, &Hk3DViewer,
|
2014-10-15 11:40:38 +00:00
|
|
|
&HkSwitchUnits, &HkResetLocalCoord,
|
|
|
|
&HkMouseLeftClick,
|
|
|
|
&HkMouseLeftDClick,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
// List of hotkey descriptors for Pcbnew
|
2011-09-29 16:49:40 +00:00
|
|
|
EDA_HOTKEY* board_edit_Hotkey_List[] =
|
2009-12-02 09:59:49 +00:00
|
|
|
{
|
|
|
|
&HkTrackDisplayMode, &HkDelete,
|
2009-12-03 12:28:04 +00:00
|
|
|
&HkBackspace,
|
2013-08-28 16:14:39 +00:00
|
|
|
&HkAddNewTrack, &HkAddThroughVia, &HkAddBlindBuriedVia,
|
|
|
|
&HkAddMicroVia,
|
2013-09-20 10:52:33 +00:00
|
|
|
&HkSelLayerAndAddThroughVia, &HkSelLayerAndAddBlindBuriedVia,
|
2010-06-16 15:01:45 +00:00
|
|
|
&HkSwitchTrackPosture,
|
2011-08-30 09:42:42 +00:00
|
|
|
&HkDragTrackKeepSlope,
|
2012-07-04 19:50:47 +00:00
|
|
|
&HkPlaceItem, &HkCopyItem,
|
2014-04-03 07:40:55 +00:00
|
|
|
&HkMoveItem,
|
|
|
|
&HkFlipItem,
|
2015-02-12 03:22:24 +00:00
|
|
|
&HkRotateItem, &HkMoveItemExact,
|
|
|
|
&HkDuplicateItem, &HkDuplicateItemAndIncrement, &HkCreateArray,
|
|
|
|
&HkDragFootprint,
|
2013-08-03 16:16:57 +00:00
|
|
|
&HkGetAndMoveFootprint, &HkLock_Unlock_Footprint, &HkSavefile, &HkSavefileAs,
|
2010-08-10 18:34:26 +00:00
|
|
|
&HkLoadfile, &HkFindItem, &HkEditBoardItem,
|
2015-03-14 07:43:36 +00:00
|
|
|
&HkEditWithModedit,
|
2010-08-10 18:34:26 +00:00
|
|
|
&HkSwitch2CopperLayer, &HkSwitch2InnerLayer1,
|
2009-12-02 09:59:49 +00:00
|
|
|
&HkSwitch2InnerLayer2, &HkSwitch2InnerLayer3, &HkSwitch2InnerLayer4,
|
|
|
|
&HkSwitch2InnerLayer5, &HkSwitch2InnerLayer6, &HkSwitch2ComponentLayer,
|
|
|
|
&HkSwitch2NextCopperLayer, &HkSwitch2PreviousCopperLayer,&HkAddModule,
|
2011-09-09 11:02:03 +00:00
|
|
|
&HkSwitchTrackWidthToNext, &HkSwitchTrackWidthToPrevious,&HkSwitchGridToFastGrid1,
|
|
|
|
&HkSwitchGridToFastGrid2, &HkSwitchGridToNext, &HkSwitchGridToPrevious,
|
2012-02-19 17:33:06 +00:00
|
|
|
&HkSwitchHighContrastMode,
|
2013-07-29 14:38:07 +00:00
|
|
|
&HkCanvasDefault, &HkCanvasCairo, &HkCanvasOpenGL,
|
2014-12-06 21:21:13 +00:00
|
|
|
&HkZoneFillOrRefill, &HkZoneRemoveFilled,
|
2009-12-03 19:11:34 +00:00
|
|
|
NULL
|
2009-12-02 09:59:49 +00:00
|
|
|
};
|
2007-08-20 10:55:09 +00:00
|
|
|
|
2007-08-30 08:15:05 +00:00
|
|
|
// List of hotkey descriptors for the module editor
|
2011-09-29 16:49:40 +00:00
|
|
|
EDA_HOTKEY* module_edit_Hotkey_List[] = {
|
2010-08-29 17:55:53 +00:00
|
|
|
&HkMoveItem, &HkRotateItem, &HkEditBoardItem,
|
2015-02-12 03:22:24 +00:00
|
|
|
&HkMoveItemExact, &HkDuplicateItem, &HkDuplicateItemAndIncrement,
|
2015-02-12 03:22:24 +00:00
|
|
|
&HkCreateArray, &HkDelete, &HkSaveModule,
|
2015-05-19 16:39:05 +00:00
|
|
|
&HkCanvasDefault, &HkCanvasCairo, &HkCanvasOpenGL,
|
2010-08-29 17:55:53 +00:00
|
|
|
NULL
|
|
|
|
};
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2014-10-15 11:40:38 +00:00
|
|
|
// List of hotkey descriptors for the module viewer
|
|
|
|
// Currently empty
|
|
|
|
EDA_HOTKEY* module_viewer_Hotkey_List[] = {
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2015-04-16 15:26:51 +00:00
|
|
|
// Keyword Identifiers (tags) in key code configuration file (section names)
|
|
|
|
// (.m_SectionTag member of a EDA_HOTKEY_CONFIG)
|
|
|
|
static wxString boardEditorSectionTag( wxT( "[pcbnew]" ) );
|
|
|
|
static wxString moduleEditSectionTag( wxT( "[footprinteditor]" ) );
|
|
|
|
|
|
|
|
// Titles for hotkey editor and hotkey display
|
|
|
|
static wxString commonSectionTitle( _HKI( "Common" ) );
|
|
|
|
static wxString boardEditorSectionTitle( _HKI( "Board Editor" ) );
|
|
|
|
static wxString moduleEditSectionTitle( _HKI( "Footprint Editor" ) );
|
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
// list of sections and corresponding hotkey list for Pcbnew
|
2015-04-16 15:26:51 +00:00
|
|
|
// (used to create an hotkey config file, and edit hotkeys )
|
2011-09-29 16:49:40 +00:00
|
|
|
struct EDA_HOTKEY_CONFIG g_Pcbnew_Editor_Hokeys_Descr[] = {
|
2015-04-16 15:26:51 +00:00
|
|
|
{ &g_CommonSectionTag, common_Hotkey_List, &commonSectionTitle },
|
|
|
|
{ &boardEditorSectionTag, board_edit_Hotkey_List, &boardEditorSectionTitle },
|
2015-11-04 08:48:34 +00:00
|
|
|
{ &moduleEditSectionTag, module_edit_Hotkey_List, &moduleEditSectionTitle },
|
2014-10-16 01:17:46 +00:00
|
|
|
{ NULL, NULL, NULL }
|
2011-09-29 16:49:40 +00:00
|
|
|
};
|
2007-09-06 11:52:26 +00:00
|
|
|
|
2010-11-24 15:10:33 +00:00
|
|
|
// list of sections and corresponding hotkey list for the board editor
|
|
|
|
// (used to list current hotkeys in the board editor)
|
2011-09-29 16:49:40 +00:00
|
|
|
struct EDA_HOTKEY_CONFIG g_Board_Editor_Hokeys_Descr[] = {
|
2015-04-16 15:26:51 +00:00
|
|
|
{ &g_CommonSectionTag, common_Hotkey_List, &commonSectionTitle },
|
|
|
|
{ &boardEditorSectionTag, board_edit_Hotkey_List, &boardEditorSectionTitle },
|
2011-09-29 16:49:40 +00:00
|
|
|
{ NULL, NULL, NULL }
|
|
|
|
};
|
2007-09-06 11:52:26 +00:00
|
|
|
|
2010-11-24 15:10:33 +00:00
|
|
|
// list of sections and corresponding hotkey list for the footprint editor
|
|
|
|
// (used to list current hotkeys in the module editor)
|
2011-09-29 16:49:40 +00:00
|
|
|
struct EDA_HOTKEY_CONFIG g_Module_Editor_Hokeys_Descr[] = {
|
2015-04-16 15:26:51 +00:00
|
|
|
{ &g_CommonSectionTag, common_Hotkey_List, &commonSectionTitle },
|
2015-11-04 08:48:34 +00:00
|
|
|
{ &moduleEditSectionTag, module_edit_Hotkey_List, &moduleEditSectionTitle },
|
2014-10-16 01:17:46 +00:00
|
|
|
{ NULL, NULL, NULL }
|
2011-09-29 16:49:40 +00:00
|
|
|
};
|
2012-02-09 20:33:38 +00:00
|
|
|
|
|
|
|
// list of sections and corresponding hotkey list for the footprint viewer
|
|
|
|
// (used to list current hotkeys in the module viewer)
|
|
|
|
struct EDA_HOTKEY_CONFIG g_Module_Viewer_Hokeys_Descr[] = {
|
2015-04-16 15:26:51 +00:00
|
|
|
{ &g_CommonSectionTag, common_basic_Hotkey_List, &commonSectionTitle },
|
2014-10-16 01:17:46 +00:00
|
|
|
{ NULL, NULL, NULL }
|
2012-02-09 20:33:38 +00:00
|
|
|
};
|
|
|
|
|
2014-10-15 11:40:38 +00:00
|
|
|
|
2015-05-05 18:39:42 +00:00
|
|
|
EDA_HOTKEY* FOOTPRINT_VIEWER_FRAME::GetHotKeyDescription( int aCommand ) const
|
|
|
|
{
|
|
|
|
EDA_HOTKEY* HK_Descr = GetDescriptorFromCommand( aCommand, common_Hotkey_List );
|
|
|
|
|
|
|
|
if( HK_Descr == NULL )
|
|
|
|
HK_Descr = GetDescriptorFromCommand( aCommand, module_viewer_Hotkey_List );
|
|
|
|
|
|
|
|
return HK_Descr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-15 11:40:38 +00:00
|
|
|
bool FOOTPRINT_VIEWER_FRAME::OnHotKey( wxDC* aDC, int aHotKey, const wxPoint& aPosition,
|
2016-04-18 15:03:59 +00:00
|
|
|
EDA_ITEM* aItem )
|
2014-10-15 11:40:38 +00:00
|
|
|
{
|
|
|
|
if( aHotKey == 0 )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
wxCommandEvent cmd( wxEVT_COMMAND_MENU_SELECTED );
|
|
|
|
cmd.SetEventObject( this );
|
|
|
|
|
|
|
|
/* Convert lower to upper case (the usual toupper function has problem with non ascii
|
|
|
|
* codes like function keys */
|
|
|
|
if( (aHotKey >= 'a') && (aHotKey <= 'z') )
|
|
|
|
aHotKey += 'A' - 'a';
|
|
|
|
|
|
|
|
EDA_HOTKEY* HK_Descr = GetDescriptorFromHotkey( aHotKey, common_Hotkey_List );
|
|
|
|
|
|
|
|
if( HK_Descr == NULL )
|
|
|
|
HK_Descr = GetDescriptorFromHotkey( aHotKey, module_viewer_Hotkey_List );
|
|
|
|
|
|
|
|
if( HK_Descr == NULL )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch( HK_Descr->m_Idcommand )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case HK_NOT_FOUND:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case HK_HELP: // Display Current hotkey list
|
|
|
|
DisplayHotkeyList( this, g_Module_Viewer_Hokeys_Descr );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HK_RESET_LOCAL_COORD: // set local (relative) coordinate origin
|
|
|
|
GetScreen()->m_O_Curseur = GetCrossHairPosition();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HK_LEFT_CLICK:
|
|
|
|
OnLeftClick( aDC, aPosition );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HK_LEFT_DCLICK: // Simulate a double left click: generate 2 events
|
|
|
|
OnLeftClick( aDC, aPosition );
|
|
|
|
OnLeftDClick( aDC, aPosition );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HK_SWITCH_UNITS:
|
|
|
|
cmd.SetId( (g_UserUnit == INCHES) ?
|
|
|
|
ID_TB_OPTIONS_SELECT_UNIT_MM : ID_TB_OPTIONS_SELECT_UNIT_INCH );
|
|
|
|
GetEventHandler()->ProcessEvent( cmd );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HK_ZOOM_IN:
|
|
|
|
cmd.SetId( ID_POPUP_ZOOM_IN );
|
|
|
|
GetEventHandler()->ProcessEvent( cmd );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HK_ZOOM_OUT:
|
|
|
|
cmd.SetId( ID_POPUP_ZOOM_OUT );
|
|
|
|
GetEventHandler()->ProcessEvent( cmd );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HK_ZOOM_REDRAW:
|
|
|
|
cmd.SetId( ID_ZOOM_REDRAW );
|
|
|
|
GetEventHandler()->ProcessEvent( cmd );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HK_ZOOM_CENTER:
|
|
|
|
cmd.SetId( ID_POPUP_ZOOM_CENTER );
|
|
|
|
GetEventHandler()->ProcessEvent( cmd );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HK_ZOOM_AUTO:
|
|
|
|
cmd.SetId( ID_ZOOM_PAGE );
|
|
|
|
GetEventHandler()->ProcessEvent( cmd );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|