41 .Name(
"common.Control.new" )
44 .LegacyHotkeyName(
"New" )
45 .FriendlyName(
_(
"New..." ) )
46 .Tooltip(
_(
"Create a new document in the editor" ) )
50 .Name(
"common.Control.newLibrary" )
52 .FriendlyName(
_(
"New Library..." ) )
53 .Tooltip(
_(
"Create a new library folder" ) )
57 .Name(
"common.Control.addLibrary" )
59 .FriendlyName(
_(
"Add Library..." ) )
60 .Tooltip(
_(
"Add an existing library folder" ) )
64 .Name(
"common.Control.open" )
67 .LegacyHotkeyName(
"Open" )
68 .FriendlyName(
_(
"Open..." ) )
69 .Tooltip(
_(
"Open existing document" ) )
73 .Name(
"common.Control.openWithTextEditor" )
75 .FriendlyName(
_(
"Edit in a Text Editor..." ) )
76 .Tooltip(
_(
"Open a library file with a text editor" ) )
80 .Name(
"common.Control.openDirectory" )
82 .FriendlyName(
_(
"Open in file explorer..." ) )
83 .Tooltip(
_(
"Open a library file with system file explorer" ) )
87 .Name(
"common.Control.save" )
90 .LegacyHotkeyName(
"Save" )
91 .FriendlyName(
_(
"Save" ) )
92 .Tooltip(
_(
"Save changes" ) )
96 .Name(
"common.Control.saveAs" )
99 .LegacyHotkeyName(
"Save As" )
100 .FriendlyName(
_(
"Save As..." ) )
101 .Tooltip(
_(
"Save current document to another location" ) )
105 .Name(
"common.Control.saveCopy" )
107 .FriendlyName(
_(
"Save a Copy..." ) )
108 .Tooltip(
_(
"Save a copy of the current document to another location" ) )
112 .Name(
"common.Control.saveAll" )
114 .FriendlyName(
_(
"Save All" ) )
115 .Tooltip(
_(
"Save all changes" ) )
119 .Name(
"common.Control.revert" )
121 .FriendlyName(
_(
"Revert" ) )
122 .Tooltip(
_(
"Throw away changes" ) )
127 .Name(
"common.Control.pageSettings" )
129 .FriendlyName(
_(
"Page Settings..." ) )
130 .Tooltip(
_(
"Settings for paper size and title block info" ) )
134 .Name(
"common.Control.print" )
136 .DefaultHotkey(
MD_CTRL +
'P' )
137 .LegacyHotkeyName(
"Print" )
138 .FriendlyName(
_(
"Print..." ) )
142 .Name(
"common.Control.plot" )
144 .FriendlyName(
_(
"Plot..." ) )
148 .Name(
"common.Control.quit" )
150 .FriendlyName(
_(
"Quit" ) )
151 .Tooltip(
_(
"Close the current editor" ) )
156 .Name(
"common.Interactive.cancel" )
159 .FriendlyName(
_(
"Cancel" ) )
160 .Tooltip(
_(
"Cancel current tool" ) )
165 .Name(
"common.Interactive.finish" )
167 .DefaultHotkey( WXK_END )
168 .FriendlyName(
_(
"Finish" ) )
169 .Tooltip(
_(
"Finish current tool" ) )
174 .Name(
"common.Control.showContextMenu" )
176 .FriendlyName(
_(
"Show Context Menu" ) )
177 .Tooltip(
_(
"Perform the right-mouse-button action" ) )
179 .Parameter( CURSOR_RIGHT_CLICK ) );
182 .Name(
"common.Interactive.updateMenu" )
186 .Name(
"common.Interactive.undo" )
188 .DefaultHotkey(
MD_CTRL +
'Z' )
189 .LegacyHotkeyName(
"Undo" )
190 .FriendlyName(
_(
"Undo" ) )
194 .Name(
"common.Interactive.redo" )
196#
if defined( __WXMAC__ )
199 .DefaultHotkey(
MD_CTRL +
'Y' )
201 .LegacyHotkeyName(
"Redo" )
202 .FriendlyName(
_(
"Redo" ) )
210 .Name(
"common.Interactive.cut" )
212 .DefaultHotkey(
MD_CTRL +
'X' )
213 .LegacyHotkeyName(
"Cut" )
214 .FriendlyName(
_(
"Cut" ) )
215 .Tooltip(
_(
"Cut selected item(s) to clipboard" ) )
221 .Name(
"common.Interactive.copy" )
223 .DefaultHotkey(
MD_CTRL +
'C' )
224 .LegacyHotkeyName(
"Copy" )
225 .FriendlyName(
_(
"Copy" ) )
226 .Tooltip(
_(
"Copy selected item(s) to clipboard" ) )
229 .UIId( wxID_COPY ) );
232 .Name(
"common.Interactive.copyAsText" )
235 .FriendlyName(
_(
"Copy as Text" ) )
236 .Tooltip(
_(
"Copy selected item(s) to clipboard as text" ) )
241 .Name(
"common.Interactive.paste" )
243 .DefaultHotkey(
MD_CTRL +
'V' )
244 .LegacyHotkeyName(
"Paste" )
245 .FriendlyName(
_(
"Paste" ) )
246 .Tooltip(
_(
"Paste item(s) from clipboard" ) )
249 .UIId( wxID_PASTE ) );
252 .Name(
"common.Interactive.selectAll" )
254 .DefaultHotkey(
MD_CTRL +
'A' )
255 .FriendlyName(
_(
"Select All" ) )
256 .Tooltip(
_(
"Select all items on screen" ) ) );
259 .Name(
"common.Interactive.unselectAll" )
262 .FriendlyName(
_(
"Unselect All" ) )
263 .Tooltip(
_(
"Unselect all items on screen" ) ) );
266 .Name(
"common.Interactive.pasteSpecial" )
268 .FriendlyName(
_(
"Paste Special..." ) )
269 .Tooltip(
_(
"Paste item(s) from clipboard with annotation options" ) )
273 .Name(
"common.Interactive.duplicate" )
275 .DefaultHotkey(
MD_CTRL +
'D' )
276 .LegacyHotkeyName(
"Duplicate" )
277 .FriendlyName(
_(
"Duplicate" ) )
278 .Tooltip(
_(
"Duplicates the selected item(s)" ) )
282 .Name(
"common.Interactive.delete" )
284#
if defined( __WXMAC__ )
285 .DefaultHotkey( WXK_BACK )
287 .DefaultHotkey( WXK_DELETE )
289 .LegacyHotkeyName(
"Delete Item" )
290 .FriendlyName(
_(
"Delete" ) )
291 .Tooltip(
_(
"Delete selected item(s)" ) )
296 .Name(
"common.Interactive.deleteTool" )
298 .FriendlyName(
_(
"Interactive Delete Tool" ) )
299 .Tooltip(
_(
"Delete clicked items" ) )
304 .Name(
"common.Control.leftJustify" )
306 .FriendlyName(
_(
"Left Justify" ) )
307 .Tooltip(
_(
"Left-justify fields and text items" ) )
311 .Name(
"common.Control.centerJustify" )
313 .FriendlyName(
_(
"Center Justify" ) )
314 .Tooltip(
_(
"Center-justify fields and text items" ) )
318 .Name(
"common.Control.rightJustify" )
320 .FriendlyName(
_(
"Right Justify" ) )
321 .Tooltip(
_(
"Right-justify fields and text items" ) )
325 .Name(
"common.Control.expandAll" )
327 .FriendlyName(
_(
"Expand All" ) )
331 .Name(
"common.Control.collapseAll" )
333 .FriendlyName(
_(
"Collapse All" ) )
339 .Name(
"eeschema.Interactive.increment" )
341 .FriendlyName(
_(
"Increment" ) )
342 .Tooltip(
_(
"Increment the selected item(s)" ) ) );
345 .Name(
"eeschema.Interactive.incrementPrimary" )
347 .FriendlyName(
_(
"Increment Primary" ) )
348 .Tooltip(
_(
"Increment the primary field of the selected item(s)" ) )
352 .Name(
"eeschema.Interactive.decrementPrimary" )
354 .FriendlyName(
_(
"Decrement Primary" ) )
355 .Tooltip(
_(
"Decrement the primary field of the selected item(s)" ) )
359 .Name(
"eeschema.Interactive.incrementSecondary" )
361 .FriendlyName(
_(
"Increment Secondary" ) )
362 .Tooltip(
_(
"Increment the secondary field of the selected item(s)" ) )
366 .Name(
"eeschema.Interactive.decrementSecondary" )
368 .FriendlyName(
_(
"Decrement Secondary" ) )
369 .Tooltip(
_(
"Decrement the secondary field of the selected item(s)" ) )
373 .Name(
"common.InteractiveSelection.SelectColumns" )
375 .FriendlyName(
_(
"Select Column(s)" ) )
376 .Tooltip(
_(
"Select complete column(s) containing the current selected cell(s)" ) )
380 .Name(
"common.InteractiveSelection.Rows" )
382 .FriendlyName(
_(
"Select Row(s)" ) )
383 .Tooltip(
_(
"Select complete row(s) containing the current selected cell(s)" ) )
387 .Name(
"common.InteractiveSelection.SelectTable" )
389 .FriendlyName(
_(
"Select Table" ) )
390 .Tooltip(
_(
"Select parent table of selected cell(s)" ) )
394 .Name(
"common.TableEditor.addRowAbove" )
396 .FriendlyName(
_(
"Add Row Above" ) )
397 .Tooltip(
_(
"Insert a new table row above the selected cell(s)" ) )
401 .Name(
"common.TableEditor.addRowBelow" )
403 .FriendlyName(
_(
"Add Row Below" ) )
404 .Tooltip(
_(
"Insert a new table row below the selected cell(s)" ) )
408 .Name(
"common.TableEditor.addColBefore" )
410 .FriendlyName(
_(
"Add Column Before" ) )
411 .Tooltip(
_(
"Insert a new table column before the selected cell(s)" ) )
415 .Name(
"common.TableEditor.addColAfter" )
417 .FriendlyName(
_(
"Add Column After" ) )
418 .Tooltip(
_(
"Insert a new table column after the selected cell(s)" ) )
422 .Name(
"common.TableEditor.deleteRows" )
424 .FriendlyName(
_(
"Delete Row(s)" ) )
425 .Tooltip(
_(
"Delete rows containing the currently selected cell(s)" ) )
429 .Name(
"common.TableEditor.deleteColumns" )
431 .FriendlyName(
_(
"Delete Column(s)" ) )
432 .Tooltip(
_(
"Delete columns containing the currently selected cell(s)" ) )
436 .Name(
"common.TableEditor.mergeCells" )
438 .FriendlyName(
_(
"Merge Cells" ) )
439 .Tooltip(
_(
"Turn selected table cells into a single cell" ) )
443 .Name(
"common.TableEditor.unmergeCell" )
445 .FriendlyName(
_(
"Unmerge Cells" ) )
446 .Tooltip(
_(
"Turn merged table cells back into separate cells." ) )
450 .Name(
"pcbnew.TableEditor.editTable" )
452 .DefaultHotkey(
MD_CTRL +
'E' )
453 .FriendlyName(
_(
"Edit Table" ) )
457 .Name(
"common.Control.activatePointEditor" )
461 .Name(
"common.Interactive.cycleArcEditMode" )
463 .DefaultHotkey(
MD_CTRL +
' ' )
464 .FriendlyName(
_(
"Cycle Arc Editing Mode" ) )
465 .Tooltip(
_(
"Switch to a different method of editing arcs" ) ) );
468 .Name(
"common.Interactive.search" )
470 .DefaultHotkey(
MD_CTRL +
'G' )
471 .LegacyHotkeyName(
"Search" )
472 .FriendlyName(
_(
"Search" ) )
473 .Tooltip(
_(
"Show/hide the search panel" ) )
477 .Name(
"common.Interactive.find" )
479 .DefaultHotkey(
MD_CTRL +
'F' )
480 .LegacyHotkeyName(
"Find" )
481 .FriendlyName(
_(
"Find" ) )
485 .Name(
"common.Interactive.findAndReplace" )
488 .LegacyHotkeyName(
"Find and Replace" )
489 .FriendlyName(
_(
"Find and Replace" ) )
493 .Name(
"common.Interactive.findNext" )
495 .DefaultHotkey( WXK_F3 )
496 .LegacyHotkeyName(
"Find Next" )
497 .FriendlyName(
_(
"Find Next" ) )
501 .Name(
"common.Interactive.findPrevious" )
503 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_F3 ) )
504 .LegacyHotkeyName(
"Find Previous" )
505 .FriendlyName(
_(
"Find Previous" ) )
509 .Name(
"common.Interactive.findNextMarker" )
512 .LegacyHotkeyName(
"Find Next Marker" )
513 .FriendlyName(
_(
"Find Next Marker" ) )
517 .Name(
"common.Interactive.replaceAndFindNext" )
519 .FriendlyName(
_(
"Replace and Find Next" ) )
523 .Name(
"common.Interactive.replaceAll" )
525 .FriendlyName(
_(
"Replace All" ) )
529 .Name(
"common.Control.updateFind" )
535 .Name(
"common.Checker.prevMarker" )
537 .FriendlyName(
_(
"Previous Marker" ) )
541 .Name(
"common.Checker.nextMarker" )
543 .FriendlyName(
_(
"Next Marker" ) )
547 .Name(
"common.Checker.excludeMarker" )
549 .FriendlyName(
_(
"Exclude Marker" ) )
550 .Tooltip(
_(
"Mark current violation in Checker window as an exclusion" ) )
555 .Name(
"common.Control.zoomRedraw" )
557#
if defined( __WXMAC__ )
558 .DefaultHotkey(
MD_CTRL +
'R' )
560 .DefaultHotkey( WXK_F5 )
562 .LegacyHotkeyName(
"Zoom Redraw" )
563 .FriendlyName(
_(
"Refresh" ) )
567 .Name(
"common.Control.zoomFitScreen" )
569#
if defined( __WXMAC__ )
570 .DefaultHotkey(
MD_CTRL +
'0' )
572 .DefaultHotkey( WXK_HOME )
574 .LegacyHotkeyName(
"Zoom Auto" )
575 .FriendlyName(
_(
"Zoom to Fit" ) )
579 .Name(
"common.Control.zoomFitObjects" )
581 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_HOME ) )
582 .FriendlyName(
_(
"Zoom to Objects" ) )
586 .Name(
"common.Control.zoomFitSelection" )
588 .FriendlyName(
_(
"Zoom to Selected Objects" ) ) );
591 .Name(
"common.Control.zoomIn" )
593#
if defined( __WXMAC__ )
594 .DefaultHotkey(
MD_CTRL +
'+' )
596 .DefaultHotkey( WXK_F1 )
598 .LegacyHotkeyName(
"Zoom In" )
599 .FriendlyName(
_(
"Zoom In at Cursor" ) )
603 .Name(
"common.Control.zoomOut" )
605#
if defined( __WXMAC__ )
606 .DefaultHotkey(
MD_CTRL +
'-' )
608 .DefaultHotkey( WXK_F2 )
610 .LegacyHotkeyName(
"Zoom Out" )
611 .FriendlyName(
_(
"Zoom Out at Cursor" ) )
615 .Name(
"common.Control.zoomInCenter" )
617 .FriendlyName(
_(
"Zoom In" ) )
621 .Name(
"common.Control.zoomOutCenter" )
623 .FriendlyName(
_(
"Zoom Out" ) )
627 .Name(
"common.Control.zoomInHorizontally" )
629 .FriendlyName(
_(
"Zoom In Horizontally" ) )
630 .Tooltip(
_(
"Zoom in horizontally the plot area" ) )
634 .Name(
"common.Control.zoomOutHorizontally" )
636 .FriendlyName(
_(
"Zoom Out Horizontally" ) )
637 .Tooltip(
_(
"Zoom out horizontally the plot area" ) )
641 .Name(
"common.Control.zoomInVertically" )
643 .FriendlyName(
_(
"Zoom In Vertically" ) )
644 .Tooltip(
_(
"Zoom in vertically the plot area" ) )
648 .Name(
"common.Control.zoomOutVertically" )
650 .FriendlyName(
_(
"Zoom Out Vertically" ) )
651 .Tooltip(
_(
"Zoom out vertically the plot area" ) )
655 .Name(
"common.Control.zoomCenter" )
657 .DefaultHotkey( WXK_F4 )
658 .LegacyHotkeyName(
"Zoom Center" )
659 .FriendlyName(
_(
"Center on Cursor" ) )
663 .Name(
"common.Control.zoomTool" )
665 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_F5 ) )
666 .LegacyHotkeyName(
"Zoom to Selection" )
667 .FriendlyName(
_(
"Zoom to Selection" ) )
672 .Name(
"common.Control.undoZoom" )
674 .FriendlyName(
_(
"Undo Last Zoom" ) )
675 .Tooltip(
_(
"Return zoom to level prior to last zoom action" ) )
679 .Name(
"common.Control.redoZoom" )
681 .FriendlyName(
_(
"Redo Last Zoom" ) )
682 .Tooltip(
_(
"Return zoom to level prior to last zoom undo" ) )
686 .Name(
"common.Control.zoomPreset" )
688 .Parameter<int>( 0 ) );
691 .Name(
"common.Control.centerContents" )
695 .Name(
"common.Control.centerSelection" )
697 .FriendlyName(
_(
"Pan to Center Selected Objects" ) ) );
701 .Name(
"common.Control.cursorUp" )
703 .DefaultHotkey( WXK_UP )
704 .FriendlyName(
_(
"Cursor Up" ) )
706 .Parameter( CURSOR_UP ) );
709 .Name(
"common.Control.cursorDown" )
711 .DefaultHotkey( WXK_DOWN )
712 .FriendlyName(
_(
"Cursor Down" ) )
714 .Parameter( CURSOR_DOWN ) );
717 .Name(
"common.Control.cursorLeft" )
719 .DefaultHotkey( WXK_LEFT )
720 .FriendlyName(
_(
"Cursor Left" ) )
722 .Parameter( CURSOR_LEFT ) );
725 .Name(
"common.Control.cursorRight" )
727 .DefaultHotkey( WXK_RIGHT )
728 .FriendlyName(
_(
"Cursor Right" ) )
730 .Parameter( CURSOR_RIGHT ) );
734 .Name(
"common.Control.cursorUpFast" )
736 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_UP ) )
737 .FriendlyName(
_(
"Cursor Up Fast" ) )
739 .Parameter( CURSOR_UP_FAST ) );
742 .Name(
"common.Control.cursorDownFast" )
744 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_DOWN ) )
745 .FriendlyName(
_(
"Cursor Down Fast" ) )
747 .Parameter( CURSOR_DOWN_FAST ) );
750 .Name(
"common.Control.cursorLeftFast" )
752 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_LEFT ) )
753 .FriendlyName(
_(
"Cursor Left Fast" ) )
755 .Parameter( CURSOR_LEFT_FAST ) );
758 .Name(
"common.Control.cursorRightFast" )
760 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_RIGHT ) )
761 .FriendlyName(
_(
"Cursor Right Fast" ) )
763 .Parameter( CURSOR_RIGHT_FAST ) );
766 .Name(
"common.Control.cursorClick" )
768 .DefaultHotkey( WXK_RETURN )
769 .LegacyHotkeyName(
"Mouse Left Click" )
770 .FriendlyName(
_(
"Click" ) )
771 .Tooltip(
_(
"Performs left mouse button click" ) )
773 .Parameter( CURSOR_CLICK ) );
776 .Name(
"common.Control.cursorDblClick" )
778 .DefaultHotkey( WXK_END )
779 .LegacyHotkeyName(
"Mouse Left Double Click" )
780 .FriendlyName(
_(
"Double-click" ) )
781 .Tooltip(
_(
"Performs left mouse button double-click" ) )
783 .Parameter( CURSOR_DBL_CLICK ) );
786 .Name(
"common.Control.refreshPreview" )
790 .Name(
"common.Control.pinLibrary" )
792 .FriendlyName(
_(
"Pin Library" ) )
793 .Tooltip(
_(
"Keep the library at the top of the list" ) ) );
796 .Name(
"common.Control.unpinLibrary" )
798 .FriendlyName(
_(
"Unpin Library" ) )
799 .Tooltip(
_(
"No longer keep the library at the top of the list" ) ) );
802 .Name(
"common.Control.showLibraryTree" )
804 .FriendlyName(
_(
"Library Tree" ) )
808 .Name(
"common.Control.hideLibraryTree" )
810 .FriendlyName(
_(
"Hide Library Tree" ) )
814 .Name(
"common.Control.libraryTreeSearch" )
816 .FriendlyName(
_(
"Focus Library Tree Search Field" ) )
817 .DefaultHotkey(
MD_CTRL +
'L' ) );
820 .Name(
"common.Control.panUp" )
822 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_UP ) )
823 .FriendlyName(
_(
"Pan Up" ) )
825 .Parameter( CURSOR_UP ) );
828 .Name(
"common.Control.panDown" )
830 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_DOWN ) )
831 .FriendlyName(
_(
"Pan Down" ) )
833 .Parameter( CURSOR_DOWN ) );
836 .Name(
"common.Control.panLeft" )
838 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_LEFT ) )
839 .FriendlyName(
_(
"Pan Left" ) )
841 .Parameter( CURSOR_LEFT ) );
844 .Name(
"common.Control.panRight" )
846 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_RIGHT ) )
847 .FriendlyName(
_(
"Pan Right" ) )
849 .Parameter( CURSOR_RIGHT ) );
853 .Name(
"common.Control.gridFast1" )
855 .DefaultHotkey(
MD_ALT +
'1' )
856 .LegacyHotkeyName(
"Switch Grid To Fast Grid1" )
857 .FriendlyName(
_(
"Switch to Fast Grid 1" ) ) );
860 .Name(
"common.Control.gridFast2" )
862 .DefaultHotkey(
MD_ALT +
'2' )
863 .LegacyHotkeyName(
"Switch Grid To Fast Grid2" )
864 .FriendlyName(
_(
"Switch to Fast Grid 2" ) ) );
867 .Name(
"common.Control.gridFastCycle" )
869 .DefaultHotkey(
MD_ALT +
'4' )
870 .LegacyHotkeyName(
"Switch Grid To Next Fast Grid" )
871 .FriendlyName(
_(
"Cycle Fast Grid" ) ) );
874 .Name(
"common.Control.gridNext" )
876 .DefaultHotkey(
'N' )
877 .LegacyHotkeyName(
"Switch Grid To Next" )
878 .FriendlyName(
_(
"Switch to Next Grid" ) ) );
881 .Name(
"common.Control.gridPrev" )
884 .LegacyHotkeyName(
"Switch Grid To Previous" )
885 .FriendlyName(
_(
"Switch to Previous Grid" ) ) );
888 .Name(
"common.Control.gridSetOrigin" )
890 .LegacyHotkeyName(
"Set Grid Origin" )
891 .FriendlyName(
_(
"Grid Origin" ) )
892 .Tooltip(
_(
"Place the grid origin point" ) )
894 .Parameter<VECTOR2D*>(
nullptr ) );
897 .Name(
"common.Control.gridResetOrigin" )
899 .LegacyHotkeyName(
"Reset Grid Origin" )
900 .FriendlyName(
_(
"Reset Grid Origin" ) ) );
903 .Name(
"common.Control.gridPreset" )
905 .Parameter<int>( 0 ) );
908 .Name(
"common.Control.toggleGrid" )
910 .FriendlyName(
_(
"Show Grid" ) )
911 .Tooltip(
_(
"Display background grid in the edit window" ) )
915 .Name(
"common.Control.toggleGridOverrides" )
918 .FriendlyName(
_(
"Grid Overrides" ) )
919 .Tooltip(
_(
"Enables item-specific grids that override the current grid" ) )
923 .Name(
"common.Control.editGrids" )
925 .FriendlyName(
_(
"Edit Grids..." ) )
926 .Tooltip(
_(
"Edit grid definitions" ) )
930 .Name(
"common.Control.editGridOrigin" )
932 .FriendlyName(
_(
"Grid Origin..." ) )
933 .Tooltip(
_(
"Set the grid origin point" ) ) );
936 .Name(
"common.Control.imperialUnits" )
938 .FriendlyName(
_(
"Inches" ) )
944 .Name(
"common.Control.mils" )
946 .FriendlyName(
_(
"Mils" ) )
952 .Name(
"common.Control.metricUnits" )
954 .FriendlyName(
_(
"Millimeters" ) )
960 .Name(
"common.Control.updateUnits" )
964 .Name(
"common.Control.updatePreferences" )
968 .Name(
"common.Control.selectColumns" )
970 .FriendlyName(
_(
"Select Columns..." ) ) );
973 .Name(
"common.Control.toggleUnits" )
975 .DefaultHotkey(
MD_CTRL +
'U' )
976 .LegacyHotkeyName(
"Switch Units" )
977 .FriendlyName(
_(
"Switch units" ) )
978 .Tooltip(
_(
"Switch between imperial and metric units" ) )
982 .Name(
"common.Control.togglePolarCoords" )
984 .FriendlyName(
_(
"Polar Coordinates" ) )
985 .Tooltip(
_(
"Switch between polar and cartesian coordinate systems" ) )
989 .Name(
"common.Control.resetLocalCoords" )
991 .DefaultHotkey(
' ' )
992 .LegacyHotkeyName(
"Reset Local Coordinates" )
993 .FriendlyName(
_(
"Reset Local Coordinates" ) ) );
996 .Name(
"common.Control.toggleCursor" )
1000 .LegacyHotkeyName(
"Toggle Cursor Display (Modern Toolset only)" )
1001 .FriendlyName(
_(
"Always Show Crosshairs" ) )
1002 .Tooltip(
_(
"Display crosshairs even when not drawing objects" ) )
1006 .Name(
"common.Control.toggleCursorStyle" )
1008 .FriendlyName(
_(
"Full-Window Crosshairs" ) )
1009 .Tooltip(
_(
"Switch display of full-window crosshairs" ) )
1013 .Name(
"common.Control.highContrastMode" )
1015 .LegacyHotkeyName(
"Toggle High Contrast Mode" )
1016 .FriendlyName(
_(
"Inactive Layer View Mode" ) )
1017 .Tooltip(
_(
"Toggle inactive layers between normal and dimmed" ) )
1021 .Name(
"common.Control.highContrastModeCycle" )
1023 .DefaultHotkey(
'H' )
1024 .FriendlyName(
_(
"Inactive Layer View Mode (3-state)" ) )
1025 .Tooltip(
_(
"Cycle inactive layers between normal, dimmed, and hidden" ) )
1029 .Name(
"common.Control.toggleBoundingBoxes" )
1031 .FriendlyName(
_(
"Draw Bounding Boxes" ) )
1035 .Name(
"common.InteractiveSelection.selectionTool" )
1037 .FriendlyName(
_(
"Select item(s)" ) )
1042 .Name(
"common.Interactive.measureTool" )
1046 .LegacyHotkeyName(
"Measure Distance (Modern Toolset only)" )
1047 .FriendlyName(
_(
"Measure Tool" ) )
1048 .Tooltip(
_(
"Interactively measure distance between points" ) )
1053 .Name(
"common.InteractivePicker.pickerTool" )
1058 .Name(
"common.InteractivePicker.pickerSubTool" )
1062 .Name(
"common.Control.showProjectManager" )
1064 .FriendlyName(
_(
"Switch to Project Manager" ) )
1065 .Tooltip(
_(
"Show project window" ) )
1069 .Name(
"common.Control.show3DViewer" )
1071 .DefaultHotkey(
MD_ALT +
'3' )
1072 .LegacyHotkeyName(
"3D Viewer" )
1073 .FriendlyName(
_(
"3D Viewer" ) )
1074 .Tooltip(
_(
"Show 3D viewer window" ) )
1078 .Name(
"common.Control.showSymbolBrowser" )
1080 .FriendlyName(
_(
"Symbol Library Browser" ) )
1086 .Name(
"common.Control.showSymbolEditor" )
1088 .FriendlyName(
_(
"Symbol Editor" ) )
1089 .Tooltip(
_(
"Create, delete and edit schematic symbols" ) )
1095 .Name(
"common.Control.showFootprintBrowser" )
1097 .FriendlyName(
_(
"Footprint Library Browser" ) )
1103 .Name(
"common.Control.showFootprintEditor" )
1105 .FriendlyName(
_(
"Footprint Editor" ) )
1106 .Tooltip(
_(
"Create, delete and edit board footprints" ) )
1112 .Name(
"common.Control.showProperties" )
1114 .FriendlyName(
_(
"Properties" ) )
1115 .Tooltip(
_(
"Show/hide the properties manager" ) )
1119 .Name(
"common.Control.showDatasheet" )
1121 .DefaultHotkey(
'D' )
1122 .LegacyHotkeyName(
"Show Datasheet" )
1123 .FriendlyName(
_(
"Show Datasheet" ) )
1124 .Tooltip(
_(
"Open the datasheet in a browser" ) )
1128 .Name(
"common.Control.updatePcbFromSchematic" )
1130 .DefaultHotkey( WXK_F8 )
1131 .LegacyHotkeyName(
"Update PCB from Schematic" )
1132 .FriendlyName(
_(
"Update PCB from Schematic..." ) )
1133 .Tooltip(
_(
"Update PCB with changes made to schematic" ) )
1137 .Name(
"common.Control.updateSchematicFromPCB" )
1139 .FriendlyName(
_(
"Update Schematic from PCB..." ) )
1140 .Tooltip(
_(
"Update schematic with changes made to PCB" ) )
1144 .Name(
"common.SuiteControl.openPreferences" )
1146 .DefaultHotkey(
MD_CTRL +
',' )
1147 .FriendlyName(
_(
"Preferences..." ) )
1148 .Tooltip(
_(
"Show preferences for all open tools" ) )
1150 .UIId( wxID_PREFERENCES ) );
1153 .Name(
"common.SuiteControl.configurePaths" )
1155 .FriendlyName(
_(
"Configure Paths..." ) )
1156 .Tooltip(
_(
"Edit path configuration environment variables" ) )
1160 .Name(
"common.SuiteControl.showSymbolLibTable" )
1162 .FriendlyName(
_(
"Manage Symbol Libraries..." ) )
1163 .Tooltip(
_(
"Edit the global and project symbol library lists" ) )
1167 .Name(
"common.SuiteControl.showFootprintLibTable" )
1169 .FriendlyName(
_(
"Manage Footprint Libraries..." ) )
1170 .Tooltip(
_(
"Edit the global and project footprint library lists" ) )
1174 .Name(
"common.SuiteControl.showDesignBLockLibTable" )
1176 .FriendlyName(
_(
"Manage Design Block Libraries..." ) )
1177 .Tooltip(
_(
"Edit the global and project design block library lists" ) )
1181 .Name(
"common.SuiteControl.gettingStarted" )
1183 .FriendlyName(
_(
"Getting Started with KiCad" ) )
1184 .Tooltip(
_(
"Open \"Getting Started in KiCad\" guide for beginners" ) )
1188 .Name(
"common.SuiteControl.help" )
1190 .FriendlyName(
_(
"Help" ) )
1191 .Tooltip(
_(
"Open product documentation in a web browser" ) )
1195 .Name(
"common.SuiteControl.about" )
1197 .FriendlyName(
_(
"About KiCad" ) )
1202 .Name(
"common.SuiteControl.listHotKeys" )
1204 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_F1 ) )
1205 .LegacyHotkeyName(
"List Hotkeys" )
1206 .FriendlyName(
_(
"List Hotkeys..." ) )
1207 .Tooltip(
_(
"Displays current hotkeys table and corresponding commands" ) )
1211 .Name(
"common.SuiteControl.getInvolved" )
1213 .FriendlyName(
_(
"Get Involved" ) )
1214 .Tooltip(
_(
"Open \"Contribute to KiCad\" in a web browser" ) )
1218 .Name(
"common.SuiteControl.donate" )
1220 .FriendlyName(
_(
"Donate" ) )
1221 .Tooltip(
_(
"Open \"Donate to KiCad\" in a web browser" ) ) );
1224 .Name(
"common.SuiteControl.reportBug" )
1226 .FriendlyName(
_(
"Report Bug" ) )
1227 .Tooltip(
_(
"Report a problem with KiCad" ) )
1231 .Name(
"common.Control.ddaddLibrary" )
1237 .Name(
"common.API.pluginsReload" )
1239 .FriendlyName(
_(
"Refresh Plugins" ) )
1240 .Tooltip(
_(
"Reload all python plugins and refresh plugin menus" ) )
1246 .Name(
"common.Embed.embededFile" )
1248 .FriendlyName(
_(
"Embedded Files" ) )
1249 .Tooltip(
_(
"Manage embedded files" ) ) );
1252 .Name(
"common.Embed.removeFile" )
1254 .FriendlyName(
_(
"Remove File" ) )
1255 .Tooltip(
_(
"Remove an embedded file" ) ) );
1258 .Name(
"common.Embed.extractFile" )
1260 .FriendlyName(
_(
"Extract File" ) )
1261 .Tooltip(
_(
"Extract an embedded file" ) ) );
1280 "common.Interactive.gridChangedByKey" );
1283 "common.Interactive.contrastModeChangedByKeyEvent" );
@ gerbview_show_negative_objects
static TOOL_ACTION addRowAbove
static TOOL_ACTION addColBefore
static TOOL_ACTION gridProperties
static TOOL_ACTION decrementPrimary
static TOOL_ACTION gridFastCycle
static TOOL_ACTION updatePcbFromSchematic
static TOOL_ACTION toggleGrid
static TOOL_ACTION pickerSubTool
static TOOL_ACTION excludeMarker
static TOOL_ACTION cancelInteractive
static TOOL_ACTION nextMarker
static TOOL_ACTION zoomRedraw
static TOOL_ACTION millimetersUnits
static TOOL_ACTION unselectAll
static TOOL_ACTION gridFast1
static TOOL_ACTION openWithTextEditor
static TOOL_ACTION gridPrev
static TOOL_ACTION revert
static TOOL_ACTION show3DViewer
static TOOL_ACTION showLibraryTree
static TOOL_ACTION reportBug
static TOOL_ACTION decrementSecondary
static TOOL_ACTION replaceAll
static TOOL_ACTION updatePreferences
static TOOL_ACTION cursorLeft
static TOOL_ACTION zoomOutCenter
static TOOL_ACTION togglePolarCoords
static TOOL_ACTION saveAs
static TOOL_ACTION addLibrary
static TOOL_ACTION zoomIn
static TOOL_ACTION pluginsReload
static TOOL_ACTION extractFile
static TOOL_ACTION cursorLeftFast
static TOOL_ACTION deleteRows
static TOOL_ACTION zoomRedo
static TOOL_ACTION addRowBelow
static TOOL_ACTION pickerTool
static TOOL_ACTION cycleArcEditMode
static TOOL_ACTION gridPreset
static TOOL_ACTION gridResetOrigin
static TOOL_ACTION updateUnits
static TOOL_ACTION updateFind
static TOOL_ACTION showSymbolLibTable
static TOOL_ACTION openDirectory
static TOOL_ACTION deleteColumns
static TOOL_ACTION showSymbolEditor
static TOOL_ACTION showSymbolBrowser
static TOOL_ACTION pasteSpecial
static TOOL_ACTION findPrevious
static TOOL_ACTION unmergeCells
static TOOL_ACTION showDatasheet
static TOOL_ACTION zoomFitSelection
static TOOL_ACTION selectColumns
static TOOL_ACTION centerSelection
static TOOL_ACTION mergeCells
static TOOL_ACTION donate
static TOOL_ACTION cursorDown
static TOOL_ACTION zoomOut
static TOOL_ACTION addColAfter
static TOOL_ACTION editTable
static TOOL_ACTION findAndReplace
static TOOL_ACTION milsUnits
static TOOL_ACTION highContrastModeCycle
static TOOL_ACTION listHotKeys
static TOOL_ACTION cursorRightFast
static TOOL_ACTION openPreferences
static TOOL_ACTION pinLibrary
static TOOL_ACTION toggleBoundingBoxes
static TOOL_ACTION replaceAndFindNext
static TOOL_ACTION showContextMenu
static TOOL_ACTION toggleCursor
static TOOL_ACTION zoomOutHorizontally
static TOOL_ACTION getInvolved
static TOOL_ACTION rightJustify
static TOOL_ACTION showFootprintLibTable
static TOOL_ACTION centerContents
static TOOL_ACTION zoomCenter
static TOOL_ACTION panDown
static TOOL_ACTION selectLibTreeColumns
static TOOL_ACTION saveAll
static TOOL_ACTION findNext
static TOOL_ACTION zoomOutVertically
static TOOL_ACTION cursorDblClick
static TOOL_ACTION pageSettings
static TOOL_ACTION showSearch
static TOOL_ACTION incrementSecondary
static TOOL_ACTION cursorDownFast
static TOOL_ACTION removeFile
Cursor control event types.
static TOOL_ACTION prevMarker
static TOOL_ACTION selectRows
static TOOL_ACTION duplicate
static TOOL_ACTION inchesUnits
static TOOL_ACTION highContrastMode
static TOOL_ACTION embeddedFiles
static TOOL_ACTION incrementPrimary
static TOOL_ACTION cursorUpFast
static TOOL_ACTION toggleCursorStyle
static TOOL_ACTION gridOrigin
static TOOL_ACTION measureTool
static TOOL_ACTION zoomInHorizontally
static TOOL_ACTION panLeft
static TOOL_ACTION updateMenu
static TOOL_ACTION activatePointEditor
static TOOL_ACTION libraryTreeSearch
static TOOL_ACTION doDelete
static TOOL_ACTION selectionTool
static TOOL_ACTION cursorClick
static TOOL_ACTION zoomFitScreen
static TOOL_ACTION zoomPreset
static TOOL_ACTION deleteTool
static TOOL_ACTION hideLibraryTree
static TOOL_ACTION zoomTool
static TOOL_ACTION updateSchematicFromPcb
static TOOL_ACTION unpinLibrary
static TOOL_ACTION increment
static TOOL_ACTION leftJustify
static TOOL_ACTION showDesignBlockLibTable
static TOOL_ACTION showFootprintEditor
static TOOL_ACTION findNextMarker
static TOOL_ACTION showProperties
static TOOL_ACTION zoomFitObjects
static TOOL_ACTION toggleUnits
static TOOL_ACTION zoomInCenter
static TOOL_ACTION newLibrary
static TOOL_ACTION panRight
static TOOL_ACTION saveCopy
static TOOL_ACTION selectTable
static TOOL_ACTION gridSetOrigin
static TOOL_ACTION gridFast2
static TOOL_ACTION expandAll
static TOOL_ACTION zoomInVertically
static TOOL_ACTION ddAddLibrary
static TOOL_ACTION configurePaths
static TOOL_ACTION showProjectManager
static TOOL_ACTION gettingStarted
static TOOL_ACTION copyAsText
static TOOL_ACTION cursorUp
Cursor control with keyboard.
static TOOL_ACTION refreshPreview
static TOOL_ACTION zoomUndo
static TOOL_ACTION showFootprintBrowser
static TOOL_ACTION toggleGridOverrides
static TOOL_ACTION finishInteractive
static TOOL_ACTION gridNext
static TOOL_ACTION cursorRight
static TOOL_ACTION selectAll
static TOOL_ACTION collapseAll
static TOOL_ACTION resetLocalCoords
static TOOL_ACTION centerJustify
static const TOOL_EVENT DisambiguatePoint
Used for hotkey feedback.
static const TOOL_EVENT ClearedEvent
static const TOOL_EVENT InhibitSelectionEditing
static const TOOL_EVENT GridChangedByKeyEvent
static const TOOL_EVENT UndoRedoPreEvent
static const TOOL_EVENT SelectedEvent
static const TOOL_EVENT SelectedItemsModified
Selected items were moved, this can be very high frequency on the canvas, use with care.
static const TOOL_EVENT UninhibitSelectionEditing
Used to inform tool that it should display the disambiguation menu.
static const TOOL_EVENT UndoRedoPostEvent
static const TOOL_EVENT PointSelectedEvent
static const TOOL_EVENT SelectedItemsMoved
Used to inform tools that the selection should temporarily be non-editable.
static const TOOL_EVENT ContrastModeChangedByKeyEvent
static const TOOL_EVENT ConnectivityChangedEvent
Selected item had a property changed (except movement)
static const TOOL_EVENT UnselectedEvent
@ FRAME_SCH_SYMBOL_EDITOR