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" ) )
175 .Name(
"common.Control.showContextMenu" )
177 .FriendlyName(
_(
"Show Context Menu" ) )
178 .Tooltip(
_(
"Perform the right-mouse-button action" ) )
180 .Parameter( CURSOR_RIGHT_CLICK )
184 .Name(
"common.Interactive.updateMenu" )
189 .Name(
"common.Interactive.undo" )
191 .DefaultHotkey(
MD_CTRL +
'Z' )
192 .LegacyHotkeyName(
"Undo" )
193 .FriendlyName(
_(
"Undo" ) )
197 .Name(
"common.Interactive.redo" )
199#
if defined( __WXMAC__ )
202 .DefaultHotkey(
MD_CTRL +
'Y' )
204 .LegacyHotkeyName(
"Redo" )
205 .FriendlyName(
_(
"Redo" ) )
213 .Name(
"common.Interactive.cut" )
215 .DefaultHotkey(
MD_CTRL +
'X' )
216 .LegacyHotkeyName(
"Cut" )
217 .FriendlyName(
_(
"Cut" ) )
218 .Tooltip(
_(
"Cut selected item(s) to clipboard" ) )
224 .Name(
"common.Interactive.copy" )
226 .DefaultHotkey(
MD_CTRL +
'C' )
227 .LegacyHotkeyName(
"Copy" )
228 .FriendlyName(
_(
"Copy" ) )
229 .Tooltip(
_(
"Copy selected item(s) to clipboard" ) )
232 .UIId( wxID_COPY ) );
235 .Name(
"common.Interactive.copyAsText" )
238 .FriendlyName(
_(
"Copy as Text" ) )
239 .Tooltip(
_(
"Copy selected item(s) to clipboard as text" ) )
244 .Name(
"common.Interactive.paste" )
246 .DefaultHotkey(
MD_CTRL +
'V' )
247 .LegacyHotkeyName(
"Paste" )
248 .FriendlyName(
_(
"Paste" ) )
249 .Tooltip(
_(
"Paste item(s) from clipboard" ) )
252 .UIId( wxID_PASTE ) );
255 .Name(
"common.Interactive.selectAll" )
257 .DefaultHotkey(
MD_CTRL +
'A' )
258 .FriendlyName(
_(
"Select All" ) )
259 .Tooltip(
_(
"Select all items on screen" ) ) );
262 .Name(
"common.Interactive.unselectAll" )
265 .FriendlyName(
_(
"Unselect All" ) )
266 .Tooltip(
_(
"Unselect all items on screen" ) ) );
269 .Name(
"common.Interactive.pasteSpecial" )
272 .FriendlyName(
_(
"Paste Special..." ) )
273 .Tooltip(
_(
"Paste item(s) from clipboard with options" ) )
277 .Name(
"common.Interactive.duplicate" )
279 .DefaultHotkey(
MD_CTRL +
'D' )
280 .LegacyHotkeyName(
"Duplicate" )
281 .FriendlyName(
_(
"Duplicate" ) )
282 .Tooltip(
_(
"Duplicates the selected item(s)" ) )
286 .Name(
"common.Interactive.delete" )
288#
if defined( __WXMAC__ )
289 .DefaultHotkey( WXK_BACK )
291 .DefaultHotkey( WXK_DELETE )
293 .LegacyHotkeyName(
"Delete Item" )
294 .FriendlyName(
_(
"Delete" ) )
295 .Tooltip(
_(
"Delete selected item(s)" ) )
300 .Name(
"common.Interactive.deleteTool" )
302 .FriendlyName(
_(
"Interactive Delete Tool" ) )
303 .Tooltip(
_(
"Delete clicked items" ) )
309 .Name(
"common.Control.leftJustify" )
311 .FriendlyName(
_(
"Left Justify" ) )
312 .Tooltip(
_(
"Left-justify fields and text items" ) )
316 .Name(
"common.Control.centerJustify" )
318 .FriendlyName(
_(
"Center Justify" ) )
319 .Tooltip(
_(
"Center-justify fields and text items" ) )
323 .Name(
"common.Control.rightJustify" )
325 .FriendlyName(
_(
"Right Justify" ) )
326 .Tooltip(
_(
"Right-justify fields and text items" ) )
330 .Name(
"common.Control.expandAll" )
332 .FriendlyName(
_(
"Expand All" ) )
336 .Name(
"common.Control.collapseAll" )
338 .FriendlyName(
_(
"Collapse All" ) )
344 .Name(
"eeschema.Interactive.increment" )
346 .FriendlyName(
_(
"Increment" ) )
347 .Tooltip(
_(
"Increment the selected item(s)" ) ) );
350 .Name(
"eeschema.Interactive.incrementPrimary" )
352 .FriendlyName(
_(
"Increment Primary" ) )
353 .Tooltip(
_(
"Increment the primary field of the selected item(s)" ) )
357 .Name(
"eeschema.Interactive.decrementPrimary" )
359 .FriendlyName(
_(
"Decrement Primary" ) )
360 .Tooltip(
_(
"Decrement the primary field of the selected item(s)" ) )
364 .Name(
"eeschema.Interactive.incrementSecondary" )
366 .FriendlyName(
_(
"Increment Secondary" ) )
367 .Tooltip(
_(
"Increment the secondary field of the selected item(s)" ) )
371 .Name(
"eeschema.Interactive.decrementSecondary" )
373 .FriendlyName(
_(
"Decrement Secondary" ) )
374 .Tooltip(
_(
"Decrement the secondary field of the selected item(s)" ) )
378 .Name(
"common.InteractiveSelection.SelectColumns" )
380 .FriendlyName(
_(
"Select Column(s)" ) )
381 .Tooltip(
_(
"Select complete column(s) containing the current selected cell(s)" ) )
385 .Name(
"common.InteractiveSelection.Rows" )
387 .FriendlyName(
_(
"Select Row(s)" ) )
388 .Tooltip(
_(
"Select complete row(s) containing the current selected cell(s)" ) )
392 .Name(
"common.InteractiveSelection.SelectTable" )
394 .FriendlyName(
_(
"Select Table" ) )
395 .Tooltip(
_(
"Select parent table of selected cell(s)" ) )
399 .Name(
"common.TableEditor.addRowAbove" )
401 .FriendlyName(
_(
"Add Row Above" ) )
402 .Tooltip(
_(
"Insert a new table row above the selected cell(s)" ) )
406 .Name(
"common.TableEditor.addRowBelow" )
408 .FriendlyName(
_(
"Add Row Below" ) )
409 .Tooltip(
_(
"Insert a new table row below the selected cell(s)" ) )
413 .Name(
"common.TableEditor.addColBefore" )
415 .FriendlyName(
_(
"Add Column Before" ) )
416 .Tooltip(
_(
"Insert a new table column before the selected cell(s)" ) )
420 .Name(
"common.TableEditor.addColAfter" )
422 .FriendlyName(
_(
"Add Column After" ) )
423 .Tooltip(
_(
"Insert a new table column after the selected cell(s)" ) )
427 .Name(
"common.TableEditor.deleteRows" )
429 .FriendlyName(
_(
"Delete Row(s)" ) )
430 .Tooltip(
_(
"Delete rows containing the currently selected cell(s)" ) )
434 .Name(
"common.TableEditor.deleteColumns" )
436 .FriendlyName(
_(
"Delete Column(s)" ) )
437 .Tooltip(
_(
"Delete columns containing the currently selected cell(s)" ) )
441 .Name(
"common.TableEditor.mergeCells" )
443 .FriendlyName(
_(
"Merge Cells" ) )
444 .Tooltip(
_(
"Turn selected table cells into a single cell" ) )
448 .Name(
"common.TableEditor.unmergeCell" )
450 .FriendlyName(
_(
"Unmerge Cells" ) )
451 .Tooltip(
_(
"Turn merged table cells back into separate cells." ) )
455 .Name(
"pcbnew.TableEditor.editTable" )
457 .DefaultHotkey(
MD_CTRL +
'E' )
458 .FriendlyName(
_(
"Edit Table..." ) )
462 .Name(
"common.Control.activatePointEditor" )
467 .Name(
"common.Interactive.cycleArcEditMode" )
469 .DefaultHotkey(
MD_CTRL +
' ' )
470 .FriendlyName(
_(
"Cycle Arc Editing Mode" ) )
471 .Tooltip(
_(
"Switch to a different method of editing arcs" ) ) );
474 .Name(
"common.Interactive.search" )
476 .DefaultHotkey(
MD_CTRL +
'G' )
477 .LegacyHotkeyName(
"Search" )
478 .FriendlyName(
_(
"Search" ) )
479 .Tooltip(
_(
"Show/hide the search panel" ) )
483 .Name(
"common.Interactive.find" )
485 .DefaultHotkey(
MD_CTRL +
'F' )
486 .LegacyHotkeyName(
"Find" )
487 .FriendlyName(
_(
"Find" ) )
491 .Name(
"common.Interactive.findAndReplace" )
494 .LegacyHotkeyName(
"Find and Replace" )
495 .FriendlyName(
_(
"Find and Replace" ) )
499 .Name(
"common.Interactive.findNext" )
501 .DefaultHotkey( WXK_F3 )
502 .LegacyHotkeyName(
"Find Next" )
503 .FriendlyName(
_(
"Find Next" ) )
507 .Name(
"common.Interactive.findPrevious" )
509 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_F3 ) )
510 .LegacyHotkeyName(
"Find Previous" )
511 .FriendlyName(
_(
"Find Previous" ) )
515 .Name(
"common.Interactive.findNextMarker" )
518 .LegacyHotkeyName(
"Find Next Marker" )
519 .FriendlyName(
_(
"Find Next Marker" ) )
523 .Name(
"common.Interactive.replaceAndFindNext" )
525 .FriendlyName(
_(
"Replace and Find Next" ) )
529 .Name(
"common.Interactive.replaceAll" )
531 .FriendlyName(
_(
"Replace All" ) )
535 .Name(
"common.Control.updateFind" )
542 .Name(
"common.Checker.prevMarker" )
544 .FriendlyName(
_(
"Previous Marker" ) )
548 .Name(
"common.Checker.nextMarker" )
550 .FriendlyName(
_(
"Next Marker" ) )
554 .Name(
"common.Checker.excludeMarker" )
556 .FriendlyName(
_(
"Exclude Marker" ) )
557 .Tooltip(
_(
"Mark current violation in Checker window as an exclusion" ) )
562 .Name(
"common.Control.zoomRedraw" )
564#
if defined( __WXMAC__ )
565 .DefaultHotkey(
MD_CTRL +
'R' )
567 .DefaultHotkey( WXK_F5 )
569 .LegacyHotkeyName(
"Zoom Redraw" )
570 .FriendlyName(
_(
"Refresh" ) )
574 .Name(
"common.Control.zoomFitScreen" )
576#
if defined( __WXMAC__ )
577 .DefaultHotkey(
MD_CTRL +
'0' )
579 .DefaultHotkey( WXK_HOME )
581 .LegacyHotkeyName(
"Zoom Auto" )
582 .FriendlyName(
_(
"Zoom to Fit" ) )
586 .Name(
"common.Control.zoomFitObjects" )
588 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_HOME ) )
589 .FriendlyName(
_(
"Zoom to Objects" ) )
593 .Name(
"common.Control.zoomFitSelection" )
595 .FriendlyName(
_(
"Zoom to Selected Objects" ) ) );
598 .Name(
"common.Control.zoomIn" )
600#
if defined( __WXMAC__ )
601 .DefaultHotkey(
MD_CTRL +
'+' )
603 .DefaultHotkey( WXK_F1 )
605 .LegacyHotkeyName(
"Zoom In" )
606 .FriendlyName(
_(
"Zoom In at Cursor" ) )
610 .Name(
"common.Control.zoomOut" )
612#
if defined( __WXMAC__ )
613 .DefaultHotkey(
MD_CTRL +
'-' )
615 .DefaultHotkey( WXK_F2 )
617 .LegacyHotkeyName(
"Zoom Out" )
618 .FriendlyName(
_(
"Zoom Out at Cursor" ) )
622 .Name(
"common.Control.zoomInCenter" )
624 .FriendlyName(
_(
"Zoom In" ) )
628 .Name(
"common.Control.zoomOutCenter" )
630 .FriendlyName(
_(
"Zoom Out" ) )
634 .Name(
"common.Control.zoomInHorizontally" )
636 .FriendlyName(
_(
"Zoom In Horizontally" ) )
637 .Tooltip(
_(
"Zoom in horizontally the plot area" ) )
641 .Name(
"common.Control.zoomOutHorizontally" )
643 .FriendlyName(
_(
"Zoom Out Horizontally" ) )
644 .Tooltip(
_(
"Zoom out horizontally the plot area" ) )
648 .Name(
"common.Control.zoomInVertically" )
650 .FriendlyName(
_(
"Zoom In Vertically" ) )
651 .Tooltip(
_(
"Zoom in vertically the plot area" ) )
655 .Name(
"common.Control.zoomOutVertically" )
657 .FriendlyName(
_(
"Zoom Out Vertically" ) )
658 .Tooltip(
_(
"Zoom out vertically the plot area" ) )
662 .Name(
"common.Control.zoomCenter" )
664 .DefaultHotkey( WXK_F4 )
665 .LegacyHotkeyName(
"Zoom Center" )
666 .FriendlyName(
_(
"Center on Cursor" ) )
670 .Name(
"common.Control.zoomTool" )
672 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_F5 ) )
673 .LegacyHotkeyName(
"Zoom to Selection" )
674 .FriendlyName(
_(
"Zoom to Selection" ) )
680 .Name(
"common.Control.undoZoom" )
682 .FriendlyName(
_(
"Undo Last Zoom" ) )
683 .Tooltip(
_(
"Return zoom to level prior to last zoom action" ) )
687 .Name(
"common.Control.redoZoom" )
689 .FriendlyName(
_(
"Redo Last Zoom" ) )
690 .Tooltip(
_(
"Return zoom to level prior to last zoom undo" ) )
694 .Name(
"common.Control.zoomPreset" )
696 .Parameter<int>( 0 ) );
699 .Name(
"common.Control.centerContents" )
703 .Name(
"common.Control.centerSelection" )
705 .FriendlyName(
_(
"Pan to Center Selected Objects" ) ) );
709 .Name(
"common.Control.cursorUp" )
711 .DefaultHotkey( WXK_UP )
712 .FriendlyName(
_(
"Cursor Up" ) )
715 .Parameter( CURSOR_UP ) );
718 .Name(
"common.Control.cursorDown" )
720 .DefaultHotkey( WXK_DOWN )
721 .FriendlyName(
_(
"Cursor Down" ) )
724 .Parameter( CURSOR_DOWN ) );
727 .Name(
"common.Control.cursorLeft" )
729 .DefaultHotkey( WXK_LEFT )
730 .FriendlyName(
_(
"Cursor Left" ) )
733 .Parameter( CURSOR_LEFT ) );
736 .Name(
"common.Control.cursorRight" )
738 .DefaultHotkey( WXK_RIGHT )
739 .FriendlyName(
_(
"Cursor Right" ) )
742 .Parameter( CURSOR_RIGHT ) );
746 .Name(
"common.Control.cursorUpFast" )
748 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_UP ) )
749 .FriendlyName(
_(
"Cursor Up Fast" ) )
752 .Parameter( CURSOR_UP_FAST ) );
755 .Name(
"common.Control.cursorDownFast" )
757 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_DOWN ) )
758 .FriendlyName(
_(
"Cursor Down Fast" ) )
761 .Parameter( CURSOR_DOWN_FAST ) );
764 .Name(
"common.Control.cursorLeftFast" )
766 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_LEFT ) )
767 .FriendlyName(
_(
"Cursor Left Fast" ) )
770 .Parameter( CURSOR_LEFT_FAST ) );
773 .Name(
"common.Control.cursorRightFast" )
775 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_RIGHT ) )
776 .FriendlyName(
_(
"Cursor Right Fast" ) )
779 .Parameter( CURSOR_RIGHT_FAST ) );
782 .Name(
"common.Control.cursorClick" )
784 .DefaultHotkey( WXK_RETURN )
785 .LegacyHotkeyName(
"Mouse Left Click" )
786 .FriendlyName(
_(
"Click" ) )
787 .Tooltip(
_(
"Performs left mouse button click" ) )
790 .Parameter( CURSOR_CLICK ) );
793 .Name(
"common.Control.cursorDblClick" )
795 .DefaultHotkey( WXK_END )
796 .LegacyHotkeyName(
"Mouse Left Double Click" )
797 .FriendlyName(
_(
"Double-click" ) )
798 .Tooltip(
_(
"Performs left mouse button double-click" ) )
801 .Parameter( CURSOR_DBL_CLICK ) );
804 .Name(
"common.Control.refreshPreview" )
809 .Name(
"common.Control.pinLibrary" )
811 .FriendlyName(
_(
"Pin Library" ) )
812 .Tooltip(
_(
"Keep the library at the top of the list" ) ) );
815 .Name(
"common.Control.unpinLibrary" )
817 .FriendlyName(
_(
"Unpin Library" ) )
818 .Tooltip(
_(
"No longer keep the library at the top of the list" ) ) );
821 .Name(
"common.Control.showLibraryTree" )
823 .FriendlyName(
_(
"Library Tree" ) )
828 .Name(
"common.Control.hideLibraryTree" )
830 .FriendlyName(
_(
"Hide Library Tree" ) )
834 .Name(
"common.Control.toggleSimulationSidePanel" )
836 .FriendlyName(
_(
"Show Side Panel" ) ) );
839 .Name(
"common.Control.toggleConsole" )
841 .FriendlyName(
_(
"Show Console Panel" ) ) );
844 .Name(
"common.Control.libraryTreeSearch" )
846 .FriendlyName(
_(
"Focus Library Tree Search Field" ) )
847 .DefaultHotkey(
MD_CTRL +
'L' )
851 .Name(
"common.Control.panUp" )
853 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_UP ) )
854 .FriendlyName(
_(
"Pan Up" ) )
856 .Parameter( CURSOR_UP ) );
859 .Name(
"common.Control.panDown" )
861 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_DOWN ) )
862 .FriendlyName(
_(
"Pan Down" ) )
864 .Parameter( CURSOR_DOWN ) );
867 .Name(
"common.Control.panLeft" )
869 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_LEFT ) )
870 .FriendlyName(
_(
"Pan Left" ) )
872 .Parameter( CURSOR_LEFT ) );
875 .Name(
"common.Control.panRight" )
877 .DefaultHotkey(
MD_SHIFT +
static_cast<int>( WXK_RIGHT ) )
878 .FriendlyName(
_(
"Pan Right" ) )
880 .Parameter( CURSOR_RIGHT ) );
884 .Name(
"common.Control.gridFast1" )
886 .DefaultHotkey(
MD_ALT +
'1' )
887 .LegacyHotkeyName(
"Switch Grid To Fast Grid1" )
888 .FriendlyName(
_(
"Switch to Fast Grid 1" ) ) );
891 .Name(
"common.Control.gridFast2" )
893 .DefaultHotkey(
MD_ALT +
'2' )
894 .LegacyHotkeyName(
"Switch Grid To Fast Grid2" )
895 .FriendlyName(
_(
"Switch to Fast Grid 2" ) ) );
898 .Name(
"common.Control.gridFastCycle" )
900 .DefaultHotkey(
MD_ALT +
'4' )
901 .LegacyHotkeyName(
"Switch Grid To Next Fast Grid" )
902 .FriendlyName(
_(
"Cycle Fast Grid" ) ) );
905 .Name(
"common.Control.gridNext" )
907 .DefaultHotkey(
'N' )
908 .LegacyHotkeyName(
"Switch Grid To Next" )
909 .FriendlyName(
_(
"Switch to Next Grid" ) ) );
912 .Name(
"common.Control.gridPrev" )
915 .LegacyHotkeyName(
"Switch Grid To Previous" )
916 .FriendlyName(
_(
"Switch to Previous Grid" ) ) );
919 .Name(
"common.Control.gridSetOrigin" )
921 .LegacyHotkeyName(
"Set Grid Origin" )
922 .FriendlyName(
_(
"Grid Origin" ) )
923 .Tooltip(
_(
"Place the grid origin point" ) )
926 .Parameter<VECTOR2D*>(
nullptr ) );
929 .Name(
"common.Control.gridResetOrigin" )
931 .LegacyHotkeyName(
"Reset Grid Origin" )
932 .FriendlyName(
_(
"Reset Grid Origin" ) ) );
935 .Name(
"common.Control.gridPreset" )
937 .Parameter<int>( 0 ) );
940 .Name(
"common.Control.toggleGrid" )
942 .FriendlyName(
_(
"Show Grid" ) )
943 .Tooltip(
_(
"Display background grid in the edit window" ) )
948 .Name(
"common.Control.toggleGridOverrides" )
951 .FriendlyName(
_(
"Grid Overrides" ) )
952 .Tooltip(
_(
"Enables item-specific grids that override the current grid" ) )
957 .Name(
"common.Control.editGrids" )
959 .FriendlyName(
_(
"Edit Grids..." ) )
960 .Tooltip(
_(
"Edit grid definitions" ) )
964 .Name(
"common.Control.editGridOrigin" )
966 .FriendlyName(
_(
"Grid Origin..." ) )
967 .Tooltip(
_(
"Set the grid origin point" ) ) );
970 .Name(
"common.Control.imperialUnits" )
972 .FriendlyName(
_(
"Inches" ) )
979 .Name(
"common.Control.mils" )
981 .FriendlyName(
_(
"Mils" ) )
988 .Name(
"common.Control.metricUnits" )
990 .FriendlyName(
_(
"Millimeters" ) )
997 .Name(
"common.Control.updateUnits" )
1002 .Name(
"common.Control.updatePreferences" )
1007 .Name(
"common.Control.selectColumns" )
1010 .FriendlyName(
_(
"Select Columns..." ) ) );
1013 .Name(
"common.Control.toggleUnits" )
1015 .DefaultHotkey(
MD_CTRL +
'U' )
1016 .LegacyHotkeyName(
"Switch Units" )
1017 .FriendlyName(
_(
"Switch units" ) )
1018 .Tooltip(
_(
"Switch between imperial and metric units" ) )
1022 .Name(
"common.Control.togglePolarCoords" )
1024 .FriendlyName(
_(
"Polar Coordinates" ) )
1025 .Tooltip(
_(
"Switch between polar and cartesian coordinate systems" ) )
1030 .Name(
"common.Control.resetLocalCoords" )
1032 .DefaultHotkey(
' ' )
1033 .LegacyHotkeyName(
"Reset Local Coordinates" )
1034 .FriendlyName(
_(
"Reset Local Coordinates" ) ) );
1037 .Name(
"common.Control.toggleCursor" )
1040 .LegacyHotkeyName(
"Toggle Cursor Display (Modern Toolset only)" )
1041 .FriendlyName(
_(
"Always Show Crosshairs" ) )
1042 .Tooltip(
_(
"Display crosshairs even when not drawing objects" ) )
1046 .Name(
"common.Control.toggleCursorStyle" )
1048 .FriendlyName(
_(
"Full-Window Crosshairs" ) )
1049 .Tooltip(
_(
"Switch display of full-window crosshairs" ) )
1054 .Name(
"common.Control.highContrastMode" )
1056 .LegacyHotkeyName(
"Toggle High Contrast Mode" )
1057 .FriendlyName(
_(
"Inactive Layer View Mode" ) )
1058 .Tooltip(
_(
"Toggle inactive layers between normal and dimmed" ) )
1063 .Name(
"common.Control.highContrastModeCycle" )
1065 .DefaultHotkey(
'H' )
1066 .FriendlyName(
_(
"Inactive Layer View Mode (3-state)" ) )
1067 .Tooltip(
_(
"Cycle inactive layers between normal, dimmed, and hidden" ) )
1071 .Name(
"common.Control.toggleBoundingBoxes" )
1073 .FriendlyName(
_(
"Draw Bounding Boxes" ) )
1078 .Name(
"common.InteractiveSelection.selectionTool" )
1080 .FriendlyName(
_(
"Select item(s)" ) )
1086 .Name(
"common.Interactive.measureTool" )
1090 .LegacyHotkeyName(
"Measure Distance (Modern Toolset only)" )
1091 .FriendlyName(
_(
"Measure Tool" ) )
1092 .Tooltip(
_(
"Interactively measure distance between points" ) )
1098 .Name(
"common.InteractivePicker.pickerTool" )
1104 .Name(
"common.InteractivePicker.pickerSubTool" )
1109 .Name(
"common.Control.showProjectManager" )
1111 .FriendlyName(
_(
"Switch to Project Manager" ) )
1112 .Tooltip(
_(
"Show project window" ) )
1116 .Name(
"common.Control.show3DViewer" )
1118 .DefaultHotkey(
MD_ALT +
'3' )
1119 .LegacyHotkeyName(
"3D Viewer" )
1120 .FriendlyName(
_(
"3D Viewer" ) )
1121 .Tooltip(
_(
"Show 3D viewer window" ) )
1125 .Name(
"common.Control.showSymbolBrowser" )
1127 .FriendlyName(
_(
"Symbol Library Browser" ) )
1133 .Name(
"common.Control.showSymbolEditor" )
1135 .FriendlyName(
_(
"Symbol Editor" ) )
1136 .Tooltip(
_(
"Create, delete and edit schematic symbols" ) )
1142 .Name(
"common.Control.showFootprintBrowser" )
1144 .FriendlyName(
_(
"Footprint Library Browser" ) )
1150 .Name(
"common.Control.showFootprintEditor" )
1152 .FriendlyName(
_(
"Footprint Editor" ) )
1153 .Tooltip(
_(
"Create, delete and edit board footprints" ) )
1159 .Name(
"common.Control.showProperties" )
1161 .FriendlyName(
_(
"Properties" ) )
1162 .Tooltip(
_(
"Show/hide the properties manager" ) )
1167 .Name(
"common.Control.showDatasheet" )
1169 .DefaultHotkey(
'D' )
1170 .LegacyHotkeyName(
"Show Datasheet" )
1171 .FriendlyName(
_(
"Show Datasheet" ) )
1172 .Tooltip(
_(
"Open the datasheet in a browser" ) )
1176 .Name(
"common.Control.updatePcbFromSchematic" )
1178 .DefaultHotkey( WXK_F8 )
1179 .LegacyHotkeyName(
"Update PCB from Schematic" )
1180 .FriendlyName(
_(
"Update PCB from Schematic..." ) )
1181 .Tooltip(
_(
"Update PCB with changes made to schematic" ) )
1185 .Name(
"common.Control.updateSchematicFromPCB" )
1187 .FriendlyName(
_(
"Update Schematic from PCB..." ) )
1188 .Tooltip(
_(
"Update schematic with changes made to PCB" ) )
1192 .Name(
"common.SuiteControl.openPreferences" )
1194 .DefaultHotkey(
MD_CTRL +
',' )
1195 .FriendlyName(
_(
"Preferences..." ) )
1196 .Tooltip(
_(
"Show preferences for all open tools" ) )
1198 .UIId( wxID_PREFERENCES ) );
1201 .Name(
"common.SuiteControl.configurePaths" )
1203 .FriendlyName(
_(
"Configure Paths..." ) )
1204 .Tooltip(
_(
"Edit path configuration environment variables" ) )
1208 .Name(
"common.SuiteControl.showSymbolLibTable" )
1210 .FriendlyName(
_(
"Manage Symbol Libraries..." ) )
1211 .Tooltip(
_(
"Edit the global and project symbol library lists" ) )
1215 .Name(
"common.SuiteControl.showFootprintLibTable" )
1217 .FriendlyName(
_(
"Manage Footprint Libraries..." ) )
1218 .Tooltip(
_(
"Edit the global and project footprint library lists" ) )
1222 .Name(
"common.SuiteControl.showDesignBLockLibTable" )
1224 .FriendlyName(
_(
"Manage Design Block Libraries..." ) )
1225 .Tooltip(
_(
"Edit the global and project design block library lists" ) )
1229 .Name(
"common.SuiteControl.gettingStarted" )
1231 .FriendlyName(
_(
"Getting Started with KiCad" ) )
1232 .Tooltip(
_(
"Open \"Getting Started in KiCad\" guide for beginners" ) )
1236 .Name(
"common.SuiteControl.help" )
1238 .FriendlyName(
_(
"Help" ) )
1239 .Tooltip(
_(
"Open product documentation in a web browser" ) )
1243 .Name(
"common.SuiteControl.about" )
1245 .FriendlyName(
_(
"About KiCad" ) )
1250 .Name(
"common.SuiteControl.listHotKeys" )
1252 .DefaultHotkey(
MD_CTRL +
static_cast<int>( WXK_F1 ) )
1253 .LegacyHotkeyName(
"List Hotkeys" )
1254 .FriendlyName(
_(
"List Hotkeys..." ) )
1255 .Tooltip(
_(
"Displays current hotkeys table and corresponding commands" ) )
1259 .Name(
"common.SuiteControl.getInvolved" )
1261 .FriendlyName(
_(
"Get Involved" ) )
1262 .Tooltip(
_(
"Open \"Contribute to KiCad\" in a web browser" ) )
1266 .Name(
"common.SuiteControl.donate" )
1268 .FriendlyName(
_(
"Donate" ) )
1269 .Tooltip(
_(
"Open \"Donate to KiCad\" in a web browser" ) ) );
1272 .Name(
"common.SuiteControl.reportBug" )
1274 .FriendlyName(
_(
"Report Bug" ) )
1275 .Tooltip(
_(
"Report a problem with KiCad" ) )
1279 .Name(
"common.Control.ddaddLibrary" )
1285 .Name(
"common.API.pluginsReload" )
1287 .FriendlyName(
_(
"Refresh Plugins" ) )
1288 .Tooltip(
_(
"Reload all python plugins and refresh plugin menus" ) )
1294 .Name(
"common.Embed.embededFile" )
1296 .FriendlyName(
_(
"Embedded Files" ) )
1297 .Tooltip(
_(
"Manage embedded files" ) ) );
1300 .Name(
"common.Embed.removeFile" )
1302 .FriendlyName(
_(
"Remove File" ) )
1303 .Tooltip(
_(
"Remove an embedded file" ) ) );
1306 .Name(
"common.Embed.extractFile" )
1308 .FriendlyName(
_(
"Extract File" ) )
1309 .Tooltip(
_(
"Extract an embedded file" ) ) );
1314 "common.Interactive.pointSelected" );
1320 "common.Interactive.connectivityChanged" );
1323 "common.Interactive.modified" );
1326 "common.Interactive.inhibit" );
1328 "common.Interactive.uninhibit" );
1331 "common.Interactive.disambiguate" );
1334 "common.Interactive.gridChangedByKey" );
1338 "common.Interactive.contrastModeChangedByKeyEvent" );
@ table_add_column_before
@ 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 toggleSimulationSidePanel
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 toggleConsole
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