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" )
269 .FriendlyName(
_(
"Paste Special..." ) )
270 .Tooltip(
_(
"Paste item(s) from clipboard with options" ) )
274 .Name(
"common.Interactive.duplicate" )
276 .DefaultHotkey(
MD_CTRL +
'D' )
277 .LegacyHotkeyName(
"Duplicate" )
278 .FriendlyName(
_(
"Duplicate" ) )
279 .Tooltip(
_(
"Duplicates the selected item(s)" ) )
283 .Name(
"common.Interactive.delete" )
285#
if defined( __WXMAC__ )
286 .DefaultHotkey( WXK_BACK )
288 .DefaultHotkey( WXK_DELETE )
290 .LegacyHotkeyName(
"Delete Item" )
291 .FriendlyName(
_(
"Delete" ) )
292 .Tooltip(
_(
"Delete selected item(s)" ) )
297 .Name(
"common.Interactive.deleteTool" )
299 .FriendlyName(
_(
"Interactive Delete Tool" ) )
300 .Tooltip(
_(
"Delete clicked items" ) )
305 .Name(
"common.Control.leftJustify" )
307 .FriendlyName(
_(
"Left Justify" ) )
308 .Tooltip(
_(
"Left-justify fields and text items" ) )
312 .Name(
"common.Control.centerJustify" )
314 .FriendlyName(
_(
"Center Justify" ) )
315 .Tooltip(
_(
"Center-justify fields and text items" ) )
319 .Name(
"common.Control.rightJustify" )
321 .FriendlyName(
_(
"Right Justify" ) )
322 .Tooltip(
_(
"Right-justify fields and text items" ) )
326 .Name(
"common.Control.expandAll" )
328 .FriendlyName(
_(
"Expand All" ) )
332 .Name(
"common.Control.collapseAll" )
334 .FriendlyName(
_(
"Collapse All" ) )
340 .Name(
"eeschema.Interactive.increment" )
342 .FriendlyName(
_(
"Increment" ) )
343 .Tooltip(
_(
"Increment the selected item(s)" ) ) );
346 .Name(
"eeschema.Interactive.incrementPrimary" )
348 .FriendlyName(
_(
"Increment Primary" ) )
349 .Tooltip(
_(
"Increment the primary field of the selected item(s)" ) )
353 .Name(
"eeschema.Interactive.decrementPrimary" )
355 .FriendlyName(
_(
"Decrement Primary" ) )
356 .Tooltip(
_(
"Decrement the primary field of the selected item(s)" ) )
360 .Name(
"eeschema.Interactive.incrementSecondary" )
362 .FriendlyName(
_(
"Increment Secondary" ) )
363 .Tooltip(
_(
"Increment the secondary field of the selected item(s)" ) )
367 .Name(
"eeschema.Interactive.decrementSecondary" )
369 .FriendlyName(
_(
"Decrement Secondary" ) )
370 .Tooltip(
_(
"Decrement the secondary field of the selected item(s)" ) )
374 .Name(
"common.InteractiveSelection.SelectColumns" )
376 .FriendlyName(
_(
"Select Column(s)" ) )
377 .Tooltip(
_(
"Select complete column(s) containing the current selected cell(s)" ) )
381 .Name(
"common.InteractiveSelection.Rows" )
383 .FriendlyName(
_(
"Select Row(s)" ) )
384 .Tooltip(
_(
"Select complete row(s) containing the current selected cell(s)" ) )
388 .Name(
"common.InteractiveSelection.SelectTable" )
390 .FriendlyName(
_(
"Select Table" ) )
391 .Tooltip(
_(
"Select parent table of selected cell(s)" ) )
395 .Name(
"common.TableEditor.addRowAbove" )
397 .FriendlyName(
_(
"Add Row Above" ) )
398 .Tooltip(
_(
"Insert a new table row above the selected cell(s)" ) )
402 .Name(
"common.TableEditor.addRowBelow" )
404 .FriendlyName(
_(
"Add Row Below" ) )
405 .Tooltip(
_(
"Insert a new table row below the selected cell(s)" ) )
409 .Name(
"common.TableEditor.addColBefore" )
411 .FriendlyName(
_(
"Add Column Before" ) )
412 .Tooltip(
_(
"Insert a new table column before the selected cell(s)" ) )
416 .Name(
"common.TableEditor.addColAfter" )
418 .FriendlyName(
_(
"Add Column After" ) )
419 .Tooltip(
_(
"Insert a new table column after the selected cell(s)" ) )
423 .Name(
"common.TableEditor.deleteRows" )
425 .FriendlyName(
_(
"Delete Row(s)" ) )
426 .Tooltip(
_(
"Delete rows containing the currently selected cell(s)" ) )
430 .Name(
"common.TableEditor.deleteColumns" )
432 .FriendlyName(
_(
"Delete Column(s)" ) )
433 .Tooltip(
_(
"Delete columns containing the currently selected cell(s)" ) )
437 .Name(
"common.TableEditor.mergeCells" )
439 .FriendlyName(
_(
"Merge Cells" ) )
440 .Tooltip(
_(
"Turn selected table cells into a single cell" ) )
444 .Name(
"common.TableEditor.unmergeCell" )
446 .FriendlyName(
_(
"Unmerge Cells" ) )
447 .Tooltip(
_(
"Turn merged table cells back into separate cells." ) )
451 .Name(
"pcbnew.TableEditor.editTable" )
453 .DefaultHotkey(
MD_CTRL +
'E' )
454 .FriendlyName(
_(
"Edit Table..." ) )
458 .Name(
"common.Control.activatePointEditor" )
462 .Name(
"common.Interactive.cycleArcEditMode" )
464 .DefaultHotkey(
MD_CTRL +
' ' )
465 .FriendlyName(
_(
"Cycle Arc Editing Mode" ) )
466 .Tooltip(
_(
"Switch to a different method of editing arcs" ) ) );
469 .Name(
"common.Interactive.search" )
471 .DefaultHotkey(
MD_CTRL +
'G' )
472 .LegacyHotkeyName(
"Search" )
473 .FriendlyName(
_(
"Search" ) )
474 .Tooltip(
_(
"Show/hide the search panel" ) )
478 .Name(
"common.Interactive.find" )
480 .DefaultHotkey(
MD_CTRL +
'F' )
481 .LegacyHotkeyName(
"Find" )
482 .FriendlyName(
_(
"Find" ) )
486 .Name(
"common.Interactive.findAndReplace" )
489 .LegacyHotkeyName(
"Find and Replace" )
490 .FriendlyName(
_(
"Find and Replace" ) )
494 .Name(
"common.Interactive.findNext" )
496 .DefaultHotkey( WXK_F3 )
497 .LegacyHotkeyName(
"Find Next" )
498 .FriendlyName(
_(
"Find Next" ) )
502 .Name(
"common.Interactive.findPrevious" )
504 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_F3 ) )
505 .LegacyHotkeyName(
"Find Previous" )
506 .FriendlyName(
_(
"Find Previous" ) )
510 .Name(
"common.Interactive.findNextMarker" )
513 .LegacyHotkeyName(
"Find Next Marker" )
514 .FriendlyName(
_(
"Find Next Marker" ) )
518 .Name(
"common.Interactive.replaceAndFindNext" )
520 .FriendlyName(
_(
"Replace and Find Next" ) )
524 .Name(
"common.Interactive.replaceAll" )
526 .FriendlyName(
_(
"Replace All" ) )
530 .Name(
"common.Control.updateFind" )
536 .Name(
"common.Checker.prevMarker" )
538 .FriendlyName(
_(
"Previous Marker" ) )
542 .Name(
"common.Checker.nextMarker" )
544 .FriendlyName(
_(
"Next Marker" ) )
548 .Name(
"common.Checker.excludeMarker" )
550 .FriendlyName(
_(
"Exclude Marker" ) )
551 .Tooltip(
_(
"Mark current violation in Checker window as an exclusion" ) )
556 .Name(
"common.Control.zoomRedraw" )
558#
if defined( __WXMAC__ )
559 .DefaultHotkey(
MD_CTRL +
'R' )
561 .DefaultHotkey( WXK_F5 )
563 .LegacyHotkeyName(
"Zoom Redraw" )
564 .FriendlyName(
_(
"Refresh" ) )
568 .Name(
"common.Control.zoomFitScreen" )
570#
if defined( __WXMAC__ )
571 .DefaultHotkey(
MD_CTRL +
'0' )
573 .DefaultHotkey( WXK_HOME )
575 .LegacyHotkeyName(
"Zoom Auto" )
576 .FriendlyName(
_(
"Zoom to Fit" ) )
580 .Name(
"common.Control.zoomFitObjects" )
582 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_HOME ) )
583 .FriendlyName(
_(
"Zoom to Objects" ) )
587 .Name(
"common.Control.zoomFitSelection" )
589 .FriendlyName(
_(
"Zoom to Selected Objects" ) ) );
592 .Name(
"common.Control.zoomIn" )
594#
if defined( __WXMAC__ )
595 .DefaultHotkey(
MD_CTRL +
'+' )
597 .DefaultHotkey( WXK_F1 )
599 .LegacyHotkeyName(
"Zoom In" )
600 .FriendlyName(
_(
"Zoom In at Cursor" ) )
604 .Name(
"common.Control.zoomOut" )
606#
if defined( __WXMAC__ )
607 .DefaultHotkey(
MD_CTRL +
'-' )
609 .DefaultHotkey( WXK_F2 )
611 .LegacyHotkeyName(
"Zoom Out" )
612 .FriendlyName(
_(
"Zoom Out at Cursor" ) )
616 .Name(
"common.Control.zoomInCenter" )
618 .FriendlyName(
_(
"Zoom In" ) )
622 .Name(
"common.Control.zoomOutCenter" )
624 .FriendlyName(
_(
"Zoom Out" ) )
628 .Name(
"common.Control.zoomInHorizontally" )
630 .FriendlyName(
_(
"Zoom In Horizontally" ) )
631 .Tooltip(
_(
"Zoom in horizontally the plot area" ) )
635 .Name(
"common.Control.zoomOutHorizontally" )
637 .FriendlyName(
_(
"Zoom Out Horizontally" ) )
638 .Tooltip(
_(
"Zoom out horizontally the plot area" ) )
642 .Name(
"common.Control.zoomInVertically" )
644 .FriendlyName(
_(
"Zoom In Vertically" ) )
645 .Tooltip(
_(
"Zoom in vertically the plot area" ) )
649 .Name(
"common.Control.zoomOutVertically" )
651 .FriendlyName(
_(
"Zoom Out Vertically" ) )
652 .Tooltip(
_(
"Zoom out vertically the plot area" ) )
656 .Name(
"common.Control.zoomCenter" )
658 .DefaultHotkey( WXK_F4 )
659 .LegacyHotkeyName(
"Zoom Center" )
660 .FriendlyName(
_(
"Center on Cursor" ) )
664 .Name(
"common.Control.zoomTool" )
666 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_F5 ) )
667 .LegacyHotkeyName(
"Zoom to Selection" )
668 .FriendlyName(
_(
"Zoom to Selection" ) )
673 .Name(
"common.Control.undoZoom" )
675 .FriendlyName(
_(
"Undo Last Zoom" ) )
676 .Tooltip(
_(
"Return zoom to level prior to last zoom action" ) )
680 .Name(
"common.Control.redoZoom" )
682 .FriendlyName(
_(
"Redo Last Zoom" ) )
683 .Tooltip(
_(
"Return zoom to level prior to last zoom undo" ) )
687 .Name(
"common.Control.zoomPreset" )
689 .Parameter<int>( 0 ) );
692 .Name(
"common.Control.centerContents" )
696 .Name(
"common.Control.centerSelection" )
698 .FriendlyName(
_(
"Pan to Center Selected Objects" ) ) );
702 .Name(
"common.Control.cursorUp" )
704 .DefaultHotkey( WXK_UP )
705 .FriendlyName(
_(
"Cursor Up" ) )
707 .Parameter( CURSOR_UP ) );
710 .Name(
"common.Control.cursorDown" )
712 .DefaultHotkey( WXK_DOWN )
713 .FriendlyName(
_(
"Cursor Down" ) )
715 .Parameter( CURSOR_DOWN ) );
718 .Name(
"common.Control.cursorLeft" )
720 .DefaultHotkey( WXK_LEFT )
721 .FriendlyName(
_(
"Cursor Left" ) )
723 .Parameter( CURSOR_LEFT ) );
726 .Name(
"common.Control.cursorRight" )
728 .DefaultHotkey( WXK_RIGHT )
729 .FriendlyName(
_(
"Cursor Right" ) )
731 .Parameter( CURSOR_RIGHT ) );
735 .Name(
"common.Control.cursorUpFast" )
737 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_UP ) )
738 .FriendlyName(
_(
"Cursor Up Fast" ) )
740 .Parameter( CURSOR_UP_FAST ) );
743 .Name(
"common.Control.cursorDownFast" )
745 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_DOWN ) )
746 .FriendlyName(
_(
"Cursor Down Fast" ) )
748 .Parameter( CURSOR_DOWN_FAST ) );
751 .Name(
"common.Control.cursorLeftFast" )
753 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_LEFT ) )
754 .FriendlyName(
_(
"Cursor Left Fast" ) )
756 .Parameter( CURSOR_LEFT_FAST ) );
759 .Name(
"common.Control.cursorRightFast" )
761 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_RIGHT ) )
762 .FriendlyName(
_(
"Cursor Right Fast" ) )
764 .Parameter( CURSOR_RIGHT_FAST ) );
767 .Name(
"common.Control.cursorClick" )
769 .DefaultHotkey( WXK_RETURN )
770 .LegacyHotkeyName(
"Mouse Left Click" )
771 .FriendlyName(
_(
"Click" ) )
772 .Tooltip(
_(
"Performs left mouse button click" ) )
774 .Parameter( CURSOR_CLICK ) );
777 .Name(
"common.Control.cursorDblClick" )
779 .DefaultHotkey( WXK_END )
780 .LegacyHotkeyName(
"Mouse Left Double Click" )
781 .FriendlyName(
_(
"Double-click" ) )
782 .Tooltip(
_(
"Performs left mouse button double-click" ) )
784 .Parameter( CURSOR_DBL_CLICK ) );
787 .Name(
"common.Control.refreshPreview" )
791 .Name(
"common.Control.pinLibrary" )
793 .FriendlyName(
_(
"Pin Library" ) )
794 .Tooltip(
_(
"Keep the library at the top of the list" ) ) );
797 .Name(
"common.Control.unpinLibrary" )
799 .FriendlyName(
_(
"Unpin Library" ) )
800 .Tooltip(
_(
"No longer keep the library at the top of the list" ) ) );
803 .Name(
"common.Control.showLibraryTree" )
805 .FriendlyName(
_(
"Library Tree" ) )
809 .Name(
"common.Control.hideLibraryTree" )
811 .FriendlyName(
_(
"Hide Library Tree" ) )
815 .Name(
"common.Control.libraryTreeSearch" )
817 .FriendlyName(
_(
"Focus Library Tree Search Field" ) )
818 .DefaultHotkey(
MD_CTRL +
'L' ) );
821 .Name(
"common.Control.panUp" )
823 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_UP ) )
824 .FriendlyName(
_(
"Pan Up" ) )
826 .Parameter( CURSOR_UP ) );
829 .Name(
"common.Control.panDown" )
831 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_DOWN ) )
832 .FriendlyName(
_(
"Pan Down" ) )
834 .Parameter( CURSOR_DOWN ) );
837 .Name(
"common.Control.panLeft" )
839 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_LEFT ) )
840 .FriendlyName(
_(
"Pan Left" ) )
842 .Parameter( CURSOR_LEFT ) );
845 .Name(
"common.Control.panRight" )
847 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_RIGHT ) )
848 .FriendlyName(
_(
"Pan Right" ) )
850 .Parameter( CURSOR_RIGHT ) );
854 .Name(
"common.Control.gridFast1" )
856 .DefaultHotkey(
MD_ALT +
'1' )
857 .LegacyHotkeyName(
"Switch Grid To Fast Grid1" )
858 .FriendlyName(
_(
"Switch to Fast Grid 1" ) ) );
861 .Name(
"common.Control.gridFast2" )
863 .DefaultHotkey(
MD_ALT +
'2' )
864 .LegacyHotkeyName(
"Switch Grid To Fast Grid2" )
865 .FriendlyName(
_(
"Switch to Fast Grid 2" ) ) );
868 .Name(
"common.Control.gridFastCycle" )
870 .DefaultHotkey(
MD_ALT +
'4' )
871 .LegacyHotkeyName(
"Switch Grid To Next Fast Grid" )
872 .FriendlyName(
_(
"Cycle Fast Grid" ) ) );
875 .Name(
"common.Control.gridNext" )
877 .DefaultHotkey(
'N' )
878 .LegacyHotkeyName(
"Switch Grid To Next" )
879 .FriendlyName(
_(
"Switch to Next Grid" ) ) );
882 .Name(
"common.Control.gridPrev" )
885 .LegacyHotkeyName(
"Switch Grid To Previous" )
886 .FriendlyName(
_(
"Switch to Previous Grid" ) ) );
889 .Name(
"common.Control.gridSetOrigin" )
891 .LegacyHotkeyName(
"Set Grid Origin" )
892 .FriendlyName(
_(
"Grid Origin" ) )
893 .Tooltip(
_(
"Place the grid origin point" ) )
895 .Parameter<VECTOR2D*>(
nullptr ) );
898 .Name(
"common.Control.gridResetOrigin" )
900 .LegacyHotkeyName(
"Reset Grid Origin" )
901 .FriendlyName(
_(
"Reset Grid Origin" ) ) );
904 .Name(
"common.Control.gridPreset" )
906 .Parameter<int>( 0 ) );
909 .Name(
"common.Control.toggleGrid" )
911 .FriendlyName(
_(
"Show Grid" ) )
912 .Tooltip(
_(
"Display background grid in the edit window" ) )
916 .Name(
"common.Control.toggleGridOverrides" )
919 .FriendlyName(
_(
"Grid Overrides" ) )
920 .Tooltip(
_(
"Enables item-specific grids that override the current grid" ) )
924 .Name(
"common.Control.editGrids" )
926 .FriendlyName(
_(
"Edit Grids..." ) )
927 .Tooltip(
_(
"Edit grid definitions" ) )
931 .Name(
"common.Control.editGridOrigin" )
933 .FriendlyName(
_(
"Grid Origin..." ) )
934 .Tooltip(
_(
"Set the grid origin point" ) ) );
937 .Name(
"common.Control.imperialUnits" )
939 .FriendlyName(
_(
"Inches" ) )
945 .Name(
"common.Control.mils" )
947 .FriendlyName(
_(
"Mils" ) )
953 .Name(
"common.Control.metricUnits" )
955 .FriendlyName(
_(
"Millimeters" ) )
961 .Name(
"common.Control.updateUnits" )
965 .Name(
"common.Control.updatePreferences" )
969 .Name(
"common.Control.selectColumns" )
971 .FriendlyName(
_(
"Select Columns..." ) ) );
974 .Name(
"common.Control.toggleUnits" )
976 .DefaultHotkey(
MD_CTRL +
'U' )
977 .LegacyHotkeyName(
"Switch Units" )
978 .FriendlyName(
_(
"Switch units" ) )
979 .Tooltip(
_(
"Switch between imperial and metric units" ) )
983 .Name(
"common.Control.togglePolarCoords" )
985 .FriendlyName(
_(
"Polar Coordinates" ) )
986 .Tooltip(
_(
"Switch between polar and cartesian coordinate systems" ) )
990 .Name(
"common.Control.resetLocalCoords" )
992 .DefaultHotkey(
' ' )
993 .LegacyHotkeyName(
"Reset Local Coordinates" )
994 .FriendlyName(
_(
"Reset Local Coordinates" ) ) );
997 .Name(
"common.Control.toggleCursor" )
1001 .LegacyHotkeyName(
"Toggle Cursor Display (Modern Toolset only)" )
1002 .FriendlyName(
_(
"Always Show Crosshairs" ) )
1003 .Tooltip(
_(
"Display crosshairs even when not drawing objects" ) )
1007 .Name(
"common.Control.toggleCursorStyle" )
1009 .FriendlyName(
_(
"Full-Window Crosshairs" ) )
1010 .Tooltip(
_(
"Switch display of full-window crosshairs" ) )
1014 .Name(
"common.Control.highContrastMode" )
1016 .LegacyHotkeyName(
"Toggle High Contrast Mode" )
1017 .FriendlyName(
_(
"Inactive Layer View Mode" ) )
1018 .Tooltip(
_(
"Toggle inactive layers between normal and dimmed" ) )
1022 .Name(
"common.Control.highContrastModeCycle" )
1024 .DefaultHotkey(
'H' )
1025 .FriendlyName(
_(
"Inactive Layer View Mode (3-state)" ) )
1026 .Tooltip(
_(
"Cycle inactive layers between normal, dimmed, and hidden" ) )
1030 .Name(
"common.Control.toggleBoundingBoxes" )
1032 .FriendlyName(
_(
"Draw Bounding Boxes" ) )
1036 .Name(
"common.InteractiveSelection.selectionTool" )
1038 .FriendlyName(
_(
"Select item(s)" ) )
1043 .Name(
"common.Interactive.measureTool" )
1047 .LegacyHotkeyName(
"Measure Distance (Modern Toolset only)" )
1048 .FriendlyName(
_(
"Measure Tool" ) )
1049 .Tooltip(
_(
"Interactively measure distance between points" ) )
1054 .Name(
"common.InteractivePicker.pickerTool" )
1059 .Name(
"common.InteractivePicker.pickerSubTool" )
1063 .Name(
"common.Control.showProjectManager" )
1065 .FriendlyName(
_(
"Switch to Project Manager" ) )
1066 .Tooltip(
_(
"Show project window" ) )
1070 .Name(
"common.Control.show3DViewer" )
1072 .DefaultHotkey(
MD_ALT +
'3' )
1073 .LegacyHotkeyName(
"3D Viewer" )
1074 .FriendlyName(
_(
"3D Viewer" ) )
1075 .Tooltip(
_(
"Show 3D viewer window" ) )
1079 .Name(
"common.Control.showSymbolBrowser" )
1081 .FriendlyName(
_(
"Symbol Library Browser" ) )
1087 .Name(
"common.Control.showSymbolEditor" )
1089 .FriendlyName(
_(
"Symbol Editor" ) )
1090 .Tooltip(
_(
"Create, delete and edit schematic symbols" ) )
1096 .Name(
"common.Control.showFootprintBrowser" )
1098 .FriendlyName(
_(
"Footprint Library Browser" ) )
1104 .Name(
"common.Control.showFootprintEditor" )
1106 .FriendlyName(
_(
"Footprint Editor" ) )
1107 .Tooltip(
_(
"Create, delete and edit board footprints" ) )
1113 .Name(
"common.Control.showProperties" )
1115 .FriendlyName(
_(
"Properties" ) )
1116 .Tooltip(
_(
"Show/hide the properties manager" ) )
1120 .Name(
"common.Control.showDatasheet" )
1122 .DefaultHotkey(
'D' )
1123 .LegacyHotkeyName(
"Show Datasheet" )
1124 .FriendlyName(
_(
"Show Datasheet" ) )
1125 .Tooltip(
_(
"Open the datasheet in a browser" ) )
1129 .Name(
"common.Control.updatePcbFromSchematic" )
1131 .DefaultHotkey( WXK_F8 )
1132 .LegacyHotkeyName(
"Update PCB from Schematic" )
1133 .FriendlyName(
_(
"Update PCB from Schematic..." ) )
1134 .Tooltip(
_(
"Update PCB with changes made to schematic" ) )
1138 .Name(
"common.Control.updateSchematicFromPCB" )
1140 .FriendlyName(
_(
"Update Schematic from PCB..." ) )
1141 .Tooltip(
_(
"Update schematic with changes made to PCB" ) )
1145 .Name(
"common.SuiteControl.openPreferences" )
1147 .DefaultHotkey(
MD_CTRL +
',' )
1148 .FriendlyName(
_(
"Preferences..." ) )
1149 .Tooltip(
_(
"Show preferences for all open tools" ) )
1151 .UIId( wxID_PREFERENCES ) );
1154 .Name(
"common.SuiteControl.configurePaths" )
1156 .FriendlyName(
_(
"Configure Paths..." ) )
1157 .Tooltip(
_(
"Edit path configuration environment variables" ) )
1161 .Name(
"common.SuiteControl.showSymbolLibTable" )
1163 .FriendlyName(
_(
"Manage Symbol Libraries..." ) )
1164 .Tooltip(
_(
"Edit the global and project symbol library lists" ) )
1168 .Name(
"common.SuiteControl.showFootprintLibTable" )
1170 .FriendlyName(
_(
"Manage Footprint Libraries..." ) )
1171 .Tooltip(
_(
"Edit the global and project footprint library lists" ) )
1175 .Name(
"common.SuiteControl.showDesignBLockLibTable" )
1177 .FriendlyName(
_(
"Manage Design Block Libraries..." ) )
1178 .Tooltip(
_(
"Edit the global and project design block library lists" ) )
1182 .Name(
"common.SuiteControl.gettingStarted" )
1184 .FriendlyName(
_(
"Getting Started with KiCad" ) )
1185 .Tooltip(
_(
"Open \"Getting Started in KiCad\" guide for beginners" ) )
1189 .Name(
"common.SuiteControl.help" )
1191 .FriendlyName(
_(
"Help" ) )
1192 .Tooltip(
_(
"Open product documentation in a web browser" ) )
1196 .Name(
"common.SuiteControl.about" )
1198 .FriendlyName(
_(
"About KiCad" ) )
1203 .Name(
"common.SuiteControl.listHotKeys" )
1205 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_F1 ) )
1206 .LegacyHotkeyName(
"List Hotkeys" )
1207 .FriendlyName(
_(
"List Hotkeys..." ) )
1208 .Tooltip(
_(
"Displays current hotkeys table and corresponding commands" ) )
1212 .Name(
"common.SuiteControl.getInvolved" )
1214 .FriendlyName(
_(
"Get Involved" ) )
1215 .Tooltip(
_(
"Open \"Contribute to KiCad\" in a web browser" ) )
1219 .Name(
"common.SuiteControl.donate" )
1221 .FriendlyName(
_(
"Donate" ) )
1222 .Tooltip(
_(
"Open \"Donate to KiCad\" in a web browser" ) ) );
1225 .Name(
"common.SuiteControl.reportBug" )
1227 .FriendlyName(
_(
"Report Bug" ) )
1228 .Tooltip(
_(
"Report a problem with KiCad" ) )
1232 .Name(
"common.Control.ddaddLibrary" )
1238 .Name(
"common.API.pluginsReload" )
1240 .FriendlyName(
_(
"Refresh Plugins" ) )
1241 .Tooltip(
_(
"Reload all python plugins and refresh plugin menus" ) )
1247 .Name(
"common.Embed.embededFile" )
1249 .FriendlyName(
_(
"Embedded Files" ) )
1250 .Tooltip(
_(
"Manage embedded files" ) ) );
1253 .Name(
"common.Embed.removeFile" )
1255 .FriendlyName(
_(
"Remove File" ) )
1256 .Tooltip(
_(
"Remove an embedded file" ) ) );
1259 .Name(
"common.Embed.extractFile" )
1261 .FriendlyName(
_(
"Extract File" ) )
1262 .Tooltip(
_(
"Extract an embedded file" ) ) );
1267 "common.Interactive.pointSelected" );
1273 "common.Interactive.connectivityChanged" );
1276 "common.Interactive.modified" );
1279 "common.Interactive.inhibit" );
1281 "common.Interactive.uninhibit" );
1284 "common.Interactive.disambiguate" );
1287 "common.Interactive.gridChangedByKey" );
1291 "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