KiCad PCB EDA Suite
Loading...
Searching...
No Matches
ee_actions.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2019-2023 CERN
5 * Copyright (C) 2019-2024 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#include <bitmaps.h>
26#include <core/typeinfo.h>
27#include <layer_ids.h>
28#include <sch_bitmap.h>
30#include <tools/ee_actions.h>
31#include <tool/tool_action.h>
32
33// Actions, being statically-defined, require specialized I18N handling. We continue to
34// use the _() macro so that string harvesting by the I18N framework doesn't have to be
35// specialized, but we don't translate on initialization and instead do it in the getters.
36
37#undef _
38#define _(s) s
39
40
41// EE_INSPECTION_TOOL
42//
44 .Name( "eeschema.InspectionTool.runERC" )
45 .Scope( AS_GLOBAL )
46 .FriendlyName( _( "Electrical Rules Checker" ) )
47 .Tooltip( _( "Perform electrical rules check" ) )
48 .Icon( BITMAPS::erc ) );
49
51 .Name( "eeschema.InspectionTool.checkSymbol" )
52 .Scope( AS_GLOBAL )
53 .FriendlyName( _( "Symbol Checker" ) )
54 .Tooltip( _( "Show the symbol checker window" ) )
55 .Icon( BITMAPS::erc ) );
56
58 .Name( "eeschema.InspectionTool.diffSymbol" )
59 .Scope( AS_GLOBAL )
60 .FriendlyName( _( "Compare Symbol with Library" ) )
61 .Tooltip( _( "Show differences between schematic symbol and its library equivalent" ) )
62 .Icon( BITMAPS::library ) );
63
65 .Name( "eeschema.InspectionTool.showBusSyntaxHelp" )
66 .Scope( AS_GLOBAL )
67 .FriendlyName( _( "Show Bus Syntax Help" ) )
69
71 .Name( "eeschema.EditorControl.showSimulator" )
72 .Scope( AS_GLOBAL )
73 .FriendlyName( _( "Simulator" ) )
74 .Tooltip( _( "Show simulation window for running SPICE or IBIS simulations." ) )
75 .Icon( BITMAPS::simulator ) );
76
78 .Name( "eeschema.InspectionTool.showDatasheet" )
79 .Scope( AS_GLOBAL )
80 .DefaultHotkey( 'D' )
81 .LegacyHotkeyName( "Show Datasheet" )
82 .FriendlyName( _( "Show Datasheet" ) )
83 .Tooltip( _( "Opens the datasheet in a browser" ) )
84 .Icon( BITMAPS::datasheet ) );
85
86
87// EE_POINT_EDITOR
88//
90 .Name( "eeschema.PointEditor.addCorner" )
91 .Scope( AS_GLOBAL )
92 .FriendlyName( _( "Create Corner" ) )
93 .Icon( BITMAPS::add_corner ) );
94
96 .Name( "eeschema.PointEditor.removeCorner" )
97 .Scope( AS_GLOBAL )
98 .FriendlyName( _( "Remove Corner" ) )
99 .Icon( BITMAPS::delete_cursor ) );
100
101
102// EE_SELECTION_TOOL
103//
105 .Name( "eeschema.InteractiveSelection" )
106 .Scope( AS_GLOBAL )
107 .Flags( AF_ACTIVATE ) );
108
110 .Name( "eeschema.InteractiveSelection.SelectNode" )
111 .Scope( AS_GLOBAL )
112 .DefaultHotkey( MD_ALT + '3' )
113 .LegacyHotkeyName( "Select Node" )
114 .FriendlyName( _( "Select Node" ) )
115 .Tooltip( _( "Select a connection item under the cursor" ) ) );
116
118 .Name( "eeschema.InteractiveSelection.SelectConnection" )
119 .Scope( AS_GLOBAL )
120 .DefaultHotkey( MD_ALT + '4' )
121 .LegacyHotkeyName( "Select Connection" )
122 .FriendlyName( _( "Select Connection" ) )
123 .Tooltip( _( "Select a complete connection" ) )
125
127 .Name( "eeschema.InteractiveSelection.SelectionMenu" )
128 .Scope( AS_GLOBAL ) );
129
131 .Name( "eeschema.InteractiveSelection.AddItemToSel" )
132 .Scope( AS_GLOBAL ) );
133
135 .Name( "eeschema.InteractiveSelection.AddItemsToSel" )
136 .Scope( AS_GLOBAL ) );
137
139 .Name( "eeschema.InteractiveSelection.RemoveItemFromSel" )
140 .Scope( AS_GLOBAL ) );
141
143 .Name( "eeschema.InteractiveSelection.RemoveItemsFromSel" )
144 .Scope( AS_GLOBAL ) );
145
147 .Name( "eeschema.InteractiveSelection.ClearSelection" )
148 .Scope( AS_GLOBAL ) );
149
151 .Name( "eeschema.InteractiveSelection.SyncSelection" )
152 .Scope( AS_GLOBAL ) );
153
154// SYMBOL_EDITOR_CONTROL
155//
157 .Name( "eeschema.SymbolLibraryControl.saveLibraryAs" )
158 .Scope( AS_GLOBAL )
159 .DefaultHotkey( MD_SHIFT + MD_CTRL + 'S' )
160 .LegacyHotkeyName( "Save As" )
161 .FriendlyName( _( "Save Library As..." ) )
162 .Tooltip( _( "Save the current library to a new file." ) ) );
163
165 .Name( "eeschema.SymbolLibraryControl.newSymbol" )
166 .Scope( AS_GLOBAL )
167 .DefaultHotkey( MD_CTRL + 'N' )
168 .FriendlyName( _( "New Symbol..." ) )
169 .Tooltip( _( "Create a new symbol" ) )
170 .Icon( BITMAPS::new_component ) );
171
173 .Name( "eeschema.SymbolLibraryControl.deriveFromExistingSymbol" )
174 .Scope( AS_GLOBAL )
175 .FriendlyName( _( "Derive from Existing Symbol" ) )
176 .Tooltip( _( "Create a new symbol, derived from an existing symbol" ) )
177 .Icon( BITMAPS::new_component ) );
178
180 .Name( "eeschema.SymbolLibraryControl.editSymbol" )
181 .Scope( AS_GLOBAL )
182 .FriendlyName( _( "Edit Symbol" ) )
183 .Tooltip( _( "Show selected symbol on editor canvas" ) )
184 .Icon( BITMAPS::edit ) );
185
187 .Name( "eeschema.SymbolLibraryControl.duplicateSymbol" )
188 .Scope( AS_GLOBAL )
189 .FriendlyName( _( "Duplicate Symbol" ) )
190 .Tooltip( _( "Make a copy of the selected symbol" ) )
191 .Icon( BITMAPS::duplicate ) );
192
194 .Name( "eeschema.SymbolLibraryControl.renameFootprint" )
195 .Scope( AS_GLOBAL )
196 .FriendlyName( _( "Rename Symbol..." ) )
197 .Tooltip( _( "Rename the selected symbol" ) )
198 .Icon( BITMAPS::edit ) );
199
201 .Name( "eeschema.SymbolLibraryControl.saveSymbolCopyAs" )
202 .Scope( AS_GLOBAL )
203 .FriendlyName( _( "Save Copy As..." ) )
204 .Tooltip( _( "Save a copy of the current symbol to a different library." ) )
205 .Icon( BITMAPS::save_as ) );
206
208 .Name( "eeschema.SymbolLibraryControl.deleteSymbol" )
209 .Scope( AS_GLOBAL )
210 .FriendlyName( _( "Delete Symbol" ) )
211 .Tooltip( _( "Remove the selected symbol from its library" ) )
212 .Icon( BITMAPS::trash ) );
213
215 .Name( "eeschema.SymbolLibraryControl.cutSymbol" )
216 .Scope( AS_GLOBAL )
217 .FriendlyName( _( "Cut" ) )
218 .Icon( BITMAPS::cut ) );
219
221 .Name( "eeschema.SymbolLibraryControl.copySymbol" )
222 .Scope( AS_GLOBAL )
223 .FriendlyName( _( "Copy" ) )
224 .Icon( BITMAPS::copy ) );
225
227 .Name( "eeschema.SymbolLibraryControl.pasteSymbol" )
228 .Scope( AS_GLOBAL )
229 .FriendlyName( _( "Paste Symbol" ) )
230 .Icon( BITMAPS::paste ) );
231
233 .Name("eeschema.SymbolLibraryControl.importSymbol" )
234 .Scope( AS_GLOBAL )
235 .FriendlyName( _( "Import Symbol..." ) )
236 .Tooltip( _( "Import a symbol to the current library" ) )
237 .Icon( BITMAPS::import_part ) );
238
240 .Name( "eeschema.SymbolLibraryControl.updateSymbolFields" )
241 .Scope( AS_GLOBAL )
242 .FriendlyName( _( "Update Symbol Fields..." ) )
243 .Tooltip( _( "Update symbol to match changes made in parent symbol" ) )
244 .Icon( BITMAPS::refresh ) );
245
247 .Name( "eeschema.SymbolLibraryControl.setUnitDisplayName" )
248 .Scope( AS_GLOBAL )
249 .FriendlyName( _( "Set Unit Display Name..." ) )
250 .Tooltip( _( "Set the display name for a unit" ) ) );
251
253 .Name( "eeschema.SymbolLibraryControl.addSymbolToSchematic" )
254 .Scope( AS_GLOBAL )
255 .FriendlyName( _( "Add Symbol to Schematic" ) )
256 .Tooltip( _( "Add the current symbol to the schematic" ) )
258
260 .Name( "eeschema.SymbolLibraryControl.showElectricalTypes" )
261 .Scope( AS_GLOBAL )
262 .FriendlyName( _( "Show Pin Electrical Types" ) )
263 .Tooltip( _( "Annotate pins with their electrical types" ) )
264 .Icon( BITMAPS::pin_show_etype ) );
265
267 .Name( "eeschema.SymbolLibraryControl.showPinNumbers" )
268 .Scope( AS_GLOBAL )
269 .FriendlyName( _( "Show Pin Numbers" ) )
270 .Tooltip( _( "Annotate pins with their numbers" ) )
271 .Icon( BITMAPS::pin ) );
272
274 .Name( "eeschema.SymbolLibraryControl.exportSymbolView" )
275 .Scope( AS_GLOBAL )
276 .FriendlyName( _( "Export View as PNG..." ) )
277 .Tooltip( _( "Create PNG file from the current view" ) )
278 .Icon( BITMAPS::export_png ) );
279
281 .Name( "eeschema.SymbolLibraryControl.exportSymbolAsSVG" )
282 .Scope( AS_GLOBAL )
283 .FriendlyName( _( "Export Symbol as SVG..." ) )
284 .Tooltip( _( "Create SVG file from the current symbol" ) )
285 .Icon( BITMAPS::export_svg ) );
286
288 .Name( "eeschema.SymbolLibraryControl.toggleSyncedPinsMode" )
289 .Scope( AS_GLOBAL )
290 .FriendlyName( _( "Synchronized Pins Mode" ) )
291 .Tooltip( _( "Synchronized Pins Mode\n"
292 "When enabled propagates all changes (except pin numbers) to other units.\n"
293 "Enabled by default for multiunit parts with interchangeable units." ) )
294 .Icon( BITMAPS::pin2pin ) );
295
297 .Name( "eeschema.SymbolLibraryControl.showHiddenPins" )
298 .Scope( AS_GLOBAL )
299 .FriendlyName( _( "Show Hidden Pins" ) )
300 .Tooltip( _( "Toggle display of hidden pins" ) )
301 .Icon( BITMAPS::hidden_pin ) );
302
304 .Name( "eeschema.SymbolLibraryControl.showHiddenFields" )
305 .Scope( AS_GLOBAL )
306 .FriendlyName( _( "Show Hidden Fields" ) )
307 .Tooltip( _( "Toggle display of hidden text fields" ) )
308 .Icon( BITMAPS::text_sketch ) );
309
310
311// SYMBOL_EDITOR_DRAWING_TOOLS
312//
314 .Name( "eeschema.SymbolDrawing.placeSymbolPin" )
315 .Scope( AS_GLOBAL )
316 .DefaultHotkey( 'P' )
317 .LegacyHotkeyName( "Create Pin" )
318 .FriendlyName( _( "Add Pin" ) )
319 .Tooltip( _( "Add a pin" ) )
320 .Icon( BITMAPS::pin )
321 .Flags( AF_ACTIVATE )
322 .Parameter( SCH_PIN_T ) );
323
325 .Name( "eeschema.SymbolDrawing.placeSymbolText" )
326 .Scope( AS_GLOBAL )
327 .FriendlyName( _( "Add Text" ) )
328 .Tooltip( _( "Add a text item" ) )
329 .Icon( BITMAPS::text )
330 .Flags( AF_ACTIVATE )
331 .Parameter( SCH_TEXT_T ) );
332
334 .Name( "eeschema.SymbolDrawing.drawSymbolTextBox" )
335 .Scope( AS_GLOBAL )
336 .FriendlyName( _( "Add Text Box" ) )
337 .Tooltip( _( "Add a text box item" ) )
338 .Icon( BITMAPS::add_textbox )
339 .Flags( AF_ACTIVATE ) );
340
342 .Name( "eeschema.SymbolDrawing.drawSymbolLines" )
343 .Scope( AS_GLOBAL )
344 .FriendlyName( _( "Add Lines" ) )
345 .Tooltip( _( "Add connected graphic lines" ) )
347 .Flags( AF_ACTIVATE )
348 .Parameter( SHAPE_T::POLY ) );
349
351 .Name( "eeschema.SymbolDrawing.drawSymbolPolygon" )
352 .Scope( AS_GLOBAL )
353 .FriendlyName( _( "Add Polygon" ) )
354 .Tooltip( _( "Draw polygons" ) )
356 .Flags( AF_ACTIVATE )
357 .Parameter( SHAPE_T::POLY ) );
358
360 .Name( "eeschema.SymbolDrawing.placeSymbolAnchor" )
361 .Scope( AS_GLOBAL )
362 .FriendlyName( _( "Move Symbol Anchor" ) )
363 .Tooltip( _( "Specify a new location for the symbol anchor" ) )
364 .Icon( BITMAPS::anchor )
365 .Flags( AF_ACTIVATE ) );
366
367// SYMBOL_EDITOR_PIN_TOOL
368//
370 .Name( "eeschema.PinEditing.pushPinLength" )
371 .Scope( AS_GLOBAL )
372 .FriendlyName( _( "Push Pin Length" ) )
373 .Tooltip( _( "Copy pin length to other pins in symbol" ) )
374 .Icon( BITMAPS::pin_size_to ) );
375
377 .Name( "eeschema.PinEditing.pushPinNameSize" )
378 .Scope( AS_GLOBAL )
379 .FriendlyName( _( "Push Pin Name Size" ) )
380 .Tooltip( _( "Copy pin name size to other pins in symbol" ) )
381 .Icon( BITMAPS::pin_size_to ) );
382
384 .Name( "eeschema.PinEditing.pushPinNumSize" )
385 .Scope( AS_GLOBAL )
386 .FriendlyName( _( "Push Pin Number Size" ) )
387 .Tooltip( _( "Copy pin number size to other pins in symbol" ) )
388 .Icon( BITMAPS::pin_size_to ) );
389
390
391// SCH_DRAWING_TOOLS
392//
394 .Name( "eeschema.InteractiveDrawing.placeSymbol" )
395 .Scope( AS_GLOBAL )
396 .DefaultHotkey( 'A' )
397 .LegacyHotkeyName( "Add Symbol" )
398 .FriendlyName( _( "Add Symbol" ) )
399 .Tooltip( _( "Add symbols" ) )
401 .Flags( AF_ACTIVATE )
402 .Parameter<SCH_SYMBOL*>( nullptr ) );
403
405 .Name( "eeschema.InteractiveDrawing.placePowerSymbol" )
406 .Scope( AS_GLOBAL )
407 .DefaultHotkey( 'P' )
408 .LegacyHotkeyName( "Add Power" )
409 .FriendlyName( _( "Add Power" ) )
410 .Tooltip( _( "Add power symbols" ) )
411 .Icon( BITMAPS::add_power )
412 .Flags( AF_ACTIVATE )
413 .Parameter<SCH_SYMBOL*>( nullptr ) );
414
416 .Name( "eeschema.InteractiveDrawing.placeNoConnect" )
417 .Scope( AS_GLOBAL )
418 .DefaultHotkey( 'Q' )
419 .LegacyHotkeyName( "Add No Connect Flag" )
420 .FriendlyName( _( "Add No Connect Flag" ) )
421 .Tooltip( _( "Draw no-connection flags" ) )
422 .Icon( BITMAPS::noconn )
423 .Flags( AF_ACTIVATE )
424 .Parameter( SCH_NO_CONNECT_T ) );
425
427 .Name( "eeschema.InteractiveDrawing.placeJunction" )
428 .Scope( AS_GLOBAL )
429 .DefaultHotkey( 'J' )
430 .LegacyHotkeyName( "Add Junction" )
431 .FriendlyName( _( "Add Junction" ) )
432 .Tooltip( _( "Draw junctions" ) )
433 .Icon( BITMAPS::add_junction )
434 .Flags( AF_ACTIVATE )
435 .Parameter( SCH_JUNCTION_T ) );
436
438 .Name( "eeschema.InteractiveDrawing.placeBusWireEntry" )
439 .Scope( AS_GLOBAL )
440 .DefaultHotkey( 'Z' )
441 .LegacyHotkeyName( "Add Wire Entry" )
442 .FriendlyName( _( "Add Wire to Bus Entry" ) )
443 .Tooltip( _( "Add a wire entry to a bus" ) )
444 .Icon( BITMAPS::add_line2bus )
445 .Flags( AF_ACTIVATE )
446 .Parameter( SCH_BUS_WIRE_ENTRY_T ) );
447
449 .Name( "eeschema.InteractiveDrawing.placeLabel" )
450 .Scope( AS_GLOBAL )
451 .DefaultHotkey( 'L' )
452 .LegacyHotkeyName( "Add Label" )
453 .FriendlyName( _( "Add Label" ) )
454 .Tooltip( _( "Draw net labels" ) )
455 .Icon( BITMAPS::add_label )
456 .Flags( AF_ACTIVATE ) );
457
459 .Name( "eeschema.InteractiveDrawing.placeClassLabel" )
460 .Scope( AS_GLOBAL )
461 .FriendlyName( _( "Add Net Class Directive" ) )
462 .Tooltip( _( "Add net class directive labels" ) )
464 .Flags( AF_ACTIVATE ) );
465
467 .Name( "eeschema.InteractiveDrawing.placeHierarchicalLabel" )
468 .Scope( AS_GLOBAL )
469 .DefaultHotkey( 'H' )
470 .LegacyHotkeyName( "Add Hierarchical Label" )
471 .FriendlyName( _( "Add Hierarchical Label" ) )
472 .Tooltip( _( "Add hierarchical labels" ) )
474 .Flags( AF_ACTIVATE ) );
475
477 .Name( "eeschema.InteractiveDrawing.drawSheet" )
478 .Scope( AS_GLOBAL )
479 .DefaultHotkey( 'S' )
480 .LegacyHotkeyName( "Add Sheet" )
481 .FriendlyName( _( "Add Sheet" ) )
482 .Tooltip( _( "Draw hierarchical sheets" ) )
484 .Flags( AF_ACTIVATE )
485 .Parameter( SCH_SHEET_T ) );
486
488 .Name( "eeschema.InteractiveDrawing.placeSheetPin" )
489 .Scope( AS_GLOBAL )
490 .FriendlyName( _( "Add Sheet Pin" ) )
491 .Tooltip( _( "Add sheet pins" ) )
493 .Flags( AF_ACTIVATE ) );
494
496 .Name( "eeschema.InteractiveDrawing.syncSheetPins" )
497 .Scope( AS_GLOBAL )
498 .FriendlyName( _( "Sync Sheet Pins" ) )
499 .Tooltip( _( "Synchronize sheet pins and hierarchical labels" ) )
501 .Flags( AF_ACTIVATE ) );
502
504 .Name( "eeschema.InteractiveDrawing.syncAllSheetsPins" )
505 .Scope( AS_GLOBAL )
506 .FriendlyName( _( "Sync Sheet Pins" ) )
507 .Tooltip( _( "Synchronize sheet pins and hierarchical labels" ) )
509 .Flags( AF_ACTIVATE ) );
510
512 .Name( "eeschema.InteractiveDrawing.placeGlobalLabel" )
513 .Scope( AS_GLOBAL )
514 .DefaultHotkey( MD_CTRL + 'L' )
515 .LegacyHotkeyName( "Add Global Label" )
516 .FriendlyName( _( "Add Global Label" ) )
517 .Tooltip( _( "Add global labels" ) )
518 .Icon( BITMAPS::add_glabel )
519 .Flags( AF_ACTIVATE ) );
520
522 .Name( "eeschema.InteractiveDrawing.placeSchematicText" )
523 .Scope( AS_GLOBAL )
524 .DefaultHotkey( 'T' )
525 .LegacyHotkeyName( "Add Graphic Text" )
526 .FriendlyName( _( "Add Text" ) )
527 .Tooltip( _( "Draw text items" ) )
528 .Icon( BITMAPS::text )
529 .Flags( AF_ACTIVATE ) );
530
532 .Name( "eeschema.InteractiveDrawing.drawTextBox" )
533 .Scope( AS_GLOBAL )
534 .FriendlyName( _( "Add Text Box" ) )
535 .Tooltip( _( "Draw text box items" ) )
536 .Icon( BITMAPS::add_textbox )
537 .Flags( AF_ACTIVATE )
538 .Parameter( SHAPE_T::RECTANGLE ) );
539
541 .Name( "eeschema.InteractiveDrawing.drawTable" )
542 .Scope( AS_GLOBAL )
543 .FriendlyName( _( "Add Table" ) )
544 .Tooltip( _( "Draw table" ) )
545 .Icon( BITMAPS::spreadsheet ) // JEY TODO
546 .Flags( AF_ACTIVATE ) );
547
549 .Name( "eeschema.InteractiveDrawing.drawRectangle" )
550 .Scope( AS_GLOBAL )
551 .FriendlyName( _( "Add Rectangle" ) )
552 .Tooltip( _( "Draw rectangles" ) )
554 .Flags( AF_ACTIVATE )
555 .Parameter( SHAPE_T::RECTANGLE ) );
556
558 .Name( "eeschema.InteractiveDrawing.drawCircle" )
559 .Scope( AS_GLOBAL )
560 .FriendlyName( _( "Add Circle" ) )
561 .Tooltip( _( "Draw circles" ) )
562 .Icon( BITMAPS::add_circle )
563 .Flags( AF_ACTIVATE )
564 .Parameter( SHAPE_T::CIRCLE ) );
565
567 .Name( "eeschema.InteractiveDrawing.drawArc" )
568 .Scope( AS_GLOBAL )
569 .FriendlyName( _( "Add Arc" ) )
570 .Tooltip( _( "Draw arcs" ) )
571 .Icon( BITMAPS::add_arc )
572 .Flags( AF_ACTIVATE )
573 .Parameter( SHAPE_T::ARC ) );
574
576 .Name( "eeschema.InteractiveDrawing.placeImage" )
577 .Scope( AS_GLOBAL )
578 .FriendlyName( _( "Add Image" ) )
579 .Tooltip( _( "Add bitmap images" ) )
580 .Icon( BITMAPS::image )
581 .Flags( AF_ACTIVATE )
582 .Parameter<SCH_BITMAP*>( nullptr ) );
583
585 .Name( "eeschema.InteractiveDrawing.drawRuleArea" )
586 .Scope( AS_GLOBAL )
587 .FriendlyName( _( "Add Rule Area" ) )
588 .Tooltip( _( "Draw rule area" ) )
590 .Flags( AF_ACTIVATE )
591 .Parameter( SHAPE_T::RECTANGLE ) );
592
594 .Name( "eeschema.InteractiveDrawing.deleteLastPoint" )
595 .Scope( AS_CONTEXT )
596 .FriendlyName( _( "Delete Last Point" ) )
597 .Tooltip( _( "Delete the last point added to the current item" ) )
598 .Icon( BITMAPS::undo ) );
599
601 .Name( "eeschema.InteractiveDrawing.closeOutline" )
602 .Scope( AS_CONTEXT )
603 .FriendlyName( _( "Close Outline" ) )
604 .Tooltip( _( "Close the in progress outline" ) )
605 .Icon( BITMAPS::checked_ok ) );
606
607
608// SCH_EDIT_TOOL
609//
611 .Name( "eeschema.InteractiveEdit.repeatDrawItem" )
612 .Scope( AS_GLOBAL )
613#ifdef __WXMAC__
614 .DefaultHotkey( WXK_F1 )
615#else
616 .DefaultHotkey( WXK_INSERT )
617#endif
618 .LegacyHotkeyName( "Repeat Last Item" )
619 .FriendlyName( _( "Repeat Last Item" ) )
620 .Tooltip( _( "Duplicates the last drawn item" ) ) );
621
623 .Name( "eeschema.InteractiveEdit.rotateCW" )
624 .Scope( AS_GLOBAL )
625 .FriendlyName( _( "Rotate Clockwise" ) )
626 .Tooltip( _( "Rotates selected item(s) clockwise" ) )
627 .Icon( BITMAPS::rotate_cw ) );
628
630 .Name( "eeschema.InteractiveEdit.rotateCCW" )
631 .Scope( AS_GLOBAL )
632 .DefaultHotkey( 'R' )
633 .LegacyHotkeyName( "Rotate Item" )
634 .FriendlyName( _( "Rotate Counterclockwise" ) )
635 .Tooltip( _( "Rotates selected item(s) counter-clockwise" ) )
636 .Icon( BITMAPS::rotate_ccw ) );
637
639 .Name( "eeschema.InteractiveEdit.mirrorV" )
640 .Scope( AS_GLOBAL )
641 .DefaultHotkey( 'Y' )
642 .LegacyHotkeyName( "Mirror X" ) // Yes, these were backwards prior to 6.0....
643 .FriendlyName( _( "Mirror Vertically" ) )
644 .Tooltip( _( "Flips selected item(s) from top to bottom" ) )
645 .Icon( BITMAPS::mirror_v ) );
646
648 .Name( "eeschema.InteractiveEdit.mirrorH" )
649 .Scope( AS_GLOBAL )
650 .DefaultHotkey( 'X' )
651 .LegacyHotkeyName( "Mirror Y" ) // Yes, these were backwards prior to 6.0....
652 .FriendlyName( _( "Mirror Horizontally" ) )
653 .Tooltip( _( "Flips selected item(s) from left to right" ) )
654 .Icon( BITMAPS::mirror_h ) );
655
657 .Name( "eeschema.InteractiveEdit.swap" )
658 .Scope( AS_GLOBAL )
659 .DefaultHotkey( 'S' )
660 .FriendlyName( _( "Swap" ) )
661 .Tooltip( _( "Swaps selected items' positions" ) )
662 .Icon( BITMAPS::swap ) );
663
665 .Name( "eeschema.InteractiveEdit.properties" )
666 .Scope( AS_GLOBAL )
667 .DefaultHotkey( 'E' )
668 .LegacyHotkeyName( "Edit Item" )
669 .FriendlyName( _( "Properties..." ) )
670 .Tooltip( _( "Displays item properties dialog" ) )
671 .Icon( BITMAPS::edit ) );
672
674 .Name( "eeschema.InteractiveEdit.editReference" )
675 .Scope( AS_GLOBAL )
676 .DefaultHotkey( 'U' )
677 .LegacyHotkeyName( "Edit Symbol Reference" )
678 .FriendlyName( _( "Edit Reference Designator..." ) )
679 .Tooltip( _( "Displays reference designator dialog" ) )
680 .Icon( BITMAPS::edit_comp_ref ) );
681
683 .Name( "eeschema.InteractiveEdit.editValue" )
684 .Scope( AS_GLOBAL )
685 .DefaultHotkey( 'V' )
686 .LegacyHotkeyName( "Edit Symbol Value" )
687 .FriendlyName( _( "Edit Value..." ) )
688 .Tooltip( _( "Displays value field dialog" ) )
689 .Icon( BITMAPS::edit_comp_value ) );
690
692 .Name( "eeschema.InteractiveEdit.editFootprint" )
693 .Scope( AS_GLOBAL )
694 .DefaultHotkey( 'F' )
695 .LegacyHotkeyName( "Edit Symbol Footprint" )
696 .FriendlyName( _( "Edit Footprint..." ) )
697 .Tooltip( _( "Displays footprint field dialog" ) )
699
701 .Name( "eeschema.InteractiveEdit.autoplaceFields" )
702 .Scope( AS_GLOBAL )
703 .DefaultHotkey( 'O' )
704 .LegacyHotkeyName( "Autoplace Fields" )
705 .FriendlyName( _( "Autoplace Fields" ) )
706 .Tooltip( _( "Runs the automatic placement algorithm on the symbol or sheet's fields" ) )
707 .Icon( BITMAPS::autoplace_fields ) );
708
710 .Name( "eeschema.InteractiveEdit.changeSymbols" )
711 .Scope( AS_GLOBAL )
712 .FriendlyName( _( "Change Symbols..." ) )
713 .Tooltip( _( "Assign different symbols from the library" ) )
714 .Icon( BITMAPS::exchange ) );
715
717 .Name( "eeschema.InteractiveEdit.updateSymbols" )
718 .Scope( AS_GLOBAL )
719 .FriendlyName( _( "Update Symbols from Library..." ) )
720 .Tooltip( _( "Update symbols to include any changes from the library" ) )
721 .Icon( BITMAPS::refresh ) );
722
724 .Name( "eeschema.InteractiveEdit.changeSymbol" )
725 .Scope( AS_GLOBAL )
726 .FriendlyName( _( "Change Symbol..." ) )
727 .Tooltip( _( "Assign a different symbol from the library" ) )
728 .Icon( BITMAPS::exchange ) );
729
731 .Name( "eeschema.InteractiveEdit.updateSymbol" )
732 .Scope( AS_GLOBAL )
733 .FriendlyName( _( "Update Symbol..." ) )
734 .Tooltip( _( "Update symbol to include any changes from the library" ) )
735 .Icon( BITMAPS::refresh ) );
736
738 .Name( "eeschema.InteractiveEdit.assignNetclass" )
739 .Scope( AS_GLOBAL )
740 .FriendlyName( _( "Assign Netclass..." ) )
741 .Tooltip( _( "Assign a netclass to nets matching a pattern" ) )
742 .Icon( BITMAPS::netlist ) );
743
745 .Name( "eeschema.InteractiveEdit.toggleDeMorgan" )
746 .Scope( AS_GLOBAL )
747 .FriendlyName( _( "De Morgan Conversion" ) )
748 .Tooltip( _( "Switch between De Morgan representations" ) )
749 .Icon( BITMAPS::morgan2 ) );
750
752 .Name( "eeschema.InteractiveEdit.showDeMorganStandard" )
753 .Scope( AS_GLOBAL )
754 .FriendlyName( _( "De Morgan Standard" ) )
755 .Tooltip( _( "Switch to standard De Morgan representation" ) )
756 .Icon( BITMAPS::morgan1 ) );
757
759 .Name( "eeschema.InteractiveEdit.showDeMorganAlternate" )
760 .Scope( AS_GLOBAL )
761 .FriendlyName( _( "De Morgan Alternate" ) )
762 .Tooltip( _( "Switch to alternate De Morgan representation" ) )
763 .Icon( BITMAPS::morgan2 ) );
764
766 .Name( "eeschema.InteractiveEdit.toLabel" )
767 .Scope( AS_GLOBAL )
768 .FriendlyName( _( "Change to Label" ) )
769 .Tooltip( _( "Change existing item to a label" ) )
771 .Flags( AF_NONE )
772 .Parameter( SCH_LABEL_T ) );
773
775 .Name( "eeschema.InteractiveEdit.toCLabel" )
776 .Scope( AS_GLOBAL )
777 .FriendlyName( _( "Change to Directive Label" ) )
778 .Tooltip( _( "Change existing item to a directive label" ) )
780 .Flags( AF_NONE )
781 .Parameter( SCH_DIRECTIVE_LABEL_T ) );
782
784 .Name( "eeschema.InteractiveEdit.toHLabel" )
785 .Scope( AS_GLOBAL )
786 .FriendlyName( _( "Change to Hierarchical Label" ) )
787 .Tooltip( _( "Change existing item to a hierarchical label" ) )
789 .Flags( AF_NONE )
790 .Parameter( SCH_HIER_LABEL_T ) );
791
793 .Name( "eeschema.InteractiveEdit.toGLabel" )
794 .Scope( AS_GLOBAL )
795 .FriendlyName( _( "Change to Global Label" ) )
796 .Tooltip( _( "Change existing item to a global label" ) )
797 .Icon( BITMAPS::add_glabel )
798 .Flags( AF_NONE )
799 .Parameter( SCH_GLOBAL_LABEL_T ) );
800
802 .Name( "eeschema.InteractiveEdit.toText" )
803 .Scope( AS_GLOBAL )
804 .FriendlyName( _( "Change to Text" ) )
805 .Tooltip( _( "Change existing item to a text comment" ) )
806 .Icon( BITMAPS::text )
807 .Flags( AF_NONE )
808 .Parameter( SCH_TEXT_T ) );
809
811 .Name( "eeschema.InteractiveEdit.toTextBox" )
812 .Scope( AS_GLOBAL )
813 .FriendlyName( _( "Change to Text Box" ) )
814 .Tooltip( _( "Change existing item to a text box" ) )
815 .Icon( BITMAPS::add_textbox )
816 .Flags( AF_NONE )
817 .Parameter( SCH_TEXTBOX_T ) );
818
820 .Name( "eeschema.InteractiveEdit.cleanupSheetPins" )
821 .Scope( AS_GLOBAL )
822 .FriendlyName( _( "Cleanup Sheet Pins" ) )
823 .Tooltip( _( "Delete unreferenced sheet pins" ) ) );
824
826 .Name( "eeschema.InteractiveEdit.editTextAndGraphics" )
827 .Scope( AS_GLOBAL )
828 .FriendlyName( _( "Edit Text & Graphics Properties..." ) )
829 .Tooltip( _( "Edit text and graphics properties globally across schematic" ) )
830 .Icon( BITMAPS::text ) );
831
833 .Name( "eeschema.InteractiveEdit.symbolProperties" )
834 .Scope( AS_GLOBAL )
835 .FriendlyName( _( "Symbol Properties..." ) )
836 .Tooltip( _( "Displays symbol properties dialog" ) )
837 .Icon( BITMAPS::part_properties ) );
838
840 .Name( "eeschema.InteractiveEdit.pinTable" )
841 .Scope( AS_GLOBAL )
842 .FriendlyName( _( "Pin Table..." ) )
843 .Tooltip( _( "Displays pin table for bulk editing of pins" ) )
844 .Icon( BITMAPS::pin_table ) );
845
847 .Name( "eeschema.InteractiveEdit.breakWire" )
848 .Scope( AS_GLOBAL )
849 .FriendlyName( _( "Break" ) )
850 .Tooltip( _( "Divide into connected segments" ) )
851 .Icon( BITMAPS::break_line ) );
852
854 .Name( "eeschema.InteractiveEdit.slice" )
855 .Scope( AS_GLOBAL )
856 .FriendlyName( _( "Slice" ) )
857 .Tooltip( _( "Divide into unconnected segments" ) )
858 .Icon( BITMAPS::slice_line ) );
859
860// SCH_EDITOR_CONTROL
861//
863 .Name( "eeschema.EditorControl.restartMove" )
864 .Scope( AS_GLOBAL ) );
865
867 .Name( "eeschema.EditorControl.highlightNet" )
868 .Scope( AS_GLOBAL )
869 .DefaultHotkey( '`' )
870 .FriendlyName( _( "Highlight Net" ) )
871 .Tooltip( _( "Highlight net under cursor" ) )
873
875 .Name( "eeschema.EditorControl.clearHighlight" )
876 .Scope( AS_GLOBAL )
877 .DefaultHotkey( '~' )
878 .FriendlyName( _( "Clear Net Highlighting" ) )
879 .Tooltip( _( "Clear any existing net highlighting" ) ) );
880
882 .Name( "eeschema.EditorControl.updateNetHighlighting" )
883 .Scope( AS_GLOBAL ) );
884
886 .Name( "eeschema.EditorControl.highlightNetTool" )
887 .Scope( AS_GLOBAL )
888 .FriendlyName( _( "Highlight Nets" ) )
889 .Tooltip( _( "Highlight wires and pins of a net" ) )
891 .Flags( AF_ACTIVATE ) );
892
894 .Name( "eeschema.EditorControl.showNetNavigator" )
895 .Scope( AS_GLOBAL )
896 .FriendlyName( _( "Show Net Navigator" ) )
897 .Tooltip( _( "Toggle the net navigator panel visibility" ) ) );
898
900 .Name( "eeschema.EditorControl.editWithSymbolEditor" )
901 .Scope( AS_GLOBAL )
902 .DefaultHotkey( MD_CTRL + 'E' )
903 .LegacyHotkeyName( "Edit with Symbol Editor" )
904 .FriendlyName( _( "Edit with Symbol Editor" ) )
905 .Tooltip( _( "Open the selected symbol in the Symbol Editor" ) )
906 .Icon( BITMAPS::libedit ) );
907
909 .Name( "eeschema.EditorControl.setExcludeFromBOM" )
910 .Scope( AS_GLOBAL )
911 .FriendlyName( _( "Exclude from Bill of Materials" ) )
912 .Tooltip( _( "Set the exclude from bill of materials attribute" ) ) );
913
915 .Name( "eeschema.EditorControl.unsetExcludeFromBOM" )
916 .Scope( AS_GLOBAL )
917 .FriendlyName( _( "Include in Bill of Materials" ) )
918 .Tooltip( _( "Clear the exclude from bill of materials attribute" ) ) );
919
921 .Name( "eeschema.EditorControl.toggleExcludeFromBOM" )
922 .Scope( AS_GLOBAL )
923 .FriendlyName( _( "Toggle Exclude from Bill of Materials" ) )
924 .Tooltip( _( "Toggle the exclude from bill of materials attribute" ) ) );
925
927 .Name( "eeschema.EditorControl.setExcludeFromSimulation" )
928 .Scope( AS_GLOBAL )
929 .FriendlyName( _( "Exclude from Simulation" ) )
930 .Tooltip( _( "Set the exclude from simulation attribute" ) ) );
931
933 .Name( "eeschema.EditorControl.unsetExcludeFromSimulation" )
934 .Scope( AS_GLOBAL )
935 .FriendlyName( _( "Include in Simulation" ) )
936 .Tooltip( _( "Clear the exclude from simulation attribute" ) ) );
937
939 .Name( "eeschema.EditorControl.toggleExcludeFromSimulation" )
940 .Scope( AS_GLOBAL )
941 .FriendlyName( _( "Toggle Exclude from Simulation" ) )
942 .Tooltip( _( "Toggle the exclude from simulation attribute" ) ) );
943
945 .Name( "eeschema.EditorControl.setExcludeFromBoard" )
946 .Scope( AS_GLOBAL )
947 .FriendlyName( _( "Exclude from Board" ) )
948 .Tooltip( _( "Set the exclude from board attribute" ) ) );
949
951 .Name( "eeschema.EditorControl.unsetExcludeFromBoard" )
952 .Scope( AS_GLOBAL )
953 .FriendlyName( _( "Include on Board" ) )
954 .Tooltip( _( "Clear the exclude from board attribute" ) ) );
955
957 .Name( "eeschema.EditorControl.toggleExcludeFromBoard" )
958 .Scope( AS_GLOBAL )
959 .FriendlyName( _( "Toggle Exclude from Board" ) )
960 .Tooltip( _( "Toggle the exclude from board attribute" ) ) );
961
963 .Name( "eeschema.EditorControl.setDNP" )
964 .Scope( AS_GLOBAL )
965 .FriendlyName( _( "Set Do Not Populate" ) )
966 .Tooltip( _( "Set the do not populate attribute" ) ) );
967
969 .Name( "eeschema.EditorControl.unsetDNP" )
970 .Scope( AS_GLOBAL )
971 .FriendlyName( _( "Unset Do Not Populate" ) )
972 .Tooltip( _( "Clear the do not populate attribute" ) ) );
973
975 .Name( "eeschema.EditorControl.toggleDNP" )
976 .Scope( AS_GLOBAL )
977 .DefaultHotkey( MD_CTRL + MD_ALT + 'X' )
978 .FriendlyName( _( "Toggle Do Not Populate" ) )
979 .Tooltip( _( "Toggle the do not populate attribute" ) ) );
980
982 .Name( "eeschema.EditorControl.editLibSymbolWithSymbolEditor" )
983 .Scope( AS_GLOBAL )
984 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'E' )
985 .FriendlyName( _( "Edit Library Symbol..." ) )
986 .Tooltip( _( "Open the library symbol in the Symbol Editor" ) )
987 .Icon( BITMAPS::libedit ) );
988
990 .Name( "eeschema.EditorControl.editSymbolFields" )
991 .Scope( AS_GLOBAL )
992 .FriendlyName( _( "Edit Symbol Fields..." ) )
993 .Tooltip( _( "Bulk-edit fields of all symbols in schematic" ) )
994 .Icon( BITMAPS::spreadsheet ) );
995
997 .Name( "eeschema.EditorControl.editSymbolLibraryLinks" )
998 .Scope( AS_GLOBAL )
999 .FriendlyName( _( "Edit Symbol Library Links..." ) )
1000 .Tooltip( _( "Edit links between schematic and library symbols" ) )
1002
1004 .Name( "eeschema.EditorControl.assignFootprints" )
1005 .Scope( AS_GLOBAL )
1006 .FriendlyName( _( "Assign Footprints..." ) )
1007 .Tooltip( _( "Run footprint assignment tool" ) )
1008 .Icon( BITMAPS::icon_cvpcb_24 ) );
1009
1011 .Name( "eeschema.EditorControl.importFPAssignments" )
1012 .Scope( AS_GLOBAL )
1013 .FriendlyName( _( "Import Footprint Assignments..." ) )
1014 .Tooltip( _( "Import symbol footprint assignments from .cmp file created by board editor" ) )
1016
1018 .Name( "eeschema.EditorControl.annotate" )
1019 .Scope( AS_GLOBAL )
1020 .FriendlyName( _( "Annotate Schematic..." ) )
1021 .Tooltip( _( "Fill in schematic symbol reference designators" ) )
1022 .Icon( BITMAPS::annotate ) );
1023
1025 .Name( "eeschema.EditorControl.schematicSetup" )
1026 .Scope( AS_GLOBAL )
1027 .FriendlyName( _( "Schematic Setup..." ) )
1028 .Tooltip( _( "Edit schematic setup including annotation styles and electrical rules" ) )
1029 .Icon( BITMAPS::options_schematic ) );
1030
1032 .Name( "eeschema.EditorControl.editPageNumber" )
1033 .Scope( AS_GLOBAL )
1034 .FriendlyName( _( "Edit Sheet Page Number..." ) )
1035 .Tooltip( _( "Edit the page number of the current or selected sheet" ) ) );
1036
1038 .Name( "eeschema.EditorControl.rescueSymbols" )
1039 .Scope( AS_GLOBAL )
1040 .FriendlyName( _( "Rescue Symbols..." ) )
1041 .Tooltip( _( "Find old symbols in project and rename/rescue them" ) )
1042 .Icon( BITMAPS::rescue ) );
1043
1045 .Name( "eeschema.EditorControl.remapSymbols" )
1046 .Scope( AS_GLOBAL )
1047 .FriendlyName( _( "Remap Legacy Library Symbols..." ) )
1048 .Tooltip( _( "Remap library symbol references in legacy schematics to the symbol library table" ) )
1049 .Icon( BITMAPS::rescue ) );
1050
1052 .Name( "eeschema.EditorControl.drawSheetOnClipboard" )
1053 .Scope( AS_GLOBAL )
1054 .FriendlyName( _( "Export Drawing to Clipboard" ) )
1055 .Tooltip( _( "Export drawing of current sheet to clipboard" ) )
1056 .Icon( BITMAPS::copy ) );
1057
1059 .Name( "eeschema.EditorControl.importGraphics" )
1060 .Scope( AS_GLOBAL )
1061 .DefaultHotkey( MD_SHIFT + MD_CTRL + 'F' )
1062 .LegacyHotkeyName( "Place DXF" )
1063 .FriendlyName( _( "Import Graphics..." ) )
1064 .Tooltip( _( "Import 2D drawing file" ) )
1065 .Icon( BITMAPS::import_vector )
1066 .Flags( AF_ACTIVATE ) );
1067
1069 .Name( "eeschema.EditorControl.showPcbNew" )
1070 .Scope( AS_GLOBAL )
1071 .FriendlyName( _( "Switch to PCB Editor" ) )
1072 .Tooltip( _( "Open PCB in board editor" ) )
1073 .Icon( BITMAPS::icon_pcbnew_24 ) );
1074
1076 .Name( "eeschema.EditorControl.exportNetlist" )
1077 .Scope( AS_GLOBAL )
1078 .FriendlyName( _( "Export Netlist..." ) )
1079 .Tooltip( _( "Export file containing netlist in one of several formats" ) )
1080 .Icon( BITMAPS::netlist ) );
1081
1083 .Name( "eeschema.EditorControl.generateBOM" )
1084 .Scope( AS_GLOBAL )
1085 .FriendlyName( _( "Generate Bill of Materials..." ) )
1086 .Tooltip( _( "Generate a bill of materials for the current schematic" ) )
1087 .Icon( BITMAPS::post_bom ) );
1088
1090 .Name( "eeschema.EditorControl.generateBOMLegacy" )
1091 .Scope( AS_GLOBAL )
1092 .FriendlyName( _( "Generate Legacy Bill of Materials..." ) )
1093 .Tooltip( _( "Generate a bill of materials for the current schematic (Legacy Generator)" ) )
1094 );
1095
1097 .Name( "eeschema.EditorControl.generateBOMExternal" )
1098 .Scope( AS_GLOBAL )
1099 .FriendlyName( _( "Generate Bill of Materials (External)..." ) )
1100 .Tooltip( _( "Generate a bill of materials for the current schematic using external generator" ) )
1101 );
1102
1104 .Name( "eeschema.EditorControl.exportSymbolsToLibrary" )
1105 .Scope( AS_GLOBAL )
1106 .FriendlyName( _( "Export Symbols to Library..." ) )
1107 .Tooltip( _( "Add symbols used in schematic to an existing symbol library\n"
1108 "(does not remove other symbols from this library)" ) )
1109 .Icon( BITMAPS::library_archive ) );
1110
1112 .Name( "eeschema.EditorControl.exportSymbolsToNewLibrary" )
1113 .Scope( AS_GLOBAL )
1114 .FriendlyName( _( "Export Symbols to New Library..." ) )
1115 .Tooltip( _( "Create a new symbol library using the symbols used in the schematic\n"
1116 "(if the library already exists it will be replaced)" ) )
1117 .Icon( BITMAPS::library_archive_as ) );
1118
1120 .Name( "eeschema.EditorControl.selectOnPCB" )
1121 .Scope( AS_GLOBAL )
1122 .FriendlyName( _( "Select on PCB" ) )
1123 .Tooltip( _( "Select corresponding items in PCB editor" ) )
1124 .Icon( BITMAPS::select_same_sheet ) );
1125
1127 .Name( "eeschema.EditorControl.showHiddenPins" )
1128 .Scope( AS_GLOBAL )
1129 .FriendlyName( _( "Show Hidden Pins" ) )
1130 .Tooltip( _( "Toggle display of hidden pins" ) )
1131 .Icon( BITMAPS::hidden_pin ) );
1132
1134 .Name( "eeschema.EditorControl.showHiddenFields" )
1135 .Scope( AS_GLOBAL )
1136 .FriendlyName( _( "Show Hidden Fields" ) )
1137 .Tooltip( _( "Toggle display of hidden text fields" ) ) );
1138
1140 .Name( "eeschema.EditorControl.showDirectiveLabels" )
1141 .Scope( AS_GLOBAL )
1142 .FriendlyName( _( "Show Directive Labels" ) )
1143 .Tooltip( _( "Toggle display of directive labels" ) ) );
1144
1146 .Name( "eeschema.EditorControl.showERCWarnings" )
1147 .Scope( AS_GLOBAL )
1148 .FriendlyName( _( "Show ERC Warnings" ) )
1149 .Tooltip( _( "Show markers for electrical rules checker warnings" ) ) );
1150
1152 .Name( "eeschema.EditorControl.showERCErrors" )
1153 .Scope( AS_GLOBAL )
1154 .FriendlyName( _( "Show ERC Errors" ) )
1155 .Tooltip( _( "Show markers for electrical rules checker errors" ) ) );
1156
1158 .Name( "eeschema.EditorControl.showERCExclusions" )
1159 .Scope( AS_GLOBAL )
1160 .FriendlyName( _( "Show ERC Exclusions" ) )
1161 .Tooltip( _( "Show markers for excluded electrical rules checker violations" ) ) );
1162
1164 .Name( "eeschema.EditorControl.markSimExclusions" )
1165 .Scope( AS_GLOBAL )
1166 .FriendlyName( _( "Mark items excluded from simulation" ) )
1167 .Tooltip( _( "Draw 'X's over items which have been excluded from simulation" ) ) );
1168
1170 .Name( "eeschema.EditorControl.showOperatingPointVoltages" )
1171 .Scope( AS_GLOBAL )
1172 .FriendlyName( _( "Show OP Voltages" ) )
1173 .Tooltip( _( "Show operating point voltage data from simulation" ) ) );
1174
1176 .Name( "eeschema.EditorControl.showOperatingPointCurrents" )
1177 .Scope( AS_GLOBAL )
1178 .FriendlyName( _( "Show OP Currents" ) )
1179 .Tooltip( _( "Show operating point current data from simulation" ) ) );
1180
1182 .Name( "eeschema.EditorControl.lineModeFree" )
1183 .Scope( AS_GLOBAL )
1184 .FriendlyName( _( "Line Mode for Wires and Buses" ) )
1185 .Tooltip( _( "Draw and drag at any angle" ) )
1186 .Icon( BITMAPS::lines_any )
1187 .Flags( AF_NONE )
1188 .Parameter( LINE_MODE::LINE_MODE_FREE ) );
1189
1191 .Name( "eeschema.EditorControl.lineModeOrthonal" )
1192 .Scope( AS_GLOBAL )
1193 .FriendlyName( _( "Line Mode for Wires and Buses" ) )
1194 .Tooltip( _( "Constrain drawing and dragging to horizontal or vertical motions" ) )
1195 .Icon( BITMAPS::lines90 )
1196 .Flags( AF_NONE )
1197 .Parameter( LINE_MODE::LINE_MODE_90) );
1198
1200 .Name( "eeschema.EditorControl.lineMode45" )
1201 .Scope( AS_GLOBAL )
1202 .FriendlyName( _( "Line Mode for Wires and Buses" ) )
1203 .Tooltip( _( "Constrain drawing and dragging to horizontal, vertical, or 45-degree angle motions" ) )
1204 .Icon( BITMAPS::hv45mode )
1205 .Flags( AF_NONE )
1206 .Parameter( LINE_MODE::LINE_MODE_45 ) );
1207
1209 .Name( "eeschema.EditorControl.lineModeNext" )
1210 .Scope( AS_GLOBAL )
1211 .DefaultHotkey( MD_SHIFT + static_cast<int>( WXK_SPACE ) )
1212 .FriendlyName( _( "Line Mode for Wires and Buses" ) )
1213 .Tooltip( _( "Switch to next line mode" ) ) );
1214
1216 .Name( "eeschema.EditorControl.annotateAutomatically" )
1217 .Scope( AS_GLOBAL )
1218 .FriendlyName( _( "Annotate Automatically" ) )
1219 .Tooltip( _( "Toggle automatic annotation of new symbols" ) )
1220 .Icon( BITMAPS::annotate ) );
1221
1223 .Name( "eeschema.EditorControl.repairSchematic" )
1224 .Scope( AS_GLOBAL )
1225 .FriendlyName( _( "Repair Schematic" ) )
1226 .Tooltip( _( "Run various diagnostics and attempt to repair schematic" ) )
1227 .Icon( BITMAPS::rescue ) );
1228
1229// Python Console
1231 .Name( "eeschema.EditorControl.showPythonConsole" )
1232 .Scope( AS_GLOBAL )
1233 .FriendlyName( _( "Scripting Console" ) )
1234 .Tooltip( _( "Show the Python scripting console" ) )
1235 .Icon( BITMAPS::py_script ) );
1236
1237// SCH_NAVIGATE_TOOL
1238//
1240 .Name( "eeschema.NavigateTool.changeSheet" )
1241 .Scope( AS_CONTEXT )
1242 .FriendlyName( _( "Change Sheet" ) )
1243 .Tooltip( _( "Change to provided sheet's contents in the schematic editor" ) )
1244 .Icon( BITMAPS::enter_sheet ) );
1245
1247 .Name( "eeschema.NavigateTool.enterSheet" )
1248 .Scope( AS_GLOBAL )
1249 .FriendlyName( _( "Enter Sheet" ) )
1250 .Tooltip( _( "Display the selected sheet's contents in the schematic editor" ) )
1251 .Icon( BITMAPS::enter_sheet ) );
1252
1254 .Name( "eeschema.NavigateTool.leaveSheet" )
1255 .Scope( AS_GLOBAL )
1256 .DefaultHotkey( MD_ALT + static_cast<int>( WXK_BACK ) )
1257 .LegacyHotkeyName( "Leave Sheet" )
1258 .FriendlyName( _( "Leave Sheet" ) )
1259 .Tooltip( _( "Display the parent sheet in the schematic editor" ) )
1260 .Icon( BITMAPS::leave_sheet ) );
1261
1263 .Name( "eeschema.NavigateTool.up" )
1264 .Scope( AS_GLOBAL )
1265 .DefaultHotkey( MD_ALT + static_cast<int>( WXK_UP ) )
1266 .FriendlyName( _( "Navigate Up" ) )
1267 .Tooltip( _( "Navigate up one sheet in the hierarchy" ) )
1268 .Icon( BITMAPS::up ) );
1269
1271 .Name( "eeschema.NavigateTool.back" )
1272 .Scope( AS_GLOBAL )
1273 .DefaultHotkey( MD_ALT + static_cast<int>( WXK_LEFT ) )
1274 .FriendlyName( _( "Navigate Back" ) )
1275 .Tooltip( _( "Move backward in sheet navigation history" ) )
1276 .Icon( BITMAPS::left ) );
1277
1279 .Name( "eeschema.NavigateTool.forward" )
1280 .Scope( AS_GLOBAL )
1281 .DefaultHotkey( MD_ALT + static_cast<int>( WXK_RIGHT ) )
1282 .FriendlyName( _( "Navigate Forward" ) )
1283 .Tooltip( _( "Move forward in sheet navigation history" ) )
1284 .Icon( BITMAPS::right ) );
1285
1287 .Name( "eeschema.NavigateTool.previous" )
1288 .Scope( AS_GLOBAL )
1289 .DefaultHotkey( WXK_PAGEUP )
1290 .FriendlyName( _( "Previous Sheet" ) )
1291 .Tooltip( _( "Move to previous sheet by number" ) )
1292 .Icon( BITMAPS::left ) );
1293
1295 .Name( "eeschema.NavigateTool.next" )
1296 .Scope( AS_GLOBAL )
1297 .DefaultHotkey( WXK_PAGEDOWN )
1298 .FriendlyName( _( "Next Sheet" ) )
1299 .Tooltip( _( "Move to next sheet by number" ) )
1300 .Icon( BITMAPS::right ) );
1301
1303 .Name( "eeschema.EditorTool.showHierarchy" )
1304 .Scope( AS_GLOBAL )
1305 .DefaultHotkey( MD_CTRL + 'H' )
1306 .FriendlyName( _( "Hierarchy Navigator" ) )
1307 .Tooltip( _( "Show or hide the schematic sheet hierarchy navigator" ) )
1308 .Icon( BITMAPS::hierarchy_nav ) );
1309
1310
1311// SCH_LINE_WIRE_BUS_TOOL
1312//
1315 .Name( "eeschema.InteractiveDrawingLineWireBus.drawWires" )
1316 .Scope( AS_GLOBAL )
1317 .DefaultHotkey( 'W' )
1318 .LegacyHotkeyName( "Begin Wire" )
1319 .FriendlyName( _( "Add Wire" ) )
1320 .Tooltip( _( "Add a wire" ) )
1321 .Icon( BITMAPS::add_line )
1322 .Flags( AF_ACTIVATE )
1323 .Parameter( &drawWireActionParam ) );
1324
1327 .Name( "eeschema.InteractiveDrawingLineWireBus.drawBuses" )
1328 .Scope( AS_GLOBAL )
1329 .DefaultHotkey( 'B' )
1330 .LegacyHotkeyName( "Begin Bus" )
1331 .FriendlyName( _( "Add Bus" ) )
1332 .Tooltip( _( "Add a bus" ) )
1333 .Icon( BITMAPS::add_bus )
1334 .Flags( AF_ACTIVATE )
1335 .Parameter( &drawBusActionParam ) );
1336
1338 .Name( "eeschema.InteractiveDrawingLineWireBus.unfoldBus" )
1339 .Scope( AS_GLOBAL )
1340 .DefaultHotkey( 'C' )
1341 .LegacyHotkeyName( "Unfold from Bus" )
1342 .FriendlyName( _( "Unfold from Bus" ) )
1343 .Tooltip( _( "Break a wire out of a bus" ) )
1345 .Flags( AF_ACTIVATE )
1346 .Parameter<wxString*>( nullptr ) );
1347
1350 .Name( "eeschema.InteractiveDrawingLineWireBus.drawLines" )
1351 .Scope( AS_GLOBAL )
1352 .DefaultHotkey( 'I' )
1353 .LegacyHotkeyName( "Add Graphic PolyLine" )
1354 .FriendlyName( _( "Add Lines" ) )
1355 .Tooltip( _( "Draw graphic lines" ) )
1357 .Flags( AF_ACTIVATE )
1358 .Parameter( &drawLinesActionParam ) );
1359
1361 .Name( "eeschema.InteractiveDrawingLineWireBus.undoLastSegment")
1362 .Scope( AS_GLOBAL )
1363 .DefaultHotkey( WXK_BACK )
1364 .FriendlyName( _( "Undo Last Segment" ) )
1365 .Tooltip( _( "Walks the current line back one segment." ) )
1366 .Icon( BITMAPS::undo ) );
1367
1369 .Name( "eeschema.InteractiveDrawingLineWireBus.switchPosture" )
1370 .Scope( AS_GLOBAL )
1371 .DefaultHotkey( '/' )
1372 .FriendlyName( _( "Switch Segment Posture" ) )
1373 .Tooltip( _( "Switches posture of the current segment." ) )
1375 .Flags( AF_NONE ) );
1376
1377// SCH_MOVE_TOOL
1378//
1380 .Name( "eeschema.InteractiveMove.move" )
1381 .Scope( AS_GLOBAL )
1382 .DefaultHotkey( 'M' )
1383 .LegacyHotkeyName( "Move Item" )
1384 .FriendlyName( _( "Move" ) )
1385 .Tooltip( _( "Moves the selected item(s)" ) )
1386 .Icon( BITMAPS::move )
1387 .Flags( AF_ACTIVATE ) );
1388
1390 .Name( "eeschema.InteractiveMove.drag" )
1391 .Scope( AS_GLOBAL )
1392 .DefaultHotkey( 'G' )
1393 .LegacyHotkeyName( "Drag Item" )
1394 .FriendlyName( _( "Drag" ) )
1395 .Tooltip( _( "Drags the selected item(s)" ) )
1396 .Icon( BITMAPS::drag )
1397 .Flags( AF_ACTIVATE ) );
1398
1400 .Name( "eeschema.AlignToGrid" )
1401 .Scope( AS_GLOBAL )
1402 .FriendlyName( _( "Align Items to Grid" ) )
1404 .Flags( AF_ACTIVATE ) );
1405
1406// Schematic editor save copy curr sheet command
1408 .Name( "eeschema.EditorControl.saveCurrSheetCopyAs" )
1409 .Scope( AS_GLOBAL )
1410 .FriendlyName( _( "Save Current Sheet Copy As..." ) )
1411 .Tooltip( _( "Save a copy of the current sheet to another location or name" ) )
1412 .Icon( BITMAPS::save_as ) );
1413
1414// Drag and drop
1416 .Name( "eeschema.EditorControl.ddAppendFile" )
1417 .Scope( AS_GLOBAL ) );
1418
1419// SIMULATOR
1421 .Name( "eeschema.Simulation.newAnalysisTab" )
1422 .Scope( AS_GLOBAL )
1423 .DefaultHotkey( MD_CTRL + 'N' )
1424 .LegacyHotkeyName( "New" )
1425 .FriendlyName( _( "New Analysis Tab..." ) )
1426 .Tooltip( _( "Create a new tab containing a simulation analysis" ) )
1427 .Icon( BITMAPS::sim_add_plot ) );
1428
1430 .Name( "eeschema.Simulation.openWorkbook" )
1431 .Scope( AS_GLOBAL )
1432 .DefaultHotkey( MD_CTRL + 'O' )
1433 .LegacyHotkeyName( "Open" )
1434 .FriendlyName( _( "Open Workbook..." ) )
1435 .Tooltip( _( "Open a saved set of analysis tabs and settings" ) )
1436 .Icon( BITMAPS::directory_open ) );
1437
1439 .Name( "eeschema.Simulation.saveWorkbook" )
1440 .Scope( AS_GLOBAL )
1441 .DefaultHotkey( MD_CTRL + 'S' )
1442 .LegacyHotkeyName( "Save" )
1443 .FriendlyName( _( "Save Workbook" ) )
1444 .Tooltip( _( "Save the current set of analysis tabs and settings" ) )
1445 .Icon( BITMAPS::save ) );
1446
1448 .Name( "eeschema.Simulation.saveWorkbookAs" )
1449 .Scope( AS_GLOBAL )
1450 .DefaultHotkey( MD_SHIFT + MD_CTRL + 'S' )
1451 .LegacyHotkeyName( "Save As" )
1452 .FriendlyName( _( "Save Workbook As..." ) )
1453 .Tooltip( _( "Save the current set of analysis tabs and settings to another location" ) )
1454 .Icon( BITMAPS::sim_add_signal ) );
1455
1457 .Name( "eeschema.Simulator.exportPNG" )
1458 .Scope( AS_GLOBAL )
1459 .FriendlyName( _( "Export Current Plot as PNG..." ) )
1460 .Icon( BITMAPS::export_png ) );
1461
1463 .Name( "eeschema.Simulator.exportCSV" )
1464 .Scope( AS_GLOBAL )
1465 .FriendlyName( _( "Export Current Plot as CSV..." ) )
1466 .Icon( BITMAPS::export_file ) );
1467
1469 .Name( "eeschema.Simulator.exportToClipboard" )
1470 .Scope( AS_GLOBAL )
1471 .FriendlyName( _( "Export Current Plot to Clipboard" ) )
1472 .Icon( BITMAPS::export_png ) );
1473
1475 .Name( "eeschema.Simulator.exportPlotToSchematic" )
1476 .Scope( AS_GLOBAL )
1477 .FriendlyName( _( "Export Current Plot to Schematic" ) )
1478 .Icon( BITMAPS::export_png ) );
1479
1481 .Name( "eeschema.Simulator.toggleLegend" )
1482 .Scope( AS_GLOBAL )
1483 .FriendlyName( _( "Show Legend" ) )
1484 .Icon( BITMAPS::text ) );
1485
1487 .Name( "eeschema.Simulator.toggleDottedSecondary" )
1488 .Scope( AS_GLOBAL )
1489 .FriendlyName( _( "Dotted Current/Phase" ) )
1490 .Tooltip( _( "Draw secondary signal trace (current or phase) with a dotted line" ) ) );
1491
1493 .Name( "eeschema.Simulator.toggleDarkModePlots" )
1494 .Scope( AS_GLOBAL )
1495 .FriendlyName( _( "Dark Mode Plots" ) )
1496 .Tooltip( _( "Draw plots with a black background" ) ) );
1497
1499 .Name( "eeschema.Simulation.simAnalysisProperties" )
1500 .Scope( AS_GLOBAL )
1501 .FriendlyName( _( "Edit Analysis Tab..." ) )
1502 .Tooltip( _( "Edit the current analysis tab's SPICE command and plot setup" ) )
1503 .Icon( BITMAPS::sim_command ) );
1504
1506 .Name( "eeschema.Simulation.runSimulation" )
1507 .Scope( AS_GLOBAL )
1508 .DefaultHotkey( 'R' )
1509 .FriendlyName( _( "Run Simulation" ) )
1510 .Icon( BITMAPS::sim_run ) );
1511
1513 .Name( "eeschema.Simulation.stopSimulation" )
1514 .Scope( AS_GLOBAL )
1515 .FriendlyName( _( "Stop Simulation" ) )
1516 .Icon( BITMAPS::sim_stop ) );
1517
1519 .Name( "eeschema.Simulation.probe" )
1520 .Scope( AS_GLOBAL )
1521 .DefaultHotkey( 'P' )
1522 .FriendlyName( _( "Probe Schematic..." ) )
1523 .Tooltip( _( "Add a simulator probe" ) )
1524 .Icon( BITMAPS::sim_probe ) );
1525
1527 .Name( "eeschema.Simulation.tune" )
1528 .Scope( AS_GLOBAL )
1529 .DefaultHotkey( 'T' )
1530 .FriendlyName( _( "Add Tuned Value..." ) )
1531 .Tooltip( _( "Select a value to be tuned" ) )
1532 .Icon( BITMAPS::sim_tune ) );
1533
1535 .Name( "eeschema.Simulation.editUserDefinedSignals" )
1536 .Scope( AS_GLOBAL )
1537 .FriendlyName( _( "User-defined Signals..." ) )
1538 .Tooltip( _( "Add, edit or delete user-defined simulation signals" ) )
1539 .Icon( BITMAPS::sim_add_signal ) );
1540
1542 .Name( "eeschema.Simulation.showNetlist" )
1543 .Scope( AS_GLOBAL )
1544 .FriendlyName( _( "Show SPICE Netlist" ) )
1545 .Icon( BITMAPS::netlist ) );
@ add_symbol_to_schematic
@ hierarchy_nav
@ delete_cursor
@ add_hierarchical_subsheet
@ net_highlight_schematic
@ add_graphical_polygon
@ add_line2bus
@ add_line_label
@ pin_show_etype
@ edit_comp_value
@ edit_comp_footprint
@ add_rectangle
@ add_class_flag
@ icon_pcbnew_24
@ add_hierarchical_label
@ edit_comp_ref
@ autoplace_fields
@ change_entry_orient
@ library_archive_as
@ add_graphical_segments
@ sim_add_plot
@ INVALID_BITMAP
@ part_properties
@ add_component
@ add_keepout_area
@ import_hierarchical_label
@ directory_open
@ align_elements_to_grid
@ add_junction
@ options_schematic
@ bus_definition_tool
@ sim_add_signal
@ add_hierar_pin
@ new_component
@ icon_cvpcb_24
@ select_same_sheet
@ library_archive
@ import_footprint_names
@ import_vector
@ edit_cmp_symb_links
static TOOL_ACTION importFPAssignments
Definition: ee_actions.h:176
static TOOL_ACTION deleteSymbol
Definition: ee_actions.h:207
static TOOL_ACTION mirrorV
Definition: ee_actions.h:126
static TOOL_ACTION simAnalysisProperties
Definition: ee_actions.h:284
static TOOL_ACTION repairSchematic
Definition: ee_actions.h:258
static TOOL_ACTION remapSymbols
Definition: ee_actions.h:170
static TOOL_ACTION unsetDNP
Definition: ee_actions.h:196
static TOOL_ACTION runERC
Definition: ee_actions.h:151
static TOOL_ACTION alignToGrid
Definition: ee_actions.h:120
static TOOL_ACTION selectionActivate
Activation of the selection tool.
Definition: ee_actions.h:46
static TOOL_ACTION toggleAnnotateAuto
Definition: ee_actions.h:267
static TOOL_ACTION properties
Definition: ee_actions.h:129
static TOOL_ACTION toggleExcludeFromSimulation
Definition: ee_actions.h:191
static TOOL_ACTION unsetExcludeFromSimulation
Definition: ee_actions.h:190
static TOOL_ACTION cutSymbol
Definition: ee_actions.h:208
static TOOL_ACTION lineMode90
Definition: ee_actions.h:262
static TOOL_ACTION toggleHiddenPins
Definition: ee_actions.h:233
static TOOL_ACTION highlightNet
Definition: ee_actions.h:291
static TOOL_ACTION setExcludeFromBoard
Definition: ee_actions.h:192
static TOOL_ACTION addItemsToSel
Selects a list of items (specified as the event parameter)
Definition: ee_actions.h:63
static TOOL_ACTION move
Definition: ee_actions.h:121
static TOOL_ACTION editUserDefinedSignals
Definition: ee_actions.h:287
static TOOL_ACTION changeSheet
Definition: ee_actions.h:217
static TOOL_ACTION openWorkbook
Definition: ee_actions.h:271
static TOOL_ACTION clearHighlight
Definition: ee_actions.h:292
static TOOL_ACTION drawTable
Definition: ee_actions.h:99
static TOOL_ACTION stopSimulation
Definition: ee_actions.h:286
static TOOL_ACTION syncAllSheetsPins
Definition: ee_actions.h:96
static TOOL_ACTION selectConnection
If current selection is a wire or bus, expand to entire connection.
Definition: ee_actions.h:53
static TOOL_ACTION pointEditorRemoveCorner
Definition: ee_actions.h:147
static TOOL_ACTION pinTable
Definition: ee_actions.h:156
static TOOL_ACTION toggleLegend
Definition: ee_actions.h:281
static TOOL_ACTION toGLabel
Definition: ee_actions.h:141
static TOOL_ACTION toggleExcludeFromBoard
Definition: ee_actions.h:194
static TOOL_ACTION navigateForward
Definition: ee_actions.h:221
static TOOL_ACTION setDNP
Definition: ee_actions.h:195
static TOOL_ACTION cleanupSheetPins
Definition: ee_actions.h:229
static TOOL_ACTION slice
Definition: ee_actions.h:145
static TOOL_ACTION assignNetclass
Definition: ee_actions.h:162
static TOOL_ACTION placeSymbol
Definition: ee_actions.h:79
static TOOL_ACTION clearSelection
Clears the current selection.
Definition: ee_actions.h:56
static TOOL_ACTION drag
Definition: ee_actions.h:122
static TOOL_ACTION navigateBack
Definition: ee_actions.h:222
static TOOL_ACTION placeSymbolAnchor
Definition: ee_actions.h:117
static TOOL_ACTION saveWorkbook
Definition: ee_actions.h:272
static TOOL_ACTION saveWorkbookAs
Definition: ee_actions.h:273
static TOOL_ACTION selectionMenu
Runs a selection menu to select from a list of items.
Definition: ee_actions.h:67
static TOOL_ACTION showHiddenFields
Definition: ee_actions.h:236
static TOOL_ACTION toText
Definition: ee_actions.h:142
static TOOL_ACTION exportPlotAsCSV
Definition: ee_actions.h:275
static TOOL_ACTION drawSymbolPolygon
Definition: ee_actions.h:116
static TOOL_ACTION showPythonConsole
Definition: ee_actions.h:257
static TOOL_ACTION generateBOMExternal
Definition: ee_actions.h:180
static TOOL_ACTION toggleERCWarnings
Definition: ee_actions.h:238
static TOOL_ACTION simTune
Definition: ee_actions.h:280
static TOOL_ACTION duplicateSymbol
Definition: ee_actions.h:205
static TOOL_ACTION drawRuleArea
Definition: ee_actions.h:107
static TOOL_ACTION toggleERCExclusions
Definition: ee_actions.h:240
static TOOL_ACTION placeClassLabel
Definition: ee_actions.h:88
static TOOL_ACTION drawWire
Definition: ee_actions.h:81
static TOOL_ACTION showDeMorganAlternate
Definition: ee_actions.h:136
static TOOL_ACTION toggleExcludeFromBOM
Definition: ee_actions.h:188
static TOOL_ACTION newSymbol
Definition: ee_actions.h:202
static TOOL_ACTION lineModeNext
Definition: ee_actions.h:264
static TOOL_ACTION autoplaceFields
Definition: ee_actions.h:133
static TOOL_ACTION closeOutline
Definition: ee_actions.h:109
static TOOL_ACTION pushPinNameSize
Definition: ee_actions.h:248
static TOOL_ACTION drawCircle
Definition: ee_actions.h:101
static TOOL_ACTION showDeMorganStandard
Definition: ee_actions.h:135
static TOOL_ACTION removeItemsFromSel
Definition: ee_actions.h:64
static TOOL_ACTION pushPinNumSize
Definition: ee_actions.h:249
static TOOL_ACTION rotateCCW
Definition: ee_actions.h:125
static TOOL_ACTION lineModeFree
Definition: ee_actions.h:261
static TOOL_ACTION editLibSymbolWithLibEdit
Definition: ee_actions.h:174
static TOOL_ACTION editSymbol
Definition: ee_actions.h:204
static TOOL_ACTION drawBus
Definition: ee_actions.h:82
static TOOL_ACTION editValue
Definition: ee_actions.h:131
static TOOL_ACTION saveLibraryAs
Definition: ee_actions.h:200
static TOOL_ACTION toggleDarkModePlots
Definition: ee_actions.h:283
static TOOL_ACTION generateBOMLegacy
Definition: ee_actions.h:179
static TOOL_ACTION placeSymbolText
Definition: ee_actions.h:113
static TOOL_ACTION selectNode
Select the junction, wire or bus segment under the cursor.
Definition: ee_actions.h:49
static TOOL_ACTION toggleERCErrors
Definition: ee_actions.h:239
static TOOL_ACTION toLabel
Definition: ee_actions.h:138
static TOOL_ACTION pointEditorAddCorner
Definition: ee_actions.h:146
static TOOL_ACTION exportPlotAsPNG
Definition: ee_actions.h:274
static TOOL_ACTION placePower
Definition: ee_actions.h:80
static TOOL_ACTION addSymbolToSchematic
Definition: ee_actions.h:181
static TOOL_ACTION deleteLastPoint
Definition: ee_actions.h:108
static TOOL_ACTION toTextBox
Definition: ee_actions.h:143
static TOOL_ACTION showPinNumbers
Definition: ee_actions.h:251
static TOOL_ACTION breakWire
Definition: ee_actions.h:144
static TOOL_ACTION placeSheetPin
Definition: ee_actions.h:92
static TOOL_ACTION drawLines
Definition: ee_actions.h:103
static TOOL_ACTION toggleOPCurrents
Definition: ee_actions.h:243
static TOOL_ACTION restartMove
Definition: ee_actions.h:245
static TOOL_ACTION mirrorH
Definition: ee_actions.h:127
static TOOL_ACTION showSimulator
Definition: ee_actions.h:278
static TOOL_ACTION showNetlist
Definition: ee_actions.h:288
static TOOL_ACTION highlightNetTool
Definition: ee_actions.h:294
static TOOL_ACTION updateNetHighlighting
Definition: ee_actions.h:293
static TOOL_ACTION syncSheetPins
Definition: ee_actions.h:94
static TOOL_ACTION rotateCW
Definition: ee_actions.h:124
static TOOL_ACTION exportNetlist
Definition: ee_actions.h:177
static TOOL_ACTION assignFootprints
Definition: ee_actions.h:161
static TOOL_ACTION unsetExcludeFromBOM
Definition: ee_actions.h:187
static TOOL_ACTION selectOnPCB
Definition: ee_actions.h:246
static TOOL_ACTION diffSymbol
Definition: ee_actions.h:166
static TOOL_ACTION rescueSymbols
Definition: ee_actions.h:169
static TOOL_ACTION pushPinLength
Definition: ee_actions.h:247
static TOOL_ACTION importGraphics
Definition: ee_actions.h:254
static TOOL_ACTION leaveSheet
Definition: ee_actions.h:219
static TOOL_ACTION toggleHiddenFields
Definition: ee_actions.h:234
static TOOL_ACTION editWithLibEdit
Definition: ee_actions.h:173
static TOOL_ACTION simProbe
Definition: ee_actions.h:279
static TOOL_ACTION placeGlobalLabel
Definition: ee_actions.h:89
static TOOL_ACTION removeItemFromSel
Definition: ee_actions.h:60
static TOOL_ACTION exportSymbolAsSVG
Definition: ee_actions.h:256
static TOOL_ACTION importSymbol
Definition: ee_actions.h:211
static TOOL_ACTION toggleDottedSecondary
Definition: ee_actions.h:282
static TOOL_ACTION ddAppendFile
Definition: ee_actions.h:298
static TOOL_ACTION exportSymbolsToLibrary
Definition: ee_actions.h:182
static TOOL_ACTION placeHierLabel
Definition: ee_actions.h:90
static TOOL_ACTION drawSheetOnClipboard
Definition: ee_actions.h:253
static TOOL_ACTION addItemToSel
Selects an item (specified as the event parameter).
Definition: ee_actions.h:59
static TOOL_ACTION editSymbolFields
Definition: ee_actions.h:153
static TOOL_ACTION showDatasheet
Inspection and Editing.
Definition: ee_actions.h:150
static TOOL_ACTION saveSymbolCopyAs
Definition: ee_actions.h:201
static TOOL_ACTION drawTextBox
Definition: ee_actions.h:98
static TOOL_ACTION symbolProperties
Definition: ee_actions.h:155
static TOOL_ACTION showNetNavigator
Definition: ee_actions.h:295
static TOOL_ACTION checkSymbol
Definition: ee_actions.h:165
static TOOL_ACTION editPageNumber
Definition: ee_actions.h:164
static TOOL_ACTION drawRectangle
Definition: ee_actions.h:100
static TOOL_ACTION changeSymbol
Definition: ee_actions.h:159
static TOOL_ACTION annotate
Definition: ee_actions.h:152
static TOOL_ACTION undoLastSegment
Definition: ee_actions.h:105
static TOOL_ACTION placeImage
Definition: ee_actions.h:104
static TOOL_ACTION editFootprint
Definition: ee_actions.h:132
static TOOL_ACTION exportPlotToSchematic
Definition: ee_actions.h:277
static TOOL_ACTION enterSheet
Definition: ee_actions.h:218
static TOOL_ACTION setUnitDisplayName
Definition: ee_actions.h:214
static TOOL_ACTION toggleDirectiveLabels
Definition: ee_actions.h:237
static TOOL_ACTION editReference
Definition: ee_actions.h:130
static TOOL_ACTION copySymbol
Definition: ee_actions.h:209
static TOOL_ACTION updateSymbols
Definition: ee_actions.h:158
static TOOL_ACTION syncSelection
Selection synchronization (PCB -> SCH)
Definition: ee_actions.h:70
static TOOL_ACTION showHierarchy
Definition: ee_actions.h:225
static TOOL_ACTION placeSchematicText
Definition: ee_actions.h:97
static TOOL_ACTION setExcludeFromBOM
Definition: ee_actions.h:186
static TOOL_ACTION drawSymbolTextBox
Definition: ee_actions.h:114
static TOOL_ACTION toggleOPVoltages
Definition: ee_actions.h:242
static TOOL_ACTION changeSymbols
Definition: ee_actions.h:157
static TOOL_ACTION setExcludeFromSimulation
Definition: ee_actions.h:189
static TOOL_ACTION unsetExcludeFromBoard
Definition: ee_actions.h:193
static TOOL_ACTION drawSymbolLines
Definition: ee_actions.h:115
static TOOL_ACTION unfoldBus
Definition: ee_actions.h:83
static TOOL_ACTION renameSymbol
Definition: ee_actions.h:206
static TOOL_ACTION drawArc
Definition: ee_actions.h:102
static TOOL_ACTION toggleSyncedPinsMode
Definition: ee_actions.h:244
static TOOL_ACTION toCLabel
Definition: ee_actions.h:139
static TOOL_ACTION lineMode45
Definition: ee_actions.h:263
static TOOL_ACTION drawSheet
Definition: ee_actions.h:91
static TOOL_ACTION runSimulation
Definition: ee_actions.h:285
static TOOL_ACTION markSimExclusions
Definition: ee_actions.h:241
static TOOL_ACTION navigateNext
Definition: ee_actions.h:224
static TOOL_ACTION navigateUp
Definition: ee_actions.h:220
static TOOL_ACTION editSymbolLibraryLinks
Definition: ee_actions.h:154
static TOOL_ACTION placeLabel
Definition: ee_actions.h:87
static TOOL_ACTION repeatDrawItem
Definition: ee_actions.h:123
static TOOL_ACTION switchSegmentPosture
Definition: ee_actions.h:106
static TOOL_ACTION showHiddenPins
Definition: ee_actions.h:235
static TOOL_ACTION toHLabel
Definition: ee_actions.h:140
static TOOL_ACTION saveCurrSheetCopyAs
Definition: ee_actions.h:42
static TOOL_ACTION updateSymbolFields
Definition: ee_actions.h:213
static TOOL_ACTION editTextAndGraphics
Definition: ee_actions.h:230
static TOOL_ACTION showPcbNew
Definition: ee_actions.h:175
static TOOL_ACTION exportSymbolView
Definition: ee_actions.h:255
static TOOL_ACTION placeBusWireEntry
Definition: ee_actions.h:86
static TOOL_ACTION toggleDNP
Definition: ee_actions.h:197
static TOOL_ACTION placeSymbolPin
Definition: ee_actions.h:112
static TOOL_ACTION placeJunction
Definition: ee_actions.h:85
static TOOL_ACTION deriveFromExistingSymbol
Definition: ee_actions.h:203
static TOOL_ACTION generateBOM
Definition: ee_actions.h:178
static TOOL_ACTION swap
Definition: ee_actions.h:128
static TOOL_ACTION navigatePrevious
Definition: ee_actions.h:223
static TOOL_ACTION newAnalysisTab
Definition: ee_actions.h:270
static TOOL_ACTION placeNoConnect
Definition: ee_actions.h:84
static TOOL_ACTION pasteSymbol
Definition: ee_actions.h:210
static TOOL_ACTION toggleDeMorgan
Definition: ee_actions.h:134
static TOOL_ACTION updateSymbol
Definition: ee_actions.h:160
static TOOL_ACTION showBusSyntaxHelp
Definition: ee_actions.h:167
static TOOL_ACTION exportPlotToClipboard
Definition: ee_actions.h:276
static TOOL_ACTION schematicSetup
Definition: ee_actions.h:163
static TOOL_ACTION showElectricalTypes
Definition: ee_actions.h:250
static TOOL_ACTION exportSymbolsToNewLibrary
Definition: ee_actions.h:183
Build up the properties of a TOOL_ACTION in an incremental manner that is static-construction safe.
Definition: tool_action.h:102
Represent a single user action.
Definition: tool_action.h:269
@ ARC
use RECTANGLE instead of RECT to avoid collision in a Windows header
const DRAW_SEGMENT_EVENT_PARAMS drawLinesActionParam
const DRAW_SEGMENT_EVENT_PARAMS drawWireActionParam
const DRAW_SEGMENT_EVENT_PARAMS drawBusActionParam
#define _(s)
Definition: ee_actions.cpp:38
@ LINE_MODE_90
@ LINE_MODE_45
@ LINE_MODE_FREE
@ LAYER_WIRE
Definition: layer_ids.h:357
@ LAYER_NOTES
Definition: layer_ids.h:372
@ LAYER_BUS
Definition: layer_ids.h:358
@ AS_GLOBAL
Global action (toolbar/main menu event, global shortcut)
Definition: tool_action.h:48
@ AS_CONTEXT
Action belongs to a particular tool (i.e. a part of a pop-up menu)
Definition: tool_action.h:46
@ AF_ACTIVATE
Action activates a tool.
Definition: tool_action.h:55
@ AF_NONE
Definition: tool_action.h:54
@ MD_ALT
Definition: tool_event.h:144
@ MD_CTRL
Definition: tool_event.h:143
@ MD_SHIFT
Definition: tool_event.h:142
@ SCH_NO_CONNECT_T
Definition: typeinfo.h:160
@ SCH_DIRECTIVE_LABEL_T
Definition: typeinfo.h:171
@ SCH_LABEL_T
Definition: typeinfo.h:167
@ SCH_SHEET_T
Definition: typeinfo.h:174
@ SCH_HIER_LABEL_T
Definition: typeinfo.h:169
@ SCH_TEXT_T
Definition: typeinfo.h:151
@ SCH_BUS_WIRE_ENTRY_T
Definition: typeinfo.h:161
@ SCH_TEXTBOX_T
Definition: typeinfo.h:152
@ SCH_GLOBAL_LABEL_T
Definition: typeinfo.h:168
@ SCH_JUNCTION_T
Definition: typeinfo.h:159
@ SCH_PIN_T
Definition: typeinfo.h:153