KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
pcb_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) 2013-2023 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 * @author Maciej Suminski <maciej.suminski@cern.ch>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
26#include "pcb_actions.h"
27#include "tool/tool_action.h"
28#include "tool/tool_event.h"
29#include <pcbnew_id.h>
30#include <bitmaps.h>
31#include <layer_ids.h>
34#include <pcb_reference_image.h>
35#include <tool/tool_manager.h>
38#include <router/pns_router.h>
40
41// Actions, being statically-defined, require specialized I18N handling. We continue to
42// use the _() macro so that string harvesting by the I18N framework doesn't have to be
43// specialized, but we don't translate on initialization and instead do it in the getters.
44
45#undef _
46#define _(s) s
47
48// clang-format off
49
50// CONVERT_TOOL
51//
53 .Name( "pcbnew.Convert.convertToPoly" )
54 .Scope( AS_GLOBAL )
55 .FriendlyName( _( "Create Polygon from Selection..." ) )
56 .Tooltip( _( "Creates a graphic polygon from the selection" ) )
58
60 .Name( "pcbnew.Convert.convertToZone" )
61 .Scope( AS_GLOBAL )
62 .FriendlyName( _( "Create Zone from Selection..." ) )
63 .Tooltip( _( "Creates a copper zone from the selection" ) )
64 .Icon( BITMAPS::add_zone ) );
65
67 .Name( "pcbnew.Convert.convertToKeepout" )
68 .Scope( AS_GLOBAL )
69 .FriendlyName( _( "Create Rule Area from Selection..." ) )
70 .Tooltip( _( "Creates a rule area from the selection" ) )
72
74 .Name( "pcbnew.Convert.convertToLines" )
75 .Scope( AS_GLOBAL )
76 .FriendlyName( _( "Create Lines from Selection..." ) )
77 .Tooltip( _( "Creates graphic lines from the selection" ) )
78 .Icon( BITMAPS::add_line ) );
79
81 .Name( "pcbnew.Convert.convertToArc" )
82 .Scope( AS_GLOBAL )
83 .FriendlyName( _( "Create Arc from Selection" ) )
84 .Tooltip( _( "Creates an arc from the selected line segment" ) )
85 .Icon( BITMAPS::add_arc ) );
86
88 .Name( "pcbnew.Convert.convertToTracks" )
89 .Scope( AS_GLOBAL )
90 .FriendlyName( _( "Create Tracks from Selection" ) )
91 .Tooltip( _( "Creates tracks from the selected graphic lines" ) )
92 .Icon( BITMAPS::add_tracks ) );
93
95 .Name( "pcbnew.Convert.outsetItems" )
96 .Scope( AS_GLOBAL )
97 .FriendlyName( _( "Create Outsets from Selection" ) )
98 .Tooltip( _( "Create outset lines from the selected item" ) )
100
101
102// DRAWING_TOOL
103//
105 .Name( "pcbnew.InteractiveDrawing.line" )
106 .Scope( AS_GLOBAL )
107 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'L' )
108 .LegacyHotkeyName( "Draw Line" )
109 .FriendlyName( _( "Draw Lines" ) )
110 .ToolbarState( TOOLBAR_STATE::TOGGLE )
112 .Flags( AF_ACTIVATE ) );
113
115 .Name( "pcbnew.InteractiveDrawing.graphicPolygon" )
116 .Scope( AS_GLOBAL )
117 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'P' )
118 .LegacyHotkeyName( "Draw Graphic Polygon" )
119 .FriendlyName( _( "Draw Polygons" ) )
120 .ToolbarState( TOOLBAR_STATE::TOGGLE )
122 .Flags( AF_ACTIVATE )
123 .Parameter( ZONE_MODE::GRAPHIC_POLYGON ) );
124
126 .Name( "pcbnew.InteractiveDrawing.rectangle" )
127 .Scope( AS_GLOBAL )
128 .FriendlyName( _( "Draw Rectangles" ) )
129 .ToolbarState( TOOLBAR_STATE::TOGGLE )
131 .Flags( AF_ACTIVATE ) );
132
134 .Name( "pcbnew.InteractiveDrawing.circle" )
135 .Scope( AS_GLOBAL )
136 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'C' )
137 .LegacyHotkeyName( "Draw Circle" )
138 .FriendlyName( _( "Draw Circles" ) )
139 .ToolbarState( TOOLBAR_STATE::TOGGLE )
140 .Icon( BITMAPS::add_circle )
141 .Flags( AF_ACTIVATE ) );
142
144 .Name( "pcbnew.InteractiveDrawing.arc" )
145 .Scope( AS_GLOBAL )
146 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'A' )
147 .LegacyHotkeyName( "Draw Arc" )
148 .FriendlyName( _( "Draw Arcs" ) )
149 .ToolbarState( TOOLBAR_STATE::TOGGLE )
150 .Icon( BITMAPS::add_arc )
151 .Flags( AF_ACTIVATE ) );
152
154 .Name( "pcbnew.InteractiveDrawing.bezier" )
155 .Scope( AS_GLOBAL )
156 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'B' )
157 .FriendlyName( _( "Draw Bezier Curve" ) )
158 .ToolbarState( TOOLBAR_STATE::TOGGLE )
159 .Icon( BITMAPS::add_bezier )
160 .Flags( AF_ACTIVATE ) );
161
163 .Name( "pcbnew.InteractiveDrawing.placeCharacteristics" )
164 .Scope( AS_GLOBAL )
165 .LegacyHotkeyName( "Add Board Characteristics" )
166 .FriendlyName( _( "Add Board Characteristics" ) )
167 .Tooltip( _( "Add a board characteristics table on a graphic layer" ) )
168 .ToolbarState( TOOLBAR_STATE::TOGGLE )
169 .Flags( AF_ACTIVATE ) );
170
172 .Name( "pcbnew.InteractiveDrawing.placeStackup" )
173 .Scope( AS_GLOBAL )
174 .LegacyHotkeyName( "Add Stackup Table" )
175 .FriendlyName( _( "Add Stackup Table" ) )
176 .Tooltip( _( "Add a board stackup table on a graphic layer" ) )
177 .ToolbarState( TOOLBAR_STATE::TOGGLE )
178 .Flags( AF_ACTIVATE ) );
179
181 .Name( "pcbnew.InteractiveDrawing.placeReferenceImage" )
182 .Scope( AS_GLOBAL )
183 .FriendlyName( _( "Place Reference Images" ) )
184 .Tooltip( _( "Add bitmap images to be used as reference (images will not be included in any output)" ) )
185 .ToolbarState( TOOLBAR_STATE::TOGGLE )
186 .Icon( BITMAPS::image )
187 .Flags( AF_ACTIVATE )
188 .Parameter<PCB_REFERENCE_IMAGE*>( nullptr ) );
189
191 .Name( "pcbnew.InteractiveDrawing.text" )
192 .Scope( AS_GLOBAL )
193 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'T' )
194 .LegacyHotkeyName( "Add Text" )
195 .FriendlyName( _( "Draw Text" ) )
196 .ToolbarState( TOOLBAR_STATE::TOGGLE )
197 .Icon( BITMAPS::text )
198 .Flags( AF_ACTIVATE ) );
199
201 .Name( "pcbnew.InteractiveDrawing.textbox" )
202 .Scope( AS_GLOBAL )
203 .FriendlyName( _( "Draw Text Boxes" ) )
204 .ToolbarState( TOOLBAR_STATE::TOGGLE )
205 .Icon( BITMAPS::add_textbox )
206 .Flags( AF_ACTIVATE ) );
207
209 .Name( "pcbnew.InteractiveDrawing.drawTable" )
210 .Scope( AS_GLOBAL )
211 .FriendlyName( _( "Draw Tables" ) )
212 .ToolbarState( TOOLBAR_STATE::TOGGLE )
213 .Icon( BITMAPS::table )
214 .Flags( AF_ACTIVATE ) );
215
217 .Name( "pcbnew.lengthTuner.SpacingIncrease" )
218 .Scope( AS_GLOBAL )
219 .DefaultHotkey( '1' )
220 .LegacyHotkeyName( "Increase meander spacing by one step." )
221 .FriendlyName( _( "Increase Spacing" ) )
222 .Tooltip( _( "Increase tuning pattern spacing by one step." ) )
224
226 .Name( "pcbnew.lengthTuner.SpacingDecrease" )
227 .Scope( AS_GLOBAL )
228 .DefaultHotkey( '2' )
229 .LegacyHotkeyName( "Decrease meander spacing by one step." )
230 .FriendlyName( _( "Decrease Spacing" ) )
231 .Tooltip( _( "Decrease tuning pattern spacing by one step." ) )
233
235 .Name( "pcbnew.lengthTuner.AmplIncrease" )
236 .Scope( AS_GLOBAL )
237 .DefaultHotkey( '3' )
238 .LegacyHotkeyName( "Increase meander amplitude by one step." )
239 .FriendlyName( _( "Increase Amplitude" ) )
240 .Tooltip( _( "Increase tuning pattern amplitude by one step." ) )
242
244 .Name( "pcbnew.lengthTuner.AmplDecrease" )
245 .Scope( AS_GLOBAL )
246 .DefaultHotkey( '4' )
247 .LegacyHotkeyName( "Decrease meander amplitude by one step." )
248 .FriendlyName( _( "Decrease Amplitude" ) )
249 .Tooltip( _( "Decrease tuning pattern amplitude by one step." ) )
251
252
254 .Name( "pcbnew.InteractiveDrawing.alignedDimension" )
255 .Scope( AS_GLOBAL )
256 .LegacyHotkeyName( "Add Dimension" )
257 .FriendlyName( _( "Draw Aligned Dimensions" ) )
258 .ToolbarState( TOOLBAR_STATE::TOGGLE )
260 .Flags( AF_ACTIVATE ) );
261
263 .Name( "pcbnew.InteractiveDrawing.centerDimension" )
264 .Scope( AS_GLOBAL )
265 .FriendlyName( _( "Draw Center Dimensions" ) )
266 .ToolbarState( TOOLBAR_STATE::TOGGLE )
268 .Flags( AF_ACTIVATE ) );
269
271 .Name( "pcbnew.InteractiveDrawing.radialDimension" )
272 .Scope( AS_GLOBAL )
273 .FriendlyName( _( "Draw Radial Dimensions" ) )
274 .ToolbarState( TOOLBAR_STATE::TOGGLE )
276 .Flags( AF_ACTIVATE ) );
277
279 .Name( "pcbnew.InteractiveDrawing.orthogonalDimension" )
280 .Scope( AS_GLOBAL )
281 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'H' )
282 .FriendlyName( _( "Draw Orthogonal Dimensions" ) )
283 .ToolbarState( TOOLBAR_STATE::TOGGLE )
285 .Flags( AF_ACTIVATE ) );
286
288 .Name( "pcbnew.InteractiveDrawing.leader" )
289 .Scope( AS_GLOBAL )
290 .FriendlyName( _( "Draw Leaders" ) )
291 .ToolbarState( TOOLBAR_STATE::TOGGLE )
292 .Icon( BITMAPS::add_leader )
293 .Flags( AF_ACTIVATE ) );
294
296 .Name( "pcbnew.InteractiveDrawing.zone" )
297 .Scope( AS_GLOBAL )
298#ifdef __WXOSX_MAC__
299 .DefaultHotkey( MD_ALT + 'Z' )
300#else
301 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'Z' )
302#endif
303 .LegacyHotkeyName( "Add Filled Zone" )
304 .FriendlyName( _( "Draw Filled Zones" ) )
305 .ToolbarState( TOOLBAR_STATE::TOGGLE )
306 .Icon( BITMAPS::add_zone )
307 .Flags( AF_ACTIVATE )
308 .Parameter( ZONE_MODE::ADD ) );
309
311 .Name( "pcbnew.InteractiveDrawing.via" )
312 .Scope( AS_GLOBAL )
313 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'X' )
314 .LegacyHotkeyName( "Add Vias" )
315 .FriendlyName( _( "Place Vias" ) )
316 .Tooltip( _( "Place free-standing vias" ) )
317 .ToolbarState( TOOLBAR_STATE::TOGGLE )
318 .Icon( BITMAPS::add_via )
319 .Flags( AF_ACTIVATE ) );
320
322 .Name( "pcbnew.InteractiveDrawing.ruleArea" )
323 .Scope( AS_GLOBAL )
324 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'K' )
325 .LegacyHotkeyName( "Add Keepout Area" )
326 .FriendlyName( _( "Draw Rule Areas" ) )
327 .ToolbarState( TOOLBAR_STATE::TOGGLE )
329 .Flags( AF_ACTIVATE )
330 .Parameter( ZONE_MODE::ADD ) );
331
333 .Name( "pcbnew.InteractiveDrawing.zoneCutout" )
334 .Scope( AS_GLOBAL )
335 .DefaultHotkey( MD_SHIFT + 'C' )
336 .LegacyHotkeyName( "Add a Zone Cutout" )
337 .FriendlyName( _( "Add a Zone Cutout" ) )
338 .Tooltip( _( "Add a cutout to an existing zone or rule area" ) )
339 .ToolbarState( TOOLBAR_STATE::TOGGLE )
341 .Flags( AF_ACTIVATE )
342 .Parameter( ZONE_MODE::CUTOUT ) );
343
345 .Name( "pcbnew.InteractiveDrawing.similarZone" )
346 .Scope( AS_GLOBAL )
347 .DefaultHotkey( MD_CTRL + MD_SHIFT + '.' )
348 .LegacyHotkeyName( "Add a Similar Zone" )
349 .FriendlyName( _( "Add a Similar Zone" ) )
350 .Tooltip( _( "Add a zone with the same settings as an existing zone" ) )
351 .Icon( BITMAPS::add_zone )
352 .Flags( AF_ACTIVATE )
353 .Parameter( ZONE_MODE::SIMILAR ) );
354
356 .Name( "pcbnew.InteractiveDrawing.placeImportedGraphics" )
357 .Scope( AS_GLOBAL )
358 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'F' )
359 .LegacyHotkeyName( "Place DXF" )
360 .FriendlyName( _( "Import Graphics..." ) )
361 .Tooltip( _( "Import 2D drawing file" ) )
363 .Flags( AF_ACTIVATE ) );
364
366 .Name( "pcbnew.InteractiveDrawing.setAnchor" )
367 .Scope( AS_GLOBAL )
368 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'N' )
369 .LegacyHotkeyName( "Place the Footprint Anchor" )
370 .FriendlyName( _( "Place the Footprint Anchor" ) )
371 .Tooltip( _( "Set the anchor point of the footprint" ) )
372 .ToolbarState( TOOLBAR_STATE::TOGGLE )
373 .Icon( BITMAPS::anchor )
374 .Flags( AF_ACTIVATE ) );
375
377 .Name( "pcbnew.InteractiveDrawing.incWidth" )
378 .Scope( AS_CONTEXT )
379 .DefaultHotkey( MD_CTRL + '+' )
380 .LegacyHotkeyName( "Increase Line Width" )
381 .FriendlyName( _( "Increase Line Width" ) ) );
382
384 .Name( "pcbnew.InteractiveDrawing.decWidth" )
385 .Scope( AS_CONTEXT )
386 .DefaultHotkey( MD_CTRL + '-' )
387 .LegacyHotkeyName( "Decrease Line Width" )
388 .FriendlyName( _( "Decrease Line Width" ) ) );
389
391 .Name( "pcbnew.InteractiveDrawing.arcPosture" )
392 .Scope( AS_CONTEXT )
393 .DefaultHotkey( '/' )
394 .LegacyHotkeyName( "Switch Track Posture" )
395 .FriendlyName( _( "Switch Arc Posture" ) ) );
396
398 .Name( "pcbnew.InteractiveDrawing.changeDimensionArrows" )
399 .Scope( AS_CONTEXT )
400 .FriendlyName( "Switch Dimension Arrows" )
401 .Tooltip( "Switch between inward and outward dimension arrows" ) );
402
403
405 .Name( "common.Control.magneticSnapActiveLayer" )
406 .Scope( AS_GLOBAL )
407 .FriendlyName( _( "Snap to Objects on the Active Layer Only" ) )
408 .Tooltip( _( "Enables snapping to objects on the active layer only" ) ) );
409
411 .Name( "common.Control.magneticSnapAllLayers" )
412 .Scope( AS_GLOBAL )
413 .FriendlyName( _( "Snap to Objects on All Layers" ) )
414 .Tooltip( _( "Enables snapping to objects on all visible layers" ) ) );
415
417 .Name( "common.Control.magneticSnapToggle" )
418 .Scope( AS_GLOBAL )
419 .DefaultHotkey( MD_SHIFT + 'S' )
420 .FriendlyName( _( "Toggle Snapping Between Active and All Layers" ) )
421 .Tooltip( _( "Toggles between snapping on all visible layers and only the active area" ) ) );
422
424 .Name( "pcbnew.InteractiveDrawing.deleteLastPoint" )
425 .Scope( AS_CONTEXT )
426 .DefaultHotkey( WXK_BACK )
427 .FriendlyName( _( "Delete Last Point" ) )
428 .Tooltip( _( "Delete the last point added to the current item" ) )
429 .Icon( BITMAPS::undo ) );
430
432 .Name( "pcbnew.InteractiveDrawing.closeOutline" )
433 .Scope( AS_CONTEXT )
434 .FriendlyName( _( "Close Outline" ) )
435 .Tooltip( _( "Close the in progress outline" ) )
436 .Icon( BITMAPS::checked_ok ) );
437
438// DRC
439//
441 .Name( "pcbnew.DRCTool.runDRC" )
442 .Scope( AS_GLOBAL )
443 .FriendlyName( _( "Design Rules Checker" ) )
444 .Tooltip( _( "Show the design rules checker window" ) )
445 .Icon( BITMAPS::erc ) );
446
447// PCB_DESIGN_BLOCK_CONTROL
449 .Name( "pcbnew.InteractiveDrawing.placeDesignBlock" )
450 .Scope( AS_GLOBAL )
451 .DefaultHotkey( MD_SHIFT + 'B' )
452 .FriendlyName( _( "Place Design Block" ) )
453 .Tooltip( _( "Add selected design block to current board" ) )
455 .Flags( AF_ACTIVATE )
456 .Parameter<DESIGN_BLOCK*>( nullptr ) );
457
459 .Name( "pcbnew.PcbDesignBlockControl.showDesignBlockPanel" )
460 .Scope( AS_GLOBAL )
461 .FriendlyName( _( "Design Blocks" ) )
462 .Tooltip( _( "Show/hide design blocks library" ) )
463 .Icon( BITMAPS::search_tree ) );
464
466 .Name( "pcbnew.PcbDesignBlockControl.saveBoardAsDesignBlock" )
467 .Scope( AS_GLOBAL )
468 .FriendlyName( _( "Save Current Board as Design Block..." ) )
469 .Tooltip( _( "Create a new design block from the current board" ) )
470 .Icon( BITMAPS::new_component ) );
471
473 .Name( "pcbnew.PcbDesignBlockControl.saveSelectionAsDesignBlock" )
474 .Scope( AS_GLOBAL )
475 .FriendlyName( _( "Save Selection as Design Block..." ) )
476 .Tooltip( _( "Create a new design block from the current selection" ) )
477 .Icon( BITMAPS::new_component ) );
478
480 .Name( "pcbnew.PcbDesignBlockControl.saveBoardToDesignBlock" )
481 .Scope( AS_GLOBAL )
482 .FriendlyName( _( "Save Current Board to Design Block..." ) )
483 .Tooltip( _( "Add current board to design block" ) )
484 .Icon( BITMAPS::save ) );
485
487 .Name( "pcbnew.PcbDesignBlockControl.saveSelectionToDesignBlock" )
488 .Scope( AS_GLOBAL )
489 .FriendlyName( _( "Save Selection to Design Block..." ) )
490 .Tooltip( _( "Add current selection to design block" ) )
491 .Icon( BITMAPS::save ) );
492
494 .Name( "pcbnew.PcbDesignBlockControl.saveDeleteDesignBlock" )
495 .Scope( AS_GLOBAL )
496 .FriendlyName( _( "Delete Design Block" ) )
497 .Tooltip( _( "Remove the selected design block from its library" ) )
498 .Icon( BITMAPS::trash ) );
499
501 .Name( "pcbnew.PcbDesignBlockControl.editDesignBlockProperties" )
502 .Scope( AS_GLOBAL )
503 .FriendlyName( _( "Properties..." ) )
504 .Tooltip( _( "Edit properies of design block" ) )
505 .Icon( BITMAPS::edit ) );
506
507// EDIT_TOOL
508//
510 .Name( "pcbnew.EditorControl.EditFpInFpEditor" )
511 .Scope( AS_GLOBAL )
512 .DefaultHotkey( MD_CTRL + 'E' )
513 .LegacyHotkeyName( "Edit with Footprint Editor" )
514 .FriendlyName( _( "Open in Footprint Editor" ) )
515 .Icon( BITMAPS::module_editor ) );
516
518 .Name( "pcbnew.EditorControl.EditLibFpInFpEditor" )
519 .Scope( AS_GLOBAL )
520 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'E' )
521 .FriendlyName( _( "Edit Library Footprint..." ) )
522 .Icon( BITMAPS::module_editor ) );
523
525 .Name( "pcbnew.InteractiveEdit.FindMove" )
526 .Scope( AS_GLOBAL )
527 .DefaultHotkey( 'T' )
528 .LegacyHotkeyName( "Get and Move Footprint" )
529 .FriendlyName( _( "Get and Move Footprint" ) )
530 .Tooltip( _( "Selects a footprint by reference designator and places it under the cursor for moving" ) )
531 .Icon( BITMAPS::move )
532 .Flags( AF_ACTIVATE ) );
533
535 .Name( "pcbnew.InteractiveMove.move" )
536 .Scope( AS_GLOBAL )
537 .DefaultHotkey( 'M' )
538 .LegacyHotkeyName( "Move Item" )
539 .FriendlyName( _( "Move" ) )
540 .Icon( BITMAPS::move )
541 .Flags( AF_ACTIVATE )
543
545 .Name( "pcbnew.InteractiveMove.moveIndividually" )
546 .Scope( AS_GLOBAL )
547 .DefaultHotkey( MD_CTRL + 'M' )
548 .FriendlyName( _( "Move Individually" ) )
549 .Tooltip( _( "Moves the selected items one-by-one" ) )
550 .Icon( BITMAPS::move )
551 .Flags( AF_ACTIVATE )
553
555 .Name( "pcbnew.InteractiveMove.moveWithReference" )
556 .Scope( AS_GLOBAL )
557 .FriendlyName( _( "Move with Reference" ) )
558 .Tooltip( _( "Moves the selected item(s) with a specified starting point" ) )
559 .Icon( BITMAPS::move )
560 .Flags( AF_ACTIVATE )
562
564 .Name( "pcbnew.InteractiveMove.copyWithReference" )
565 .Scope( AS_GLOBAL )
566 .FriendlyName( _( "Copy with Reference" ) )
567 .Tooltip( _( "Copy selected item(s) to clipboard with a specified starting point" ) )
568 .Icon( BITMAPS::copy )
569 .Flags( AF_ACTIVATE ) );
570
572 .Name( "pcbnew.InteractiveEdit.duplicateIncrementPads" )
573 .Scope( AS_GLOBAL )
574 .DefaultHotkey( MD_CTRL + MD_SHIFT + 'D' )
575 .LegacyHotkeyName( "Duplicate Item and Increment" )
576 .FriendlyName( _( "Duplicate and Increment" ) )
577 .Tooltip( _( "Duplicates the selected item(s), incrementing pad numbers" ) )
578 .Icon( BITMAPS::duplicate ) );
579
581 .Name( "pcbnew.InteractiveEdit.moveExact" )
582 .Scope( AS_GLOBAL )
583 .DefaultHotkey( MD_SHIFT + 'M' )
584 .LegacyHotkeyName( "Move Item Exactly" )
585 .FriendlyName( _( "Move Exactly..." ) )
586 .Tooltip( _( "Moves the selected item(s) by an exact amount" ) )
587 .Icon( BITMAPS::move_exactly ) );
588
590 .Name( "pcbnew.InteractiveEdit.moveCorner" )
591 .Scope( AS_GLOBAL )
592 .FriendlyName( _( "Move Corner To..." ) )
593 .Tooltip( _( "Move the active corner to an exact location" ) )
594 .Icon( BITMAPS::move_exactly ) );
595
597 .Name( "pcbnew.InteractiveEdit.moveMidpoint" )
598 .Scope( AS_GLOBAL )
599 .FriendlyName( _( "Move Midpoint To..." ) )
600 .Tooltip( _( "Move the active midpoint to an exact location" ) )
601 .Icon( BITMAPS::move_exactly ) );
602
604 .Name( "pcbnew.InteractiveEdit.rotateCw" )
605 .Scope( AS_GLOBAL )
606 .DefaultHotkey( MD_SHIFT + 'R' )
607 // Don't be tempted to remove "Modern Toolset only". It's in the legacy property name.
608 .LegacyHotkeyName( "Rotate Item Clockwise (Modern Toolset only)" )
609 .FriendlyName( _( "Rotate Clockwise" ) )
610 .Icon( BITMAPS::rotate_cw )
611 .Flags( AF_NONE )
612 .Parameter( -1 ) );
613
615 .Name( "pcbnew.InteractiveEdit.rotateCcw" )
616 .Scope( AS_GLOBAL )
617 .DefaultHotkey( 'R' )
618 .LegacyHotkeyName( "Rotate Item" )
619 .FriendlyName( _( "Rotate Counterclockwise" ) )
620 .Icon( BITMAPS::rotate_ccw )
621 .Flags( AF_NONE )
622 .Parameter( 1 ) );
623
625 .Name( "pcbnew.InteractiveEdit.flip" )
626 .Scope( AS_GLOBAL )
627 .DefaultHotkey( 'F' )
628 .LegacyHotkeyName( "Flip Item" )
629 .FriendlyName( _( "Change Side / Flip" ) )
630 .Tooltip( _( "Flips selected item(s) to opposite side of board" ) )
631 .Icon( BITMAPS::swap_layer ) );
632
634 .Name( "pcbnew.InteractiveEdit.mirrorHoriontally" )
635 .Scope( AS_GLOBAL )
636 .FriendlyName( _( "Mirror Horizontally" ) )
637 .Tooltip( _( "Mirrors selected item(s) across the Y axis" ) )
638 .Icon( BITMAPS::mirror_h ) );
639
641 .Name( "pcbnew.InteractiveEdit.mirrorVertically" )
642 .Scope( AS_GLOBAL )
643 .FriendlyName( _( "Mirror Vertically" ) )
644 .Tooltip( _( "Mirrors selected item(s) across the X axis" ) )
645 .Icon( BITMAPS::mirror_v ) );
646
648 .Name( "pcbnew.InteractiveEdit.swap" )
649 .Scope( AS_GLOBAL )
650 .DefaultHotkey( MD_ALT + 'S' )
651 .FriendlyName( _( "Swap" ) )
652 .Tooltip( _( "Swap positions of selected items" ) )
653 .Icon( BITMAPS::swap ) );
654
656 .Name( "pcbnew.InteractiveEdit.packAndMoveFootprints" )
657 .Scope( AS_GLOBAL )
658 .DefaultHotkey( 'P' )
659 .FriendlyName( _( "Pack and Move Footprints" ) )
660 .Tooltip( _( "Sorts selected footprints by reference, packs based on size and initiates movement" ) )
661 .Icon( BITMAPS::pack_footprints ) );
662
664 .Name( "pcbnew.InteractiveEdit.skip" )
665 .Scope( AS_CONTEXT )
666 .DefaultHotkey( WXK_TAB )
667 .FriendlyName( _( "Skip" ) )
668 .Tooltip( _( "Skip to next item" ) )
669 .Icon( BITMAPS::right ) );
670
672 .Name( "pcbnew.InteractiveEdit.changeTrackWidth" )
673 .Scope( AS_GLOBAL )
674 .FriendlyName( _( "Change Track Width" ) )
675 .Tooltip( _( "Updates selected track & via sizes" ) ) );
676
678 .Name( "pcbnew.InteractiveEdit.filletTracks" )
679 .Scope( AS_GLOBAL )
680 .FriendlyName( _( "Fillet Tracks" ) )
681 .Tooltip( _( "Adds arcs tangent to the selected straight track segments" ) ) );
682
684 .Name( "pcbnew.InteractiveEdit.filletLines" )
685 .Scope( AS_GLOBAL )
686 .FriendlyName( _( "Fillet Lines..." ) )
687 .Tooltip( _( "Adds arcs tangent to the selected lines" ) )
688 .Icon( BITMAPS::fillet ) );
689
691 .Name( "pcbnew.InteractiveEdit.chamferLines" )
692 .Scope( AS_GLOBAL )
693 .FriendlyName( _( "Chamfer Lines..." ) )
694 .Tooltip( _( "Cut away corners between selected lines" ) )
695 .Icon( BITMAPS::chamfer ) );
696
698 .Name( "pcbnew.InteractiveEdit.dogboneCorners" )
699 .Scope( AS_GLOBAL )
700 .FriendlyName( _( "Dogbone Corners..." ) )
701 .Tooltip( _( "Add dogbone corners to selected lines" ) ) );
702
704 .Name( "pcbnew.InteractiveEdit.simplifyPolygons" )
705 .Scope( AS_GLOBAL )
706 .FriendlyName( _( "Simplify Polygons" ) )
707 .Tooltip( _( "Simplify polygon outlines, removing superfluous points" ) ) );
708
710 .Name( "pcbnew.InteractiveEdit.healShapes" )
711 .Scope( AS_GLOBAL )
712 .FriendlyName( _( "Heal Shapes" ) )
713 .Tooltip( _( "Connect shapes, possibly extending or cutting them, or adding extra geometry" ) )
714 .Icon( BITMAPS::heal_shapes ) );
715
717 .Name( "pcbnew.InteractiveEdit.extendLines" )
718 .Scope( AS_GLOBAL )
719 .FriendlyName( _( "Extend Lines to Meet" ) )
720 .Tooltip( _( "Extend lines to meet each other" ) ) );
721
723 .Name( "pcbnew.InteractiveEdit.mergePolygons" )
724 .Scope( AS_GLOBAL )
725 .FriendlyName( _( "Merge Polygons" ) )
726 .Tooltip( _( "Merge selected polygons into a single polygon" ) )
727 .Icon( BITMAPS::merge_polygons ) );
728
730 .Name( "pcbnew.InteractiveEdit.subtractPolygons" )
731 .Scope( AS_GLOBAL )
732 .FriendlyName( _( "Subtract Polygons" ) )
733 .Tooltip( _( "Subtract selected polygons from the last one selected" ) )
735
737 .Name( "pcbnew.InteractiveEdit.intersectPolygons" )
738 .Scope( AS_GLOBAL )
739 .FriendlyName( _( "Intersect Polygons" ) )
740 .Tooltip( _( "Create the intersection of the selected polygons" ) )
742
744 .Name( "pcbnew.InteractiveEdit.deleteFull" )
745 .Scope( AS_GLOBAL )
746 .DefaultHotkey( MD_SHIFT + static_cast<int>( WXK_DELETE ) )
747 .LegacyHotkeyName( "Delete Full Track" )
748 .FriendlyName( _( "Delete Full Track" ) )
749 .Tooltip( _( "Deletes selected item(s) and copper connections" ) )
751 .Flags( AF_NONE )
752 .Parameter( PCB_ACTIONS::REMOVE_FLAGS::ALT ) );
753
755 .Name( "pcbnew.InteractiveEdit.properties" )
756 .Scope( AS_GLOBAL )
757 .DefaultHotkey( 'E' )
758 .LegacyHotkeyName( "Edit Item" )
759 .FriendlyName( _( "Properties..." ) )
760 .Icon( BITMAPS::edit ) );
761
762// ARRAY
763//
765 .Name( "pcbnew.Array.createArray" )
766 .Scope( AS_GLOBAL )
767 .DefaultHotkey( MD_CTRL + 'T' )
768 .LegacyHotkeyName( "Create Array" )
769 .FriendlyName( _( "Create Array..." ) )
770 .Icon( BITMAPS::array )
771 .Flags( AF_ACTIVATE ) );
772
773// FOOTPRINT_EDITOR_CONTROL
774//
776 .Name( "pcbnew.ModuleEditor.newFootprint" )
777 .Scope( AS_GLOBAL )
778 .DefaultHotkey( MD_CTRL + 'N' )
779 .LegacyHotkeyName( "New" )
780 .FriendlyName( _( "New Footprint" ) )
781 .Tooltip( _( "Create a new, empty footprint" ) )
782 .Icon( BITMAPS::new_footprint ) );
783
785 .Name( "pcbnew.ModuleEditor.createFootprint" )
786 .Scope( AS_GLOBAL )
787 .FriendlyName( _( "Create Footprint..." ) )
788 .Tooltip( _( "Create a new footprint using the Footprint Wizard" ) )
789 .Icon( BITMAPS::module_wizard ) );
790
792 .Name( "pcbnew.ModuleEditor.editFootprint" )
793 .Scope( AS_GLOBAL )
794 .FriendlyName( _( "Edit Footprint" ) )
795 .Tooltip( _( "Show selected footprint on editor canvas" ) )
796 .Icon( BITMAPS::edit ) );
797
799 .Name( "pcbnew.ModuleEditor.duplicateFootprint" )
800 .Scope( AS_GLOBAL )
801 .FriendlyName( _( "Duplicate Footprint" ) )
802 .Icon( BITMAPS::duplicate ) );
803
805 .Name( "pcbnew.ModuleEditor.renameFootprint" )
806 .Scope( AS_GLOBAL )
807 .FriendlyName( _( "Rename Footprint..." ) )
808 .Icon( BITMAPS::edit ) );
809
811 .Name( "pcbnew.ModuleEditor.deleteFootprint" )
812 .Scope( AS_GLOBAL )
813 .FriendlyName( _( "Delete Footprint from Library" ) )
814 .Icon( BITMAPS::trash ) );
815
817 .Name( "pcbnew.ModuleEditor.cutFootprint" )
818 .Scope( AS_GLOBAL )
819 .FriendlyName( _( "Cut Footprint" ) )
820 .Icon( BITMAPS::cut ) );
821
823 .Name( "pcbnew.ModuleEditor.copyFootprint" )
824 .Scope( AS_GLOBAL )
825 .FriendlyName( _( "Copy Footprint" ) )
826 .Icon( BITMAPS::copy ) );
827
829 .Name( "pcbnew.ModuleEditor.pasteFootprint" )
830 .Scope( AS_GLOBAL )
831 .FriendlyName( _( "Paste Footprint" ) )
832 .Icon( BITMAPS::paste ) );
833
835 .Name( "pcbnew.ModuleEditor.importFootprint" )
836 .Scope( AS_GLOBAL )
837 .FriendlyName( _( "Import Footprint..." ) )
838 .Tooltip( _( "Import footprint from file" ) )
839 .Icon( BITMAPS::import_module ) );
840
842 .Name( "pcbnew.ModuleEditor.exportFootprint" )
843 .Scope( AS_GLOBAL )
844 .FriendlyName( _( "Export Current Footprint..." ) )
845 .Tooltip( _( "Export edited footprint to file" ) )
846 .Icon( BITMAPS::export_module ) );
847
849 .Name( "pcbnew.ModuleEditor.footprintProperties" )
850 .Scope( AS_GLOBAL )
851 .FriendlyName( _( "Footprint Properties..." ) )
852 .Icon( BITMAPS::module_options ) );
853
855 .Name( "pcbnew.ModuleEditor.checkFootprint" )
856 .Scope( AS_GLOBAL )
857 .FriendlyName( _( "Footprint Checker" ) )
858 .Tooltip( _( "Show the footprint checker window" ) )
859 .Icon( BITMAPS::erc ) );
860
862 .Name( "pcbnew.ModuleEditor.loadFootprintFromBoard" )
863 .Scope( AS_GLOBAL )
864 .FriendlyName( _( "Load footprint from current PCB" ) )
865 .Tooltip( _( "Load footprint from current board" ) )
867
869 .Name( "pcbnew.ModuleEditor.saveFootprintToBoard" )
870 .Scope( AS_GLOBAL )
871 .FriendlyName( _( "Insert footprint into PCB" ) )
872 .Tooltip( _( "Insert footprint into current board" ) )
874
876 .Name( "pcbnew.Control.previousFootprint" )
877 .Scope( AS_GLOBAL )
878 .FriendlyName( _( "Display previous footprint" ) )
879 .Icon( BITMAPS::lib_previous )
880 .Parameter<FPVIEWER_CONSTANTS>( FPVIEWER_CONSTANTS::PREVIOUS_PART ) );
881
883 .Name( "pcbnew.Control.nextFootprint" )
884 .Scope( AS_GLOBAL )
885 .FriendlyName( _( "Display next footprint" ) )
886 .Icon( BITMAPS::lib_next )
887 .Parameter<FPVIEWER_CONSTANTS>( FPVIEWER_CONSTANTS::NEXT_PART ) );
888
889// GLOBAL_EDIT_TOOL
890//
892 .Name( "pcbnew.GlobalEdit.updateFootprint" )
893 .Scope( AS_GLOBAL )
894 .FriendlyName( _( "Update Footprint..." ) )
895 .Tooltip( _( "Update footprint to include any changes from the library" ) )
896 .Icon( BITMAPS::refresh ) );
897
899 .Name( "pcbnew.GlobalEdit.updateFootprints" )
900 .Scope( AS_GLOBAL )
901 .FriendlyName( _( "Update Footprints from Library..." ) )
902 .Tooltip( _( "Update footprints to include any changes from the library" ) )
903 .Icon( BITMAPS::refresh ) );
904
906 .Name( "pcbnew.GlobalEdit.removeUnusedPads" )
907 .Scope( AS_GLOBAL )
908 .FriendlyName( _( "Remove Unused Pads..." ) )
909 .Tooltip( _( "Remove or restore the unconnected inner layers on through hole pads and vias" ) )
910 .Icon( BITMAPS::pads_remove ) );
911
913 .Name( "pcbnew.GlobalEdit.changeFootprint" )
914 .Scope( AS_GLOBAL )
915 .FriendlyName( _( "Change Footprint..." ) )
916 .Tooltip( _( "Assign a different footprint from the library" ) )
917 .Icon( BITMAPS::exchange ) );
918
920 .Name( "pcbnew.GlobalEdit.changeFootprints" )
921 .Scope( AS_GLOBAL )
922 .FriendlyName( _( "Change Footprints..." ) )
923 .Tooltip( _( "Assign different footprints from the library" ) )
924 .Icon( BITMAPS::exchange ) );
925
927 .Name( "pcbnew.GlobalEdit.swapLayers" )
928 .Scope( AS_GLOBAL )
929 .FriendlyName( _( "Swap Layers..." ) )
930 .Tooltip( _( "Move tracks or drawings from one layer to another" ) )
931 .Icon( BITMAPS::swap_layer ) );
932
934 .Name( "pcbnew.GlobalEdit.editTracksAndVias" )
935 .Scope( AS_GLOBAL )
936 .FriendlyName( _( "Edit Track & Via Properties..." ) )
937 .Tooltip( _( "Edit track and via properties globally across board" ) )
938 .Icon( BITMAPS::width_track_via ) );
939
941 .Name( "pcbnew.GlobalEdit.editTextAndGraphics" )
942 .Scope( AS_GLOBAL )
943 .FriendlyName( _( "Edit Text & Graphics Properties..." ) )
944 .Tooltip( _( "Edit Text and graphics properties globally across board" ) )
945 .Icon( BITMAPS::text ) );
946
948 .Name( "pcbnew.GlobalEdit.editTeardrops" )
949 .Scope( AS_GLOBAL )
950 .FriendlyName( _( "Edit Teardrops..." ) )
951 .Tooltip( _( "Add, remove or edit teardrops globally across board" ) )
952 .Icon( BITMAPS::via ) );
953
955 .Name( "pcbnew.GlobalEdit.globalDeletions" )
956 .Scope( AS_GLOBAL )
957 .FriendlyName( _( "Global Deletions..." ) )
958 .Tooltip( _( "Delete tracks, footprints and graphic items from board" ) )
960
962 .Name( "pcbnew.GlobalEdit.cleanupTracksAndVias" )
963 .Scope( AS_GLOBAL )
964 .FriendlyName( _( "Cleanup Tracks & Vias..." ) )
965 .Tooltip( _( "Cleanup redundant items, shorting items, etc." ) )
967
969 .Name( "pcbnew.GlobalEdit.cleanupGraphics" )
970 .Scope( AS_GLOBAL )
971 .FriendlyName( _( "Cleanup Graphics..." ) )
972 .Tooltip( _( "Cleanup redundant items, etc." ) )
973 .Icon( BITMAPS::cleanup_graphics ) );
974
975// MICROWAVE_TOOL
976//
978 .Name( "pcbnew.MicrowaveTool.createGap" )
979 .Scope( AS_GLOBAL )
980 .FriendlyName( _( "Draw Microwave Gaps" ) )
981 .Tooltip( _( "Create gap of specified length for microwave applications" ) )
982 .Icon( BITMAPS::mw_add_gap )
983 .Flags( AF_ACTIVATE )
984 .Parameter( MICROWAVE_FOOTPRINT_SHAPE::GAP ) );
985
987 .Name( "pcbnew.MicrowaveTool.createStub" )
988 .Scope( AS_GLOBAL )
989 .FriendlyName( _( "Draw Microwave Stubs" ) )
990 .Tooltip( _( "Create stub of specified length for microwave applications" ) )
991 .Icon( BITMAPS::mw_add_stub )
992 .Flags( AF_ACTIVATE )
993 .Parameter( MICROWAVE_FOOTPRINT_SHAPE::STUB ) );
994
996 .Name( "pcbnew.MicrowaveTool.createStubArc" )
997 .Scope( AS_GLOBAL )
998 .FriendlyName( _( "Draw Microwave Arc Stubs" ) )
999 .Tooltip( _( "Create stub (arc) of specified size for microwave applications" ) )
1001 .Flags( AF_ACTIVATE )
1003
1005 .Name( "pcbnew.MicrowaveTool.createFunctionShape" )
1006 .Scope( AS_GLOBAL )
1007 .FriendlyName( _( "Draw Microwave Polygonal Shapes" ) )
1008 .Tooltip( _( "Create a microwave polygonal shape from a list of vertices" ) )
1009 .Icon( BITMAPS::mw_add_shape )
1010 .Flags( AF_ACTIVATE )
1012
1014 .Name( "pcbnew.MicrowaveTool.createLine" )
1015 .Scope( AS_GLOBAL )
1016 .FriendlyName( _( "Draw Microwave Lines" ) )
1017 .Tooltip( _( "Create line of specified length for microwave applications" ) )
1018 .Icon( BITMAPS::mw_add_line )
1019 .Flags( AF_ACTIVATE ) );
1020
1021
1022// PAD_TOOL
1023//
1025 .Name( "pcbnew.PadTool.CopyPadSettings" )
1026 .Scope( AS_GLOBAL )
1027 .FriendlyName( _( "Copy Pad Properties to Default" ) )
1028 .Tooltip( _( "Copy current pad's properties" ) )
1029 .Icon( BITMAPS::copy_pad_settings ) );
1030
1032 .Name( "pcbnew.PadTool.ApplyPadSettings" )
1033 .Scope( AS_GLOBAL )
1034 .FriendlyName( _( "Paste Default Pad Properties to Selected" ) )
1035 .Tooltip( _( "Replace the current pad's properties with those copied earlier" ) )
1036 .Icon( BITMAPS::apply_pad_settings ) );
1037
1039 .Name( "pcbnew.PadTool.PushPadSettings" )
1040 .Scope( AS_GLOBAL )
1041 .FriendlyName( _( "Push Pad Properties to Other Pads..." ) )
1042 .Tooltip( _( "Copy the current pad's properties to other pads" ) )
1043 .Icon( BITMAPS::push_pad_settings ) );
1044
1046 .Name( "pcbnew.PadTool.enumeratePads" )
1047 .Scope( AS_GLOBAL )
1048 .FriendlyName( _( "Renumber Pads..." ) )
1049 .Tooltip( _( "Renumber pads by clicking on them in the desired order" ) )
1050 .Icon( BITMAPS::pad_enumerate )
1051 .Flags( AF_ACTIVATE ) );
1052
1054 .Name( "pcbnew.PadTool.placePad" )
1055 .Scope( AS_GLOBAL )
1056 .FriendlyName( _( "Add Pad" ) )
1057 .Tooltip( _( "Add a pad" ) )
1058 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1059 .Icon( BITMAPS::pad )
1060 .Flags( AF_ACTIVATE ) );
1061
1063 .Name( "pcbnew.PadTool.explodePad" )
1064 .Scope( AS_GLOBAL )
1065 .DefaultHotkey( MD_CTRL + 'E' )
1066 .FriendlyName( _( "Edit Pad as Graphic Shapes" ) )
1067 .Tooltip( _( "Ungroups a custom-shaped pad for editing as individual graphic shapes" ) )
1069
1071 .Name( "pcbnew.PadTool.recombinePad" )
1072 .Scope( AS_GLOBAL )
1073 .DefaultHotkey( MD_CTRL + 'E' )
1074 .FriendlyName( _( "Finish Pad Edit" ) )
1075 .Tooltip( _( "Regroups all touching graphic shapes into the edited pad" ) )
1077
1079 .Name( "pcbnew.PadTool.defaultPadProperties" )
1080 .Scope( AS_GLOBAL )
1081 .FriendlyName( _( "Default Pad Properties..." ) )
1082 .Tooltip( _( "Edit the pad properties used when creating new pads" ) )
1083 .Icon( BITMAPS::options_pad ) );
1084
1085
1086// SCRIPTING TOOL
1087//
1088
1090 .Name( "pcbnew.ScriptingTool.pluginsShowFolder" )
1091 .Scope( AS_GLOBAL )
1092#ifdef __WXMAC__
1093 .FriendlyName( _( "Reveal Plugin Folder in Finder" ) )
1094 .Tooltip( _( "Reveals the plugins folder in a Finder window" ) )
1095#else
1096 .FriendlyName( _( "Open Plugin Directory" ) )
1097 .Tooltip( _( "Opens the directory in the default system file manager" ) )
1098#endif
1099 .Icon( BITMAPS::directory_open ) );
1100
1101// BOARD_EDITOR_CONTROL
1102//
1104 .Name( "pcbnew.EditorControl.boardSetup" )
1105 .Scope( AS_GLOBAL )
1106 .FriendlyName( _( "Board Setup..." ) )
1107 .Tooltip( _( "Edit board setup including layers, design rules and various defaults" ) )
1108 .Icon( BITMAPS::options_board ) );
1109
1111 .Name( "pcbnew.EditorControl.importNetlist" )
1112 .Scope( AS_GLOBAL )
1113 .FriendlyName( _( "Import Netlist..." ) )
1114 .Tooltip( _( "Read netlist and update board connectivity" ) )
1115 .Icon( BITMAPS::netlist ) );
1116
1118 .Name( "pcbnew.EditorControl.importSpecctraSession" )
1119 .Scope( AS_GLOBAL )
1120 .FriendlyName( _( "Import Specctra Session..." ) )
1121 .Tooltip( _( "Import routed Specctra session (*.ses) file" ) )
1122 .Icon( BITMAPS::import ) );
1123
1125 .Name( "pcbnew.EditorControl.exportSpecctraDSN" )
1126 .Scope( AS_GLOBAL )
1127 .FriendlyName( _( "Export Specctra DSN..." ) )
1128 .Tooltip( _( "Export Specctra DSN routing info" ) )
1129 .Icon( BITMAPS::export_dsn ) );
1130
1132 .Name( "pcbnew.EditorControl.generateGerbers" )
1133 .Scope( AS_GLOBAL )
1134 .FriendlyName( _( "Gerbers (.gbr)..." ) )
1135 .Tooltip( _( "Generate Gerbers for fabrication" ) )
1136 .Icon( BITMAPS::post_gerber ) );
1137
1139 .Name( "pcbnew.EditorControl.generateDrillFiles" )
1140 .Scope( AS_GLOBAL )
1141 .FriendlyName( _( "Drill Files (.drl)..." ) )
1142 .Tooltip( _( "Generate Excellon drill file(s)" ) )
1143 .Icon( BITMAPS::post_drill ) );
1144
1146 .Name( "pcbnew.EditorControl.generatePosFile" )
1147 .Scope( AS_GLOBAL )
1148 .FriendlyName( _( "Component Placement (.pos, .gbr)..." ) )
1149 .Tooltip( _( "Generate component placement file(s) for pick and place" ) )
1150 .Icon( BITMAPS::post_compo ) );
1151
1153 .Name( "pcbnew.EditorControl.generateReportFile" )
1154 .Scope( AS_GLOBAL )
1155 .FriendlyName( _( "Footprint Report (.rpt)..." ) )
1156 .Tooltip( _( "Create report of all footprints from current board" ) )
1157 .Icon( BITMAPS::post_rpt ) );
1158
1160 .Name( "pcbnew.EditorControl.generateIPC2581File" )
1161 .Scope( AS_GLOBAL )
1162 .FriendlyName( _( "IPC-2581 File (.xml)..." ) )
1163 .Tooltip( _( "Generate an IPC-2581 file" ) )
1164 .Icon( BITMAPS::post_xml ) );
1165
1167 .Name( "pcbnew.EditorControl.generateODBPPFile" )
1168 .Scope( AS_GLOBAL )
1169 .FriendlyName( _( "ODB++ Output File..." ) )
1170 .Tooltip( _( "Generate ODB++ output files" ) )
1171 .Icon( BITMAPS::post_odb ) );
1172
1174 .Name( "pcbnew.EditorControl.generateD356File" )
1175 .Scope( AS_GLOBAL )
1176 .FriendlyName( _( "IPC-D-356 Netlist File..." ) )
1177 .Tooltip( _( "Generate IPC-D-356 netlist file" ) )
1178 .Icon( BITMAPS::post_d356 ) );
1179
1181 .Name( "pcbnew.EditorControl.generateBOM" )
1182 .Scope( AS_GLOBAL )
1183 .FriendlyName( _( "Bill of Materials..." ) )
1184 .Tooltip( _( "Create bill of materials from board" ) )
1185 .Icon( BITMAPS::post_bom ) );
1186
1187// Track & via size control
1189 .Name( "pcbnew.EditorControl.trackWidthInc" )
1190 .Scope( AS_GLOBAL )
1191 .DefaultHotkey( 'W' )
1192 .LegacyHotkeyName( "Switch Track Width To Next" )
1193 .FriendlyName( _( "Switch Track Width to Next" ) )
1194 .Tooltip( _( "Change track width to next pre-defined size" ) ) );
1195
1197 .Name( "pcbnew.EditorControl.trackWidthDec" )
1198 .Scope( AS_GLOBAL )
1199 .DefaultHotkey( MD_SHIFT + 'W' )
1200 .LegacyHotkeyName( "Switch Track Width To Previous" )
1201 .FriendlyName( _( "Switch Track Width to Previous" ) )
1202 .Tooltip( _( "Change track width to previous pre-defined size" ) ) );
1203
1205 .Name( "pcbnew.EditorControl.viaSizeInc" )
1206 .Scope( AS_GLOBAL )
1207 .DefaultHotkey( '\'' )
1208 .LegacyHotkeyName( "Increase Via Size" )
1209 .FriendlyName( _( "Increase Via Size" ) )
1210 .Tooltip( _( "Change via size to next pre-defined size" ) ) );
1211
1213 .Name( "pcbnew.EditorControl.viaSizeDec" )
1214 .Scope( AS_GLOBAL )
1215 .DefaultHotkey( '\\' )
1216 .LegacyHotkeyName( "Decrease Via Size" )
1217 .FriendlyName( _( "Decrease Via Size" ) )
1218 .Tooltip( _( "Change via size to previous pre-defined size" ) ) );
1219
1221 .Name( "pcbnew.EditorControl.autoTrackWidth" )
1222 .Scope( AS_GLOBAL )
1223 .FriendlyName( _( "Automatically select track width" ) )
1224 .Tooltip( _( "When routing from an existing track use its width instead "
1225 "of the current width setting" ) )
1227 .ToolbarState( TOOLBAR_STATE::TOGGLE ) );
1228
1230 .Name( "pcbnew.EditorControl.trackViaSizeChanged" )
1231 .Scope( AS_GLOBAL )
1232 .Flags( AF_NOTIFY ) );
1233
1235 .Name( "pcbnew.EditorControl.assignNetclass" )
1236 .Scope( AS_GLOBAL )
1237 .FriendlyName( _( "Assign Netclass..." ) )
1238 .Tooltip( _( "Assign a netclass to nets matching a pattern" ) )
1239 .Icon( BITMAPS::netlist ) );
1240
1242 .Name( "pcbnew.EditorControl.zoneMerge" )
1243 .Scope( AS_GLOBAL )
1244 .FriendlyName( _( "Merge Zones" ) ) );
1245
1247 .Name( "pcbnew.EditorControl.zoneDuplicate" )
1248 .Scope( AS_GLOBAL )
1249 .FriendlyName( _( "Duplicate Zone onto Layer..." ) )
1250 .Icon( BITMAPS::zone_duplicate ) );
1251
1253 .Name( "pcbnew.EditorControl.placeFootprint" )
1254 .Scope( AS_GLOBAL )
1255 .DefaultHotkey( 'A' )
1256 .LegacyHotkeyName( "Add Footprint" )
1257 .FriendlyName( _( "Place Footprints" ) )
1258 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1259 .Icon( BITMAPS::module )
1260 .Flags( AF_ACTIVATE )
1261 .Parameter<FOOTPRINT*>( nullptr ) );
1262
1264 .Name( "pcbnew.EditorControl.drillOrigin" )
1265 .Scope( AS_GLOBAL )
1266 .FriendlyName( _( "Drill/Place File Origin" ) )
1267 .Tooltip( _( "Place origin point for drill files and component placement files" ) )
1268 .Icon( BITMAPS::set_origin )
1269 .Flags( AF_ACTIVATE ) );
1270
1272 .Name( "pcbnew.EditorControl.drillResetOrigin" )
1273 .Scope( AS_GLOBAL )
1274 .LegacyHotkeyName( "Reset Drill Origin" )
1275 .FriendlyName( _( "Reset Drill Origin" ) ) );
1276
1278 .Name( "pcbnew.EditorControl.drillSetOrigin" )
1279 .Scope( AS_CONTEXT )
1280 .Parameter( VECTOR2I() ) );
1281
1283 .Name( "pcbnew.EditorControl.toggleLock" )
1284 .Scope( AS_GLOBAL )
1285 .DefaultHotkey( 'L' )
1286 .LegacyHotkeyName( "Lock/Unlock Footprint" )
1287 .FriendlyName( _( "Toggle Lock" ) )
1288 .Tooltip( _( "Lock or unlock selected items" ) )
1289 .Icon( BITMAPS::lock_unlock ) );
1290
1292 .Name( "pcbnew.EditorControl.toggle45" )
1293 .Scope( AS_GLOBAL )
1294 .DefaultHotkey( MD_SHIFT + ' ' )
1295 .FriendlyName( _( "Constrain to H, V, 45" ) )
1296 .Tooltip( _( "Limit actions to horizontal, vertical, or 45 degrees from the starting point" ) )
1297 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1298 .Icon( BITMAPS::hv45mode ) );
1299
1301 .Name( "pcbnew.EditorControl.lock" )
1302 .Scope( AS_GLOBAL )
1303 .FriendlyName( _( "Lock" ) )
1304 .Tooltip( _( "Prevent items from being moved and/or resized on the canvas" ) )
1305 .Icon( BITMAPS::locked ) );
1306
1308 .Name( "pcbnew.EditorControl.unlock" )
1309 .Scope( AS_GLOBAL )
1310 .FriendlyName( _( "Unlock" ) )
1311 .Tooltip( _( "Allow items to be moved and/or resized on the canvas" ) )
1312 .Icon( BITMAPS::unlocked ) );
1313
1315 .Name( "pcbnew.EditorControl.appendBoard" )
1316 .Scope( AS_GLOBAL )
1317 .FriendlyName( _( "Append Board..." ) )
1318 .Tooltip( _( "Open another board and append its contents to this board" ) )
1319 .Icon( BITMAPS::add_board ) );
1320
1322 .Name( "pcbnew.EditorControl.highlightNet" )
1323 .Scope( AS_GLOBAL )
1324 .DefaultHotkey( '`' )
1325 // Don't be tempted to remove "Modern Toolset only". It's in the legacy property name.
1326 .LegacyHotkeyName( "Toggle Highlight of Selected Net (Modern Toolset only)" )
1327 .FriendlyName( _( "Highlight Net" ) )
1328 .Tooltip( _( "Highlight net under cursor" ) )
1329 .Icon( BITMAPS::net_highlight )
1330 .Parameter<int>( 0 ) );
1331
1333 .Name( "pcbnew.EditorControl.toggleLastNetHighlight" )
1334 .Scope( AS_GLOBAL )
1335 .FriendlyName( _( "Toggle Last Net Highlight" ) )
1336 .Tooltip( _( "Toggle between last two highlighted nets" ) )
1337 .Parameter<int>( 0 ) );
1338
1340 .Name( "pcbnew.EditorControl.clearHighlight" )
1341 .Scope( AS_GLOBAL )
1342 .DefaultHotkey( '~' )
1343 .FriendlyName( _( "Clear Net Highlighting" ) ) );
1344
1346 .Name( "pcbnew.EditorControl.toggleNetHighlight" )
1347 .Scope( AS_GLOBAL )
1348 .DefaultHotkey( MD_ALT + '`' )
1349 .FriendlyName( _( "Toggle Net Highlight" ) )
1350 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1351 .Icon( BITMAPS::net_highlight )
1352 .Parameter<int>( 0 ) );
1353
1355 .Name( "pcbnew.EditorControl.highlightNetSelection" )
1356 .Scope( AS_GLOBAL )
1357 .FriendlyName( _( "Highlight Net" ) )
1358 .Tooltip( _( "Highlight all copper items on the selected net(s)" ) )
1359 .Icon( BITMAPS::net_highlight )
1360 .Parameter<int>( 0 ) );
1361
1363 .Name( "pcbnew.EditorControl.highlightItem" )
1364 .Scope( AS_GLOBAL ) );
1365
1367 .Name( "pcbnew.EditorControl.hideNet" )
1368 .Scope( AS_GLOBAL )
1369 .FriendlyName( _( "Hide Net in Ratsnest" ) )
1370 .Tooltip( _( "Hide the selected net in the ratsnest of unconnected net lines/arcs" ) )
1371 .Icon( BITMAPS::hide_ratsnest )
1372 .Parameter<int>( 0 ) ); // Default to hiding selected net
1373
1375 .Name( "pcbnew.EditorControl.showNet" )
1376 .Scope( AS_GLOBAL )
1377 .FriendlyName( _( "Show Net in Ratsnest" ) )
1378 .Tooltip( _( "Show the selected net in the ratsnest of unconnected net lines/arcs" ) )
1379 .Icon( BITMAPS::show_ratsnest )
1380 .Parameter<int>( 0 ) ); // Default to showing selected net
1381
1383 .Name( "pcbnew.EditorControl.showEeschema" )
1384 .Scope( AS_GLOBAL )
1385 .FriendlyName( _( "Switch to Schematic Editor" ) )
1386 .Tooltip( _( "Open schematic in schematic editor" ) )
1387 .Icon( BITMAPS::icon_eeschema_24 ) );
1388
1389
1390// PCB_CONTROL
1391//
1392
1394 .Name( "pcbnew.Control.localRatsnestTool" )
1395 .Scope( AS_GLOBAL )
1396 .FriendlyName( _( "Local Ratsnest" ) )
1397 .Tooltip( _( "Toggle ratsnest display of selected item(s)" ) )
1398 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1399 .Icon( BITMAPS::tool_ratsnest )
1400 .Flags( AF_ACTIVATE ) );
1401
1403 .Name( "pcbnew.Control.hideDynamicRatsnest" )
1404 .Scope( AS_GLOBAL ) );
1405
1407 .Name( "pcbnew.Control.updateLocalRatsnest" )
1408 .Scope( AS_GLOBAL )
1409 .Parameter( VECTOR2I() ) );
1410
1412 .Name( "pcbnew.Control.showPythonConsole" )
1413 .Scope( AS_GLOBAL )
1414 .FriendlyName( _( "Scripting Console" ) )
1415 .Tooltip( _( "Show the Python scripting console" ) )
1416 .Icon( BITMAPS::py_script )
1417 .ToolbarState( TOOLBAR_STATE::TOGGLE) );
1418
1420 .Name( "pcbnew.Control.showLayersManager" )
1421 .Scope( AS_GLOBAL )
1422 .FriendlyName( _( "Appearance" ) )
1423 .Tooltip( _( "Show/hide the appearance manager" ) )
1424 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1425 .Icon( BITMAPS::layers_manager ) );
1426
1428 .Name( "pcbnew.Control.showNetInspector" )
1429 .Scope( AS_GLOBAL )
1430 .FriendlyName( _( "Net Inspector" ) )
1431 .Tooltip( _( "Show/hide the net inspector" ) )
1432 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1433 .Icon( BITMAPS::tools ) );
1434
1435TOOL_ACTION PCB_ACTIONS::zonesManager( "pcbnew.Control.zonesManager",
1436 AS_GLOBAL, 0, "",
1437 _( "Zone Manager..." ),
1438 _( "Show the zone manager dialog" ),
1440
1442 .Name( "pcbnew.Control.flipBoard" )
1443 .Scope( AS_GLOBAL )
1444 .FriendlyName( _( "Flip Board View" ) )
1445 .Tooltip( _( "View board from the opposite side" ) )
1446 .Icon( BITMAPS::flip_board ) );
1447
1448// Display modes
1450 .Name( "pcbnew.Control.showRatsnest" )
1451 .Scope( AS_GLOBAL )
1452 .FriendlyName( _( "Show Ratsnest" ) )
1453 .Tooltip( _( "Show lines/arcs representing missing connections on the board" ) )
1454 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1455 .Icon( BITMAPS::general_ratsnest ) );
1456
1458 .Name( "pcbnew.Control.ratsnestLineMode" )
1459 .Scope( AS_GLOBAL )
1460 .FriendlyName( _( "Curved Ratsnest Lines" ) )
1461 .Tooltip( _( "Show ratsnest with curved lines" ) )
1462 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1463 .Icon( BITMAPS::curved_ratsnest ) );
1464
1466 .Name( "pcbnew.Control.ratsnestModeCycle" )
1467 .Scope( AS_GLOBAL )
1468 .FriendlyName( _( "Ratsnest Mode (3-state)" ) )
1469 .Tooltip( _( "Cycle between showing ratsnests for all layers, just visible layers, and none" ) ) );
1470
1472 .Name( "pcbnew.Control.netColorMode" )
1473 .Scope( AS_GLOBAL )
1474 .FriendlyName( _( "Net Color Mode (3-state)" ) )
1475 .Tooltip( _( "Cycle between using net and netclass colors for all nets, just ratsnests, and none" ) ) );
1476
1478 .Name( "pcbnew.Control.trackDisplayMode" )
1479 .Scope( AS_GLOBAL )
1480 .DefaultHotkey( 'K' )
1481 .LegacyHotkeyName( "Track Display Mode" )
1482 .FriendlyName( _( "Sketch Tracks" ) )
1483 .Tooltip( _( "Show tracks in outline mode" ) )
1484 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1485 .Icon( BITMAPS::showtrack ) );
1486
1488 .Name( "pcbnew.Control.padDisplayMode" )
1489 .Scope( AS_GLOBAL )
1490 .FriendlyName( _( "Sketch Pads" ) )
1491 .Tooltip( _( "Show pads in outline mode" ) )
1492 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1493 .Icon( BITMAPS::pad_sketch ) );
1494
1496 .Name( "pcbnew.Control.viaDisplayMode" )
1497 .Scope( AS_GLOBAL )
1498 .FriendlyName( _( "Sketch Vias" ) )
1499 .Tooltip( _( "Show vias in outline mode" ) )
1500 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1501 .Icon( BITMAPS::via_sketch ) );
1502
1504 .Name( "pcbnew.Control.graphicOutlines" )
1505 .Scope( AS_GLOBAL )
1506 .FriendlyName( _( "Sketch Graphic Items" ) )
1507 .Tooltip( _( "Show graphic items in outline mode" ) )
1508 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1509 .Icon( BITMAPS::show_mod_edge ) );
1510
1512 .Name( "pcbnew.Control.textOutlines" )
1513 .Scope( AS_GLOBAL )
1514 .FriendlyName( _( "Sketch Text Items" ) )
1515 .Tooltip( _( "Show footprint texts in line mode" ) )
1516 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1517 .Icon( BITMAPS::text_sketch ) );
1518
1520 .Name( "pcbnew.Control.showPadNumbers" )
1521 .Scope( AS_GLOBAL )
1522 .FriendlyName( _( "Show Pad Numbers" ) )
1523 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1524 .Icon( BITMAPS::pad_number ) );
1525
1527 .Name( "pcbnew.Control.zoneDisplayEnable" )
1528 .Scope( AS_GLOBAL )
1529 .FriendlyName( _( "Draw Zone Fills" ) )
1530 .Tooltip( _( "Show filled areas of zones" ) )
1531 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1532 .Icon( BITMAPS::show_zone ) );
1533
1535 .Name( "pcbnew.Control.zoneDisplayDisable" )
1536 .Scope( AS_GLOBAL )
1537 .FriendlyName( _( "Draw Zone Outlines" ) )
1538 .Tooltip( _( "Show only zone boundaries" ) )
1539 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1540 .Icon( BITMAPS::show_zone_disable ) );
1541
1543 .Name( "pcbnew.Control.zoneDisplayOutlines" )
1544 .Scope( AS_GLOBAL )
1545 .FriendlyName( _( "Draw Zone Fill Fracture Borders" ) )
1546 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1548
1550 .Name( "pcbnew.Control.zoneDisplayTesselation" )
1551 .Scope( AS_GLOBAL )
1552 .FriendlyName( _( "Draw Zone Fill Triangulation" ) )
1553 .ToolbarState( TOOLBAR_STATE::TOGGLE )
1555
1557 .Name( "pcbnew.Control.zoneDisplayToggle" )
1558 .Scope( AS_GLOBAL )
1559 .FriendlyName( _( "Toggle Zone Display" ) )
1560 .Tooltip( _( "Cycle between showing zone fills and just their outlines" ) )
1561 .Icon( BITMAPS::show_zone ) );
1562
1563
1565 .Name( "pcbnew.Control.fpAutoZoom" )
1566 .Scope( AS_GLOBAL )
1567 .FriendlyName( _( "Automatic zoom" ) )
1568 .Tooltip( _( "Automatic Zoom on footprint change" ) )
1570 .ToolbarState( TOOLBAR_STATE::TOGGLE ) );
1571
1572// Layer control
1573
1574// Translate aLayer to the action that switches to it
1576{
1577 switch( aLayer )
1578 {
1579 case F_Cu: return &PCB_ACTIONS::layerTop;
1580 case In1_Cu: return &PCB_ACTIONS::layerInner1;
1581 case In2_Cu: return &PCB_ACTIONS::layerInner2;
1582 case In3_Cu: return &PCB_ACTIONS::layerInner3;
1583 case In4_Cu: return &PCB_ACTIONS::layerInner4;
1584 case In5_Cu: return &PCB_ACTIONS::layerInner5;
1585 case In6_Cu: return &PCB_ACTIONS::layerInner6;
1586 case In7_Cu: return &PCB_ACTIONS::layerInner7;
1587 case In8_Cu: return &PCB_ACTIONS::layerInner8;
1588 case In9_Cu: return &PCB_ACTIONS::layerInner9;
1589 case In10_Cu: return &PCB_ACTIONS::layerInner10;
1590 case In11_Cu: return &PCB_ACTIONS::layerInner11;
1591 case In12_Cu: return &PCB_ACTIONS::layerInner12;
1592 case In13_Cu: return &PCB_ACTIONS::layerInner13;
1593 case In14_Cu: return &PCB_ACTIONS::layerInner14;
1594 case In15_Cu: return &PCB_ACTIONS::layerInner15;
1595 case In16_Cu: return &PCB_ACTIONS::layerInner16;
1596 case In17_Cu: return &PCB_ACTIONS::layerInner17;
1597 case In18_Cu: return &PCB_ACTIONS::layerInner18;
1598 case In19_Cu: return &PCB_ACTIONS::layerInner19;
1599 case In20_Cu: return &PCB_ACTIONS::layerInner20;
1600 case In21_Cu: return &PCB_ACTIONS::layerInner21;
1601 case In22_Cu: return &PCB_ACTIONS::layerInner22;
1602 case In23_Cu: return &PCB_ACTIONS::layerInner23;
1603 case In24_Cu: return &PCB_ACTIONS::layerInner24;
1604 case In25_Cu: return &PCB_ACTIONS::layerInner25;
1605 case In26_Cu: return &PCB_ACTIONS::layerInner26;
1606 case In27_Cu: return &PCB_ACTIONS::layerInner27;
1607 case In28_Cu: return &PCB_ACTIONS::layerInner28;
1608 case In29_Cu: return &PCB_ACTIONS::layerInner29;
1609 case In30_Cu: return &PCB_ACTIONS::layerInner30;
1610 case B_Cu: return &PCB_ACTIONS::layerBottom;
1611 default: return nullptr;
1612 }
1613}
1614
1615// Implemented as an accessor + static variable to ensure it is initialized when used
1616// in static action constructors
1618{
1619 static TOOL_ACTION_GROUP s_toolActionGroup( "pcbnew.Control.DirectLayerActions" );
1620 return s_toolActionGroup;
1621}
1622
1624 .Name( "pcbnew.Control.layerTop" )
1625 .Scope( AS_GLOBAL )
1627 .DefaultHotkey( WXK_PAGEUP )
1628 .LegacyHotkeyName( "Switch to Component (F.Cu) layer" )
1629 .FriendlyName( _( "Switch to Component (F.Cu) layer" ) )
1630 .Flags( AF_NOTIFY )
1631 .Parameter( F_Cu ) );
1632
1634 .Name( "pcbnew.Control.layerInner1" )
1635 .Scope( AS_GLOBAL )
1637 .LegacyHotkeyName( "Switch to Inner layer 1" )
1638 .FriendlyName( _( "Switch to Inner Layer 1" ) )
1639 .Flags( AF_NOTIFY )
1640 .Parameter( In1_Cu ) );
1641
1643 .Name( "pcbnew.Control.layerInner2" )
1644 .Scope( AS_GLOBAL )
1646 .LegacyHotkeyName( "Switch to Inner layer 2" )
1647 .FriendlyName( _( "Switch to Inner Layer 2" ) )
1648 .Flags( AF_NOTIFY )
1649 .Parameter( In2_Cu ) );
1650
1652 .Name( "pcbnew.Control.layerInner3" )
1653 .Scope( AS_GLOBAL )
1655 .LegacyHotkeyName( "Switch to Inner layer 3" )
1656 .FriendlyName( _( "Switch to Inner Layer 3" ) )
1657 .Flags( AF_NOTIFY )
1658 .Parameter( In3_Cu ) );
1659
1661 .Name( "pcbnew.Control.layerInner4" )
1662 .Scope( AS_GLOBAL )
1664 .LegacyHotkeyName( "Switch to Inner layer 4" )
1665 .FriendlyName( _( "Switch to Inner Layer 4" ) )
1666 .Flags( AF_NOTIFY )
1667 .Parameter( In4_Cu ) );
1668
1670 .Name( "pcbnew.Control.layerInner5" )
1671 .Scope( AS_GLOBAL )
1673 .LegacyHotkeyName( "Switch to Inner layer 5" )
1674 .FriendlyName( _( "Switch to Inner Layer 5" ) )
1675 .Flags( AF_NOTIFY )
1676 .Parameter( In5_Cu ) );
1677
1679 .Name( "pcbnew.Control.layerInner6" )
1680 .Scope( AS_GLOBAL )
1682 .LegacyHotkeyName( "Switch to Inner layer 6" )
1683 .FriendlyName( _( "Switch to Inner Layer 6" ) )
1684 .Flags( AF_NOTIFY )
1685 .Parameter( In6_Cu ) );
1686
1688 .Name( "pcbnew.Control.layerInner7" )
1689 .Scope( AS_GLOBAL )
1691 .FriendlyName( _( "Switch to Inner Layer 7" ) )
1692 .Flags( AF_NOTIFY )
1693 .Parameter( In7_Cu ) );
1694
1696 .Name( "pcbnew.Control.layerInner8" )
1697 .Scope( AS_GLOBAL )
1699 .FriendlyName( _( "Switch to Inner Layer 8" ) )
1700 .Flags( AF_NOTIFY )
1701 .Parameter( In8_Cu ) );
1702
1704 .Name( "pcbnew.Control.layerInner9" )
1705 .Scope( AS_GLOBAL )
1707 .FriendlyName( _( "Switch to Inner Layer 9" ) )
1708 .Flags( AF_NOTIFY )
1709 .Parameter( In9_Cu ) );
1710
1712 .Name( "pcbnew.Control.layerInner10" )
1713 .Scope( AS_GLOBAL )
1715 .FriendlyName( _( "Switch to Inner Layer 10" ) )
1716 .Flags( AF_NOTIFY )
1717 .Parameter( In10_Cu ) );
1718
1720 .Name( "pcbnew.Control.layerInner11" )
1721 .Scope( AS_GLOBAL )
1723 .FriendlyName( _( "Switch to Inner Layer 11" ) )
1724 .Flags( AF_NOTIFY )
1725 .Parameter( In11_Cu ) );
1726
1728 .Name( "pcbnew.Control.layerInner12" )
1729 .Scope( AS_GLOBAL )
1731 .FriendlyName( _( "Switch to Inner Layer 12" ) )
1732 .Flags( AF_NOTIFY )
1733 .Parameter( In12_Cu ) );
1734
1736 .Name( "pcbnew.Control.layerInner13" )
1737 .Scope( AS_GLOBAL )
1739 .FriendlyName( _( "Switch to Inner Layer 13" ) )
1740 .Flags( AF_NOTIFY )
1741 .Parameter( In13_Cu ) );
1742
1744 .Name( "pcbnew.Control.layerInner14" )
1745 .Scope( AS_GLOBAL )
1747 .FriendlyName( _( "Switch to Inner Layer 14" ) )
1748 .Flags( AF_NOTIFY )
1749 .Parameter( In14_Cu ) );
1750
1752 .Name( "pcbnew.Control.layerInner15" )
1753 .Scope( AS_GLOBAL )
1755 .FriendlyName( _( "Switch to Inner Layer 15" ) )
1756 .Flags( AF_NOTIFY )
1757 .Parameter( In15_Cu ) );
1758
1760 .Name( "pcbnew.Control.layerInner16" )
1761 .Scope( AS_GLOBAL )
1763 .FriendlyName( _( "Switch to Inner Layer 16" ) )
1764 .Flags( AF_NOTIFY )
1765 .Parameter( In16_Cu ) );
1766
1768 .Name( "pcbnew.Control.layerInner17" )
1769 .Scope( AS_GLOBAL )
1771 .FriendlyName( _( "Switch to Inner Layer 17" ) )
1772 .Flags( AF_NOTIFY )
1773 .Parameter( In17_Cu ) );
1774
1776 .Name( "pcbnew.Control.layerInner18" )
1777 .Scope( AS_GLOBAL )
1779 .FriendlyName( _( "Switch to Inner Layer 18" ) )
1780 .Flags( AF_NOTIFY )
1781 .Parameter( In18_Cu ) );
1782
1784 .Name( "pcbnew.Control.layerInner19" )
1785 .Scope( AS_GLOBAL )
1787 .FriendlyName( _( "Switch to Inner Layer 19" ) )
1788 .Flags( AF_NOTIFY )
1789 .Parameter( In19_Cu ) );
1790
1792 .Name( "pcbnew.Control.layerInner20" )
1793 .Scope( AS_GLOBAL )
1795 .FriendlyName( _( "Switch to Inner Layer 20" ) )
1796 .Flags( AF_NOTIFY )
1797 .Parameter( In20_Cu ) );
1798
1800 .Name( "pcbnew.Control.layerInner21" )
1801 .Scope( AS_GLOBAL )
1803 .FriendlyName( _( "Switch to Inner Layer 21" ) )
1804 .Flags( AF_NOTIFY )
1805 .Parameter( In21_Cu ) );
1806
1808 .Name( "pcbnew.Control.layerInner22" )
1809 .Scope( AS_GLOBAL )
1811 .FriendlyName( _( "Switch to Inner Layer 22" ) )
1812 .Flags( AF_NOTIFY )
1813 .Parameter( In22_Cu ) );
1814
1816 .Name( "pcbnew.Control.layerInner23" )
1817 .Scope( AS_GLOBAL )
1819 .FriendlyName( _( "Switch to Inner Layer 23" ) )
1820 .Flags( AF_NOTIFY )
1821 .Parameter( In23_Cu ) );
1822
1824 .Name( "pcbnew.Control.layerInner24" )
1825 .Scope( AS_GLOBAL )
1827 .FriendlyName( _( "Switch to Inner Layer 24" ) )
1828 .Flags( AF_NOTIFY )
1829 .Parameter( In24_Cu ) );
1830
1832 .Name( "pcbnew.Control.layerInner25" )
1833 .Scope( AS_GLOBAL )
1835 .FriendlyName( _( "Switch to Inner Layer 25" ) )
1836 .Flags( AF_NOTIFY )
1837 .Parameter( In25_Cu ) );
1838
1840 .Name( "pcbnew.Control.layerInner26" )
1841 .Scope( AS_GLOBAL )
1843 .FriendlyName( _( "Switch to Inner Layer 26" ) )
1844 .Flags( AF_NOTIFY )
1845 .Parameter( In26_Cu ) );
1846
1848 .Name( "pcbnew.Control.layerInner27" )
1849 .Scope( AS_GLOBAL )
1851 .FriendlyName( _( "Switch to Inner Layer 27" ) )
1852 .Flags( AF_NOTIFY )
1853 .Parameter( In27_Cu ) );
1854
1856 .Name( "pcbnew.Control.layerInner28" )
1857 .Scope( AS_GLOBAL )
1859 .FriendlyName( _( "Switch to Inner Layer 28" ) )
1860 .Flags( AF_NOTIFY )
1861 .Parameter( In28_Cu ) );
1862
1864 .Name( "pcbnew.Control.layerInner29" )
1865 .Scope( AS_GLOBAL )
1867 .FriendlyName( _( "Switch to Inner Layer 29" ) )
1868 .Flags( AF_NOTIFY )
1869 .Parameter( In29_Cu ) );
1870
1872 .Name( "pcbnew.Control.layerInner30" )
1873 .Scope( AS_GLOBAL )
1875 .FriendlyName( _( "Switch to Inner Layer 30" ) )
1876 .Flags( AF_NOTIFY )
1877 .Parameter( In30_Cu ) );
1878
1880 .Name( "pcbnew.Control.layerBottom" )
1881 .Scope( AS_GLOBAL )
1883 .DefaultHotkey( WXK_PAGEDOWN )
1884 .LegacyHotkeyName( "Switch to Copper (B.Cu) layer" )
1885 .FriendlyName( _( "Switch to Copper (B.Cu) Layer" ) )
1886 .Flags( AF_NOTIFY )
1887 .Parameter( B_Cu ) );
1888
1890 .Name( "pcbnew.Control.layerNext" )
1891 .Scope( AS_GLOBAL )
1892 .DefaultHotkey( '+' )
1893 .LegacyHotkeyName( "Switch to Next Layer" )
1894 .FriendlyName( _( "Switch to Next Layer" ) )
1895 .Flags( AF_NOTIFY ) );
1896
1898 .Name( "pcbnew.Control.layerPrev" )
1899 .Scope( AS_GLOBAL )
1900 .DefaultHotkey( '-' )
1901 .LegacyHotkeyName( "Switch to Previous Layer" )
1902 .FriendlyName( _( "Switch to Previous Layer" ) )
1903 .Flags( AF_NOTIFY ) );
1904
1906 .Name( "pcbnew.Control.layerToggle" )
1907 .Scope( AS_GLOBAL )
1908 .DefaultHotkey( 'V' )
1909 .LegacyHotkeyName( "Add Through Via" )
1910 .FriendlyName( _( "Toggle Layer" ) )
1911 .Tooltip( _( "Switch between layers in active layer pair" ) )
1912 .Flags( AF_NOTIFY ) );
1913
1915 .Name( "pcbnew.Control.layerAlphaInc" )
1916 .Scope( AS_GLOBAL )
1917 .DefaultHotkey( '}' )
1918 // Don't be tempted to remove "Modern Toolset only". It's in the legacy property name.
1919 .LegacyHotkeyName( "Increment Layer Transparency (Modern Toolset only)" )
1920 .FriendlyName( _( "Increase Layer Opacity" ) )
1921 .Tooltip( _( "Make the current layer less transparent" ) )
1922 .Icon( BITMAPS::contrast_mode ) );
1923
1925 .Name( "pcbnew.Control.layerAlphaDec" )
1926 .Scope( AS_GLOBAL )
1927 .DefaultHotkey( '{' )
1928 // Don't be tempted to remove "Modern Toolset only". It's in the legacy property name.
1929 .LegacyHotkeyName( "Decrement Layer Transparency (Modern Toolset only)" )
1930 .FriendlyName( _( "Decrease Layer Opacity" ) )
1931 .Tooltip( _( "Make the current layer more transparent" ) )
1932 .Icon( BITMAPS::contrast_mode ) );
1933
1935 .Name( "pcbnew.Control.layerPairPresetCycle" )
1936 .Scope( AS_GLOBAL )
1937 .DefaultHotkey( MD_SHIFT + 'V' )
1938 .FriendlyName( _( "Cycle Layer Pair Presets" ) )
1939 .Tooltip( _( "Cycle between preset layer pairs" ) ) );
1940
1942 .Name( "pcbnew.Control.layerChanged" )
1943 .Scope( AS_GLOBAL )
1944 .Flags( AF_NOTIFY ) );
1945
1946//Show board statistics tool
1948 .Name( "pcbnew.InspectionTool.ShowBoardStatistics" )
1949 .Scope( AS_GLOBAL )
1950 .FriendlyName( _( "Show Board Statistics" ) )
1951 .Tooltip( _( "Shows board statistics" ) ) );
1952
1954 .Name( "pcbnew.InspectionTool.InspectClearance" )
1955 .Scope( AS_GLOBAL )
1956 .FriendlyName( _( "Clearance Resolution" ) )
1957 .Tooltip( _( "Show clearance resolution for the active layer between two selected objects" ) )
1958 .Icon( BITMAPS::mw_add_gap ) );
1959
1961 .Name( "pcbnew.InspectionTool.InspectConstraints" )
1962 .Scope( AS_GLOBAL )
1963 .FriendlyName( _( "Constraints Resolution" ) )
1964 .Tooltip( _( "Show constraints resolution for the selected object" ) )
1965 .Icon( BITMAPS::mw_add_gap ) );
1966
1968 .Name( "pcbnew.InspectionTool.DiffFootprint" )
1969 .Scope( AS_GLOBAL )
1970 .FriendlyName( _( "Compare Footprint with Library" ) )
1971 .Tooltip( _( "Show differences between board footprint and its library equivalent" ) )
1972 .Icon( BITMAPS::library ) );
1973
1975 .Name( "pcbnew.InspectionTool.ShowFootprintAssociations" )
1976 .Scope( AS_GLOBAL )
1977 .FriendlyName( _( "Show Footprint Associations" ) )
1978 .Tooltip( _( "Show footprint library and schematic symbol associations" ) )
1980
1981//Geographic re-annotation tool
1983 .Name( "pcbnew.ReannotateTool.ShowReannotateDialog" )
1984 .Scope( AS_GLOBAL )
1985 .FriendlyName( _( "Geographical Reannotate..." ) )
1986 .Tooltip( _( "Reannotate PCB in geographical order" ) )
1987 .Icon( BITMAPS::annotate ) );
1988
1990 .Name( "pcbnew.Control.repairBoard" )
1991 .Scope( AS_GLOBAL )
1992 .FriendlyName( _( "Repair Board" ) )
1993 .Tooltip( _( "Run various diagnostics and attempt to repair board" ) )
1994 .Icon( BITMAPS::rescue )
1995 .Parameter( false ) ); // Don't repair quietly
1996
1998 .Name( "pcbnew.ModuleEditor.repairFootprint" )
1999 .Scope( AS_GLOBAL )
2000 .FriendlyName( _( "Repair Footprint" ) )
2001 .Tooltip( _( "Run various diagnostics and attempt to repair footprint" ) ) );
2002
2003
2004// PLACEMENT_TOOL
2005//
2007 .Name( "pcbnew.AlignAndDistribute.alignTop" )
2008 .Scope( AS_GLOBAL )
2009 .FriendlyName( _( "Align to Top" ) )
2010 .Tooltip( _( "Aligns selected items to the top edge of the item under the cursor" ) )
2011 .Icon( BITMAPS::align_items_top ) );
2012
2014 .Name( "pcbnew.AlignAndDistribute.alignBottom" )
2015 .Scope( AS_GLOBAL )
2016 .FriendlyName( _( "Align to Bottom" ) )
2017 .Tooltip( _( "Aligns selected items to the bottom edge of the item under the cursor" ) )
2018 .Icon( BITMAPS::align_items_bottom ) );
2019
2021 .Name( "pcbnew.AlignAndDistribute.alignLeft" )
2022 .Scope( AS_GLOBAL )
2023 .FriendlyName( _( "Align to Left" ) )
2024 .Tooltip( _( "Aligns selected items to the left edge of the item under the cursor" ) )
2025 .Icon( BITMAPS::align_items_left ) );
2026
2028 .Name( "pcbnew.AlignAndDistribute.alignRight" )
2029 .Scope( AS_GLOBAL )
2030 .FriendlyName( _( "Align to Right" ) )
2031 .Tooltip( _( "Aligns selected items to the right edge of the item under the cursor" ) )
2032 .Icon( BITMAPS::align_items_right ) );
2033
2035 .Name( "pcbnew.AlignAndDistribute.alignCenterY" )
2036 .Scope( AS_GLOBAL )
2037 .FriendlyName( _( "Align to Vertical Center" ) )
2038 .Tooltip( _( "Aligns selected items to the vertical center of the item under the cursor" ) )
2039 .Icon( BITMAPS::align_items_center ) );
2040
2042 .Name( "pcbnew.AlignAndDistribute.alignCenterX" )
2043 .Scope( AS_GLOBAL )
2044 .FriendlyName( _( "Align to Horizontal Center" ) )
2045 .Tooltip( _( "Aligns selected items to the horizontal center of the item under the cursor" ) )
2046 .Icon( BITMAPS::align_items_middle ) );
2047
2049 .Name( "pcbnew.AlignAndDistribute.distributeHorizontallyCenters" )
2050 .Scope( AS_GLOBAL )
2051 .FriendlyName( _( "Distribute Horizontally by Centers" ) )
2052 .Tooltip( _( "Distributes selected items between the left-most item and the right-most item"
2053 "so that the item centers are equally distributed" ) )
2055
2057 .Name( "pcbnew.AlignAndDistribute.distributeHorizontallyGaps" )
2058 .Scope( AS_GLOBAL )
2059 .FriendlyName( _( "Distribute Horizontally with Even Gaps" ) )
2060 .Tooltip( _( "Distributes selected items between the left-most item and the right-most item "
2061 "so that the gaps between items are equal" ) )
2063
2065 .Name( "pcbnew.AlignAndDistribute.distributeVerticallyGaps" )
2066 .Scope( AS_GLOBAL )
2067 .FriendlyName( _( "Distribute Vertically with Even Gaps" ) )
2068 .Tooltip( _( "Distributes selected items between the top-most item and the bottom-most item "
2069 "so that the gaps between items are equal" ) )
2071
2073 .Name( "pcbnew.AlignAndDistribute.distributeVerticallyCenters" )
2074 .Scope( AS_GLOBAL )
2075 .FriendlyName( _( "Distribute Vertically by Centers" ) )
2076 .Tooltip( _( "Distributes selected items between the top-most item and the bottom-most item "
2077 "so that the item centers are equally distributed" ) )
2079
2080// PCB_POINT_EDITOR
2081//
2083 .Name( "pcbnew.PointEditor.addCorner" )
2084 .Scope( AS_GLOBAL )
2085#ifdef __WXMAC__
2086 .DefaultHotkey( WXK_F1 )
2087#else
2088 .DefaultHotkey( WXK_INSERT )
2089#endif
2090 .FriendlyName( _( "Create Corner" ) )
2091 .Tooltip( _( "Create a corner" ) )
2092 .Icon( BITMAPS::add_corner ) );
2093
2095 .Name( "pcbnew.PointEditor.removeCorner" )
2096 .Scope( AS_GLOBAL )
2097 .FriendlyName( _( "Remove Corner" ) )
2098 .Tooltip( _( "Remove corner" ) )
2099 .Icon( BITMAPS::delete_cursor ) );
2100
2102 .Name( "pcbnew.PointEditor.chamferCorner" )
2103 .Scope( AS_GLOBAL )
2104 .FriendlyName( _( "Chamfer Corner" ) )
2105 .Tooltip( _( "Chamfer corner" ) )
2106 .Icon( BITMAPS::chamfer ) );
2107
2109 .Name( "pcbnew.PointEditor.arcKeepCenter" )
2110 .Scope( AS_GLOBAL )
2111 .FriendlyName( _( "Keep Arc Center, Adjust Radius" ) )
2112 .Tooltip( _( "Switch arc editing mode to keep center, adjust radius and endpoints" ) )
2114
2116 .Name( "pcbnew.PointEditor.arcKeepEndpoint" )
2117 .Scope( AS_GLOBAL )
2118 .FriendlyName( _( "Keep Arc Endpoints or Direction of Starting Point" ) )
2119 .Tooltip( _( "Switch arc editing mode to keep endpoints, or to keep direction of the other point" ) )
2121
2122// POSITION_RELATIVE_TOOL
2123//
2125 .Name( "pcbnew.PositionRelative.positionRelative" )
2126 .Scope( AS_GLOBAL )
2127 .DefaultHotkey( MD_SHIFT + 'P' )
2128 .LegacyHotkeyName( "Position Item Relative" )
2129 .FriendlyName( _( "Position Relative To..." ) )
2130 .Tooltip( _( "Positions the selected item(s) by an exact amount relative to another" ) )
2131 .Icon( BITMAPS::move_relative ) );
2132
2134 .Name( "pcbnew.PositionRelative.positionRelativeInteractively" )
2135 .Scope( AS_GLOBAL )
2136 .FriendlyName( _( "Position Interactively..." ) )
2137 .Tooltip( _( "Positions the selected item(s) by an exact amount relative to another, interactively" ) )
2138 .Icon( BITMAPS::move_relative ) );
2139
2140// PCIKER_TOOL
2141//
2143 .Name( "pcbnew.Picker.selectItemInteractively" )
2144 .Scope( AS_GLOBAL )
2145 .Parameter<PCB_PICKER_TOOL::INTERACTIVE_PARAMS>( {} ) );
2146
2148 .Name( "pcbnew.Picker.selectPointInteractively" )
2149 .Scope( AS_GLOBAL )
2150 .Parameter<PCB_PICKER_TOOL::INTERACTIVE_PARAMS>( {} ));
2151
2152
2154 .Name( "pcbnew.InteractiveSelection.SelectConnection" )
2155 .Scope( AS_GLOBAL )
2156 .DefaultHotkey( 'U' )
2157 .LegacyHotkeyName( "Select Single Track" )
2158 .FriendlyName( _( "Select/Expand Connection" ) )
2159 .Tooltip( _( "Selects a connection or expands an existing selection to junctions, pads, or entire connections" ) )
2160 .Icon( BITMAPS::add_tracks ) );
2161
2163 .Name( "pcbnew.InteractiveSelection.unrouteSelected" )
2164 .Scope( AS_GLOBAL )
2165 .FriendlyName( _( "Unroute Selected" ) )
2166 .Tooltip( _( "Unroutes selected items to the nearest pad." ) )
2167 .Icon( BITMAPS::general_deletions ) );
2168
2170 .Name( "pcbnew.InteractiveSelection.SyncSelection" )
2171 .Scope( AS_GLOBAL ) );
2172
2174 .Name( "pcbnew.InteractiveSelection.SyncSelectionWithNets" )
2175 .Scope( AS_GLOBAL ) );
2176
2178 .Name( "pcbnew.InteractiveSelection.SelectNet" )
2179 .Scope( AS_GLOBAL )
2180 .FriendlyName( _( "Select All Tracks in Net" ) )
2181 .Tooltip( _( "Selects all tracks & vias belonging to the same net." ) )
2182 .Parameter<int>( 0 ) );
2183
2185 .Name( "pcbnew.InteractiveSelection.DeselectNet" )
2186 .Scope( AS_GLOBAL )
2187 .FriendlyName( _( "Deselect All Tracks in Net" ) )
2188 .Tooltip( _( "Deselects all tracks & vias belonging to the same net." ) )
2189 .Parameter<int>( 0 ) );
2190
2192 .Name( "pcbnew.InteractiveSelection.SelectUnconnected" )
2193 .Scope( AS_GLOBAL )
2194 .DefaultHotkey( 'O' )
2195 .FriendlyName( _( "Select All Unconnected Footprints" ) )
2196 .Tooltip( _( "Selects all unconnected footprints belonging to each selected net." ) ) );
2197
2199 .Name( "pcbnew.InteractiveSelection.GrabUnconnected" )
2200 .Scope( AS_GLOBAL )
2201 .DefaultHotkey( MD_SHIFT + 'O' )
2202 .FriendlyName( _( "Grab Nearest Unconnected Footprints" ) )
2203 .Tooltip( _( "Selects and initiates moving the nearest unconnected footprint on each selected net." ) ) );
2204
2206 .Name( "pcbnew.InteractiveSelection.SelectOnSheet" )
2207 .Scope( AS_GLOBAL )
2208 .FriendlyName( _( "Sheet" ) )
2209 .Tooltip( _( "Selects all footprints and tracks in the schematic sheet" ) )
2210 .Icon( BITMAPS::select_same_sheet ) );
2211
2213 .Name( "pcbnew.InteractiveSelection.SelectSameSheet" )
2214 .Scope( AS_GLOBAL )
2215 .FriendlyName( _( "Items in Same Hierarchical Sheet" ) )
2216 .Tooltip( _( "Selects all footprints and tracks in the same schematic sheet" ) )
2217 .Icon( BITMAPS::select_same_sheet ) );
2218
2220 .Name( "pcbnew.InteractiveSelection.SelectOnSchematic" )
2221 .Scope( AS_GLOBAL )
2222 .FriendlyName( _( "Select on Schematic" ) )
2223 .Tooltip( _( "Selects corresponding items in Schematic editor" ) )
2224 .Icon( BITMAPS::select_same_sheet ) );
2225
2227 .Name( "pcbnew.InteractiveSelection.FilterSelection" )
2228 .Scope( AS_GLOBAL )
2229 .FriendlyName( _( "Filter Selected Items..." ) )
2230 .Tooltip( _( "Remove items from the selection by type" ) )
2231 .Icon( BITMAPS::filter ) );
2232
2233
2234// ZONE_FILLER_TOOL
2235//
2237 .Name( "pcbnew.ZoneFiller.zoneFill" )
2238 .Scope( AS_GLOBAL )
2239 .FriendlyName( _( "Draft Fill Selected Zone(s)" ) )
2240 .Tooltip( _( "Update copper fill of selected zone(s) without regard to other interacting zones" ) )
2241 .Icon( BITMAPS::fill_zone )
2242 .Parameter<ZONE*>( nullptr ) );
2243
2245 .Name( "pcbnew.ZoneFiller.zoneFillAll" )
2246 .Scope( AS_GLOBAL )
2247 .DefaultHotkey( 'B' )
2248 .LegacyHotkeyName( "Fill or Refill All Zones" )
2249 .FriendlyName( _( "Fill All Zones" ) )
2250 .Tooltip( _( "Update copper fill of all zones" ) )
2251 .Icon( BITMAPS::fill_zone ) );
2252
2254 .Name( "pcbnew.ZoneFiller.zoneFillDirty" )
2255 .Scope( AS_CONTEXT ) );
2256
2258 .Name( "pcbnew.ZoneFiller.zoneUnfill" )
2259 .Scope( AS_GLOBAL )
2260 .FriendlyName( _( "Unfill Selected Zone(s)" ) )
2261 .Tooltip( _( "Remove copper fill from selected zone(s)" ) )
2262 .Icon( BITMAPS::zone_unfill ) );
2263
2265 .Name( "pcbnew.ZoneFiller.zoneUnfillAll" )
2266 .Scope( AS_GLOBAL )
2267 .DefaultHotkey( MD_CTRL + 'B' )
2268 .LegacyHotkeyName( "Remove Filled Areas in All Zones" )
2269 .FriendlyName( _( "Unfill All Zones" ) )
2270 .Tooltip( _( "Remove copper fill from all zones" ) )
2271 .Icon( BITMAPS::zone_unfill ) );
2272
2273
2274// AUTOPLACER_TOOL
2275//
2277 .Name( "pcbnew.Autoplacer.autoplaceSelected" )
2278 .Scope( AS_GLOBAL )
2279 .FriendlyName( _( "Place Selected Footprints" ) )
2280 .Tooltip( _( "Performs automatic placement of selected components" ) ) );
2281
2283 .Name( "pcbnew.Autoplacer.autoplaceOffboard" )
2284 .Scope( AS_GLOBAL )
2285 .FriendlyName( _( "Place Off-Board Footprints" ) )
2286 .Tooltip( _( "Performs automatic placement of components outside board area" ) ) );
2287
2289 .Name( "pcbnew.Multichannel.generatePlacementRuleAreas" )
2290 .Scope( AS_GLOBAL )
2291 .FriendlyName( _( "Generate Placement Rule Areas..." ) )
2292 .Tooltip( _( "Creates best-fit placement rule areas" ) )
2294 .Flags( AF_ACTIVATE ) );
2295
2297 .Name( "pcbnew.Multichannel.repeatLayout" )
2298 .Scope( AS_GLOBAL )
2299 .FriendlyName( _( "Repeat Layout..." ) )
2300 .Tooltip( _( "Clones placement & routing across multiple identical channels" ) )
2301 .Icon( BITMAPS::copy )
2302 );
2303
2304// ROUTER_TOOL
2305//
2307 .Name( "pcbnew.InteractiveRouter.SingleTrack" )
2308 .Scope( AS_GLOBAL )
2309 .DefaultHotkey( 'X' )
2310 .LegacyHotkeyName( "Add New Track" )
2311 .FriendlyName( _( "Route Single Track" ) )
2312 .Tooltip( _( "Route tracks" ) )
2313 .Icon( BITMAPS::add_tracks )
2314 .ToolbarState( TOOLBAR_STATE::TOGGLE )
2315 .Flags( AF_ACTIVATE )
2316 .Parameter( PNS::PNS_MODE_ROUTE_SINGLE ) );
2317
2319 .Name( "pcbnew.InteractiveRouter.DiffPair" )
2320 .Scope( AS_GLOBAL )
2321 .DefaultHotkey( '6' )
2322 // Don't be tempted to remove "Modern Toolset only". It's in the legacy property name.
2323 .LegacyHotkeyName( "Route Differential Pair (Modern Toolset only)" )
2324 .FriendlyName( _( "Route Differential Pair" ) )
2325 .Tooltip( _( "Route differential pairs" ) )
2326 .Icon( BITMAPS::ps_diff_pair )
2327 .ToolbarState( TOOLBAR_STATE::TOGGLE )
2328 .Flags( AF_ACTIVATE )
2329 .Parameter( PNS::PNS_MODE_ROUTE_DIFF_PAIR ) );
2330
2332 .Name( "pcbnew.InteractiveRouter.SettingsDialog" )
2333 .Scope( AS_GLOBAL )
2334 .DefaultHotkey( MD_CTRL + '<' )
2335 .LegacyHotkeyName( "Routing Options" )
2336 .FriendlyName( _( "Interactive Router Settings..." ) )
2337 .Tooltip( _( "Open Interactive Router settings" ) )
2338 .Icon( BITMAPS::tools ) );
2339
2341 .Name( "pcbnew.InteractiveRouter.DiffPairDialog" )
2342 .Scope( AS_GLOBAL )
2343 .FriendlyName( _( "Differential Pair Dimensions..." ) )
2344 .Tooltip( _( "Open Differential Pair Dimension settings" ) )
2345 .Icon( BITMAPS::ps_diff_pair_gap ) );
2346
2348 .Name( "pcbnew.InteractiveRouter.HighlightMode" )
2349 .Scope( AS_GLOBAL )
2350 .FriendlyName( _( "Router Highlight Mode" ) )
2351 .Tooltip( _( "Switch router to highlight mode" ) )
2352 .Flags( AF_NONE )
2353 .Parameter( PNS::RM_MarkObstacles ) );
2354
2356 .Name( "pcbnew.InteractiveRouter.ShoveMode" )
2357 .Scope( AS_GLOBAL )
2358 .FriendlyName( _( "Router Shove Mode" ) )
2359 .Tooltip( _( "Switch router to shove mode" ) )
2360 .Flags( AF_NONE )
2361 .Parameter( PNS::RM_Shove ) );
2362
2364 .Name( "pcbnew.InteractiveRouter.WalkaroundMode" )
2365 .Scope( AS_GLOBAL )
2366 .FriendlyName( _( "Router Walkaround Mode" ) )
2367 .Tooltip( _( "Switch router to walkaround mode" ) )
2368 .Flags( AF_NONE )
2369 .Parameter( PNS::RM_Walkaround ) );
2370
2372 .Name( "pcbnew.InteractiveRouter.CycleRouterMode" )
2373 .Scope( AS_GLOBAL )
2374 .FriendlyName( _( "Cycle Router Mode" ) )
2375 .Tooltip( _( "Cycle router to the next mode" ) ) );
2376
2378 .Name( "pcbnew.InteractiveRouter.SelectLayerPair" )
2379 .Scope( AS_GLOBAL )
2380 .FriendlyName( _( "Set Layer Pair..." ) )
2381 .Tooltip( _( "Change active layer pair for routing" ) )
2383 .Flags( AF_ACTIVATE ) );
2384
2386 .Name( "pcbnew.LengthTuner.TuneSingleTrack" )
2387 .Scope( AS_GLOBAL )
2388 .DefaultHotkey( '7' )
2389 // Don't be tempted to remove "Modern Toolset only". It's in the legacy property name.
2390 .LegacyHotkeyName( "Tune Single Track (Modern Toolset only)" )
2391 .FriendlyName( _( "Tune Length of a Single Track" ) )
2393 .ToolbarState( TOOLBAR_STATE::TOGGLE )
2394 .Flags( AF_ACTIVATE )
2395 .Parameter( PNS::PNS_MODE_TUNE_SINGLE ) );
2396
2398 .Name( "pcbnew.LengthTuner.TuneDiffPair" )
2399 .Scope( AS_GLOBAL )
2400 .DefaultHotkey( '8' )
2401 // Don't be tempted to remove "Modern Toolset only". It's in the legacy property name.
2402 .LegacyHotkeyName( "Tune Differential Pair Length (Modern Toolset only)" )
2403 .FriendlyName( _( "Tune Length of a Differential Pair" ) )
2405 .ToolbarState( TOOLBAR_STATE::TOGGLE )
2406 .Flags( AF_ACTIVATE )
2407 .Parameter( PNS::PNS_MODE_TUNE_DIFF_PAIR ) );
2408
2410 .Name( "pcbnew.LengthTuner.TuneDiffPairSkew" )
2411 .Scope( AS_GLOBAL )
2412 .DefaultHotkey( '9' )
2413 // Don't be tempted to remove "Modern Toolset only". It's in the legacy property name.
2414 .LegacyHotkeyName( "Tune Differential Pair Skew (Modern Toolset only)" )
2415 .FriendlyName( _( "Tune Skew of a Differential Pair" ) )
2417 .ToolbarState( TOOLBAR_STATE::TOGGLE )
2418 .Flags( AF_ACTIVATE )
2419 .Parameter( PNS::PNS_MODE_TUNE_DIFF_PAIR_SKEW ) );
2420
2422 .Name( "pcbnew.InteractiveRouter.InlineDrag" )
2423 .Scope( AS_CONTEXT )
2424 .Parameter<int>( PNS::DM_ANY ) );
2425
2427 .Name( "pcbnew.InteractiveRouter.UndoLastSegment" )
2428 .Scope( AS_CONTEXT )
2429 .DefaultHotkey( WXK_BACK )
2430 .FriendlyName( _( "Undo Last Segment" ) )
2431 .Tooltip( _( "Walks the current track back one segment." ) ) );
2432
2434 .Name( "pcbnew.InteractiveRouter.ContinueFromEnd" )
2435 .Scope( AS_CONTEXT )
2436 .DefaultHotkey( MD_CTRL + 'E' )
2437 .FriendlyName( _( "Route From Other End" ) )
2438 .Tooltip( _( "Commits current segments and starts next segment from nearest ratsnest end." ) ) );
2439
2441 .Name( "pcbnew.InteractiveRouter.AttemptFinish" )
2442 .Scope( AS_CONTEXT )
2443 .DefaultHotkey( 'F' )
2444 .FriendlyName( _( "Attempt Finish" ) )
2445 .Tooltip( _( "Attempts to complete current route to nearest ratsnest end." ) )
2446 .Parameter<bool*>( nullptr ) );
2447
2449 .Name( "pcbnew.InteractiveRouter.RouteSelected" )
2450 .Scope( AS_GLOBAL )
2451 .DefaultHotkey( MD_SHIFT + 'X' )
2452 .FriendlyName( _( "Route Selected" ) )
2453 .Tooltip( _( "Sequentially route selected items from ratsnest anchor." ) )
2454 .Flags( AF_ACTIVATE )
2455 .Parameter( PNS::PNS_MODE_ROUTE_SINGLE ) );
2456
2458 .Name( "pcbnew.InteractiveRouter.RouteSelectedFromEnd" )
2459 .Scope( AS_GLOBAL )
2460 .DefaultHotkey( MD_SHIFT + 'E' )
2461 .FriendlyName( _( "Route Selected From Other End" ) )
2462 .Tooltip( _( "Sequentially route selected items from other end of ratsnest anchor." ) )
2463 .Flags( AF_ACTIVATE )
2464 .Parameter( PNS::PNS_MODE_ROUTE_SINGLE ) );
2465
2467 .Name( "pcbnew.InteractiveRouter.Autoroute" )
2468 .Scope( AS_GLOBAL )
2469 .DefaultHotkey( MD_SHIFT + 'F' )
2470 .FriendlyName( _( "Attempt Finish Selected (Autoroute)" ) )
2471 .Tooltip( _( "Sequentially attempt to automatically route all selected pads." ) )
2472 .Flags( AF_ACTIVATE )
2473 .Parameter( PNS::PNS_MODE_ROUTE_SINGLE ) );
2474
2476 .Name( "pcbnew.InteractiveRouter.BreakTrack" )
2477 .Scope( AS_GLOBAL )
2478 .FriendlyName( _( "Break Track" ) )
2479 .Tooltip( _( "Splits the track segment into two segments connected at the cursor position." ) )
2480 .Icon( BITMAPS::break_line ) );
2481
2483 .Name( "pcbnew.InteractiveRouter.Drag45Degree" )
2484 .Scope( AS_GLOBAL )
2485 .DefaultHotkey( 'D' )
2486 .LegacyHotkeyName( "Drag Track Keep Slope" )
2487 .FriendlyName( _( "Drag 45 Degree Mode" ) )
2488 .Tooltip( _( "Drags the track segment while keeping connected tracks at 45 degrees." ) )
2490
2492 .Name( "pcbnew.InteractiveRouter.DragFreeAngle" )
2493 .Scope( AS_GLOBAL )
2494 .DefaultHotkey( 'G' )
2495 .LegacyHotkeyName( "Drag Item" )
2496 .FriendlyName( _( "Drag Free Angle" ) )
2497 .Tooltip( _( "Drags the nearest joint in the track without restricting the track angle." ) )
2498 .Icon( BITMAPS::drag_segment ) );
2499
2500
2501// GENERATOR_TOOL
2502//
2503
2505 .Name( "pcbnew.Generator.regenerateAllTuning" )
2506 .Scope( AS_GLOBAL )
2507 .FriendlyName( _( "Update All Tuning Patterns" ) )
2508 .Tooltip( _( "Attempt to re-tune existing tuning patterns within their bounds" ) )
2510 .Parameter( wxString( wxS( "tuning_pattern" ) ) ) );
2511
2513 .Name( "pcbnew.Generator.regenerateAll" )
2514 .Scope( AS_GLOBAL )
2515 .FriendlyName( _( "Rebuild All Generators" ) )
2516 .Tooltip( _( "Rebuilds geometry of all generators" ) )
2517 .Icon( BITMAPS::refresh )
2518 .Parameter( wxString( wxS( "*" ) ) ) );
2519
2521 .Name( "pcbnew.Generator.regenerateSelected" )
2522 .Scope( AS_GLOBAL )
2523 .FriendlyName( _( "Rebuild Selected Generators" ) )
2524 .Tooltip( _( "Rebuilds geometry of selected generator(s)" ) )
2525 .Icon( BITMAPS::refresh ) );
2526
2527
2529 .Name( "pcbnew.Generator.genStartEdit" )
2530 .Scope( AS_CONTEXT ) );
2531
2533 .Name( "pcbnew.Generator.genUpdateEdit" )
2534 .Scope( AS_CONTEXT ) );
2535
2537 .Name( "pcbnew.Generator.genPushEdit" )
2538 .Scope( AS_CONTEXT ) );
2539
2541 .Name( "pcbnew.Generator.genRevertEdit" )
2542 .Scope( AS_CONTEXT ) );
2543
2545 .Name( "pcbnew.Generator.genRemove" )
2546 .Scope( AS_CONTEXT ) );
2547
2548
2550 .Name( "pcbnew.Generator.showManager" )
2551 .Scope( AS_GLOBAL )
2552 .FriendlyName( _( "Generators Manager" ) )
2553 .Tooltip( _( "Show a manager dialog for Generator objects" ) )
2554 .Icon( BITMAPS::pin_table ) );
2555
2556
2557// LENGTH_TUNER_TOOL
2558//
2560 .Name( "pcbnew.LengthTuner.Settings" )
2561 .Scope( AS_GLOBAL )
2562 .DefaultHotkey( MD_CTRL + 'L' )
2563 // Don't be tempted to remove "Modern Toolset only". It's in the legacy property name.
2564 .LegacyHotkeyName( "Length Tuning Settings (Modern Toolset only)" )
2565 .MenuText( _( "Length Tuning Settings..." ) )
2566 .Tooltip( _( "Displays tuning pattern properties dialog" ) )
2568
2570 .Name( "pcbnew.Control.DdAppendBoard" )
2571 .Scope( AS_GLOBAL ) );
2572
2573
2575 .Name( "pcbnew.Control.ddImportFootprint" )
2576 .Scope( AS_GLOBAL ) );
2577
2578
2580{
2581 static TOOL_EVENT event = TOOL_EVENT( TC_MESSAGE, TA_ACTION,
2582 "common.Interactive.snappingModeChangedByKey" );
2583
2584 return event;
2585}
2586
2587
2589{
2590 static TOOL_EVENT event = TOOL_EVENT( TC_MESSAGE, TA_ACTION,
2591 "pcbnew.Control.layerPairPresetChangedByKey" );
2592
2593 return event;
2594}
@ KEEP_ENDPOINTS_OR_START_DIRECTION
@ KEEP_CENTER_ADJUST_ANGLE_RADIUS
@ new_footprint
@ copy_pad_settings
@ add_zone_cutout
@ cleanup_tracks_and_vias
@ show_mod_edge
@ general_deletions
@ align_items_bottom
@ hide_ratsnest
@ lib_previous
@ align_items_left
@ show_zone_outline_only
@ push_pad_settings
@ distribute_horizontal_centers
@ distribute_vertical_centers
@ delete_cursor
@ ps_diff_pair_tune_length
@ module_options
@ add_graphical_polygon
@ move_exactly
@ align_items_middle
@ distribute_horizontal_gaps
@ add_radial_dimension
@ auto_track_width
@ ps_tune_length
@ zone_duplicate
@ import_module
@ ps_diff_pair
@ router_len_tuner_dist_incr
@ drag_segment
@ module_editor
@ subtract_polygons
@ align_items_top
@ export_module
@ pad_enumerate
@ move_relative
@ curved_ratsnest
@ router_len_tuner_dist_decr
@ add_aligned_dimension
@ general_ratsnest
@ add_rectangle
@ outset_from_selection
@ mw_add_stub_arc
@ align_items_right
@ insert_module_board
@ apply_pad_settings
@ mw_add_shape
@ icon_eeschema_24
@ add_center_dimension
@ show_ratsnest
@ drag_segment_withslope
@ width_track_via
@ merge_polygons
@ add_graphical_segments
@ intersect_polygons
@ distribute_vertical_gaps
@ ps_diff_pair_tune_phase
@ contrast_mode
@ add_orthogonal_dimension
@ add_component
@ add_keepout_area
@ pack_footprints
@ custom_pad_to_primitives
@ directory_open
@ zoom_auto_fit_in_page
@ show_zone_disable
@ align_items_center
@ layers_manager
@ net_highlight
@ options_board
@ load_module_board
@ show_zone_triangulation
@ router_len_tuner
@ select_layer_pair
@ router_len_tuner_amplitude_incr
@ new_component
@ select_same_sheet
@ router_len_tuner_setup
@ cleanup_graphics
@ module_wizard
@ import_vector
@ router_len_tuner_amplitude_decr
@ tool_ratsnest
@ edit_cmp_symb_links
@ ps_diff_pair_gap
@ CURSOR_NONE
Definition: actions.h:295
static TOOL_ACTION deleteLastPoint
Definition: pcb_actions.h:214
static TOOL_ACTION toggleHV45Mode
Definition: pcb_actions.h:520
static TOOL_ACTION editTracksAndVias
Definition: pcb_actions.h:402
static TOOL_ACTION_GROUP layerDirectSwitchActions()
static TOOL_ACTION deleteFootprint
Definition: pcb_actions.h:461
static TOOL_ACTION drawRuleArea
Definition: pcb_actions.h:206
static TOOL_ACTION layerToggle
Definition: pcb_actions.h:364
static TOOL_ACTION drag45Degree
Definition: pcb_actions.h:180
static TOOL_ACTION duplicateIncrement
Activation of the duplication tool with incrementing (e.g. pad number)
Definition: pcb_actions.h:169
static TOOL_ACTION layerInner12
Definition: pcb_actions.h:340
static TOOL_ACTION changeDimensionArrows
Switch between dimension arrow directions.
Definition: pcb_actions.h:227
static TOOL_ACTION microwaveCreateGap
Definition: pcb_actions.h:509
static TOOL_ACTION recombinePad
Definition: pcb_actions.h:483
static TOOL_ACTION drawBezier
Definition: pcb_actions.h:189
static TOOL_ACTION renameFootprint
Definition: pcb_actions.h:460
static TOOL_ACTION routerUndoLastSegment
Definition: pcb_actions.h:246
static TOOL_ACTION nextFootprint
Definition: pcb_actions.h:477
static TOOL_ACTION placeText
Definition: pcb_actions.h:191
static TOOL_ACTION layerInner8
Definition: pcb_actions.h:336
static TOOL_ACTION swapLayers
Definition: pcb_actions.h:412
static TOOL_ACTION zonesManager
Definition: pcb_actions.h:437
static TOOL_ACTION generateBOM
Definition: pcb_actions.h:427
static TOOL_ACTION pointEditorArcKeepCenter
Definition: pcb_actions.h:285
static TOOL_ACTION highlightItem
Definition: pcb_actions.h:551
static TOOL_ACTION drawOrthogonalDimension
Definition: pcb_actions.h:202
static TOOL_ACTION zoneDisplayToggle
Definition: pcb_actions.h:323
static TOOL_ACTION enumeratePads
Tool for quick pad enumeration.
Definition: pcb_actions.h:486
static TOOL_ACTION drawRectangle
Definition: pcb_actions.h:186
static TOOL_ACTION previousFootprint
Definition: pcb_actions.h:476
static TOOL_ACTION layerInner3
Definition: pcb_actions.h:331
static TOOL_ACTION layerPrev
Definition: pcb_actions.h:361
static TOOL_ACTION setAnchor
Definition: pcb_actions.h:213
static TOOL_ACTION padDisplayMode
Definition: pcb_actions.h:317
static TOOL_ACTION placeReferenceImage
Definition: pcb_actions.h:190
static TOOL_ACTION routerSettingsDialog
Activation of the Push and Shove settings dialogs.
Definition: pcb_actions.h:255
static TOOL_ACTION showRatsnest
Definition: pcb_actions.h:312
static TOOL_ACTION zoneFillAll
Definition: pcb_actions.h:388
static TOOL_ACTION layerInner2
Definition: pcb_actions.h:330
static TOOL_ACTION showLayersManager
Definition: pcb_actions.h:434
static TOOL_ACTION changeTrackWidth
Update selected tracks & vias to the current track & via dimensions.
Definition: pcb_actions.h:135
static TOOL_ACTION trackWidthDec
Definition: pcb_actions.h:376
static TOOL_ACTION routerAttemptFinish
Definition: pcb_actions.h:249
static TOOL_ACTION convertToKeepout
Definition: pcb_actions.h:572
static TOOL_ACTION toggleNetHighlight
Definition: pcb_actions.h:549
static TOOL_ACTION generateDrillFiles
Definition: pcb_actions.h:421
static TOOL_ACTION pushPadSettings
Copy the current pad's settings to other pads in the footprint or on the board.
Definition: pcb_actions.h:506
static TOOL_ACTION unrouteSelected
Removes all tracks from the selected items to the first pad.
Definition: pcb_actions.h:76
static TOOL_ACTION saveSelectionAsDesignBlock
Definition: pcb_actions.h:443
static TOOL_ACTION drawCircle
Definition: pcb_actions.h:187
static TOOL_ACTION magneticSnapAllLayers
Definition: pcb_actions.h:231
static TOOL_ACTION mirrorH
Mirroring of selected items.
Definition: pcb_actions.h:122
static TOOL_ACTION routeDiffPair
Activation of the Push and Shove router (differential pair mode)
Definition: pcb_actions.h:240
static TOOL_ACTION generateD356File
Definition: pcb_actions.h:426
static TOOL_ACTION updateFootprint
Definition: pcb_actions.h:408
static TOOL_ACTION tuneDiffPair
Definition: pcb_actions.h:243
static TOOL_ACTION convertToTracks
Definition: pcb_actions.h:575
static TOOL_ACTION alignTop
Definition: pcb_actions.h:292
static TOOL_ACTION trackViaSizeChanged
Definition: pcb_actions.h:382
static TOOL_ACTION exportSpecctraDSN
Definition: pcb_actions.h:418
static TOOL_ACTION createFootprint
Definition: pcb_actions.h:456
static TOOL_ACTION layerChanged
Definition: pcb_actions.h:370
static TOOL_ACTION trackWidthInc
Definition: pcb_actions.h:375
static TOOL_ACTION grabUnconnected
Select and move nearest unconnected footprint from ratsnest of selection.
Definition: pcb_actions.h:88
static TOOL_ACTION filterSelection
Filter the items in the current selection (invokes dialog)
Definition: pcb_actions.h:100
static TOOL_ACTION ddAppendBoard
Drag and drop.
Definition: pcb_actions.h:578
static TOOL_ACTION editFootprint
Definition: pcb_actions.h:458
static TOOL_ACTION exportFootprint
Definition: pcb_actions.h:466
static TOOL_ACTION layerInner25
Definition: pcb_actions.h:353
static TOOL_ACTION editDesignBlockProperties
Definition: pcb_actions.h:447
static TOOL_ACTION breakTrack
Break a single track into two segments at the cursor.
Definition: pcb_actions.h:178
static TOOL_ACTION pointEditorMoveMidpoint
Definition: pcb_actions.h:289
static TOOL_ACTION highlightNet
Definition: pcb_actions.h:547
static TOOL_ACTION magneticSnapActiveLayer
Snapping controls.
Definition: pcb_actions.h:230
static TOOL_ACTION autoTrackWidth
Definition: pcb_actions.h:380
static TOOL_ACTION generateIPC2581File
Definition: pcb_actions.h:424
static TOOL_ACTION getAndPlace
Find an item and start moving.
Definition: pcb_actions.h:564
static TOOL_ACTION drawTable
Definition: pcb_actions.h:193
static TOOL_ACTION drawTextBox
Definition: pcb_actions.h:192
static TOOL_ACTION generateODBPPFile
Definition: pcb_actions.h:425
static TOOL_ACTION repeatLayout
Definition: pcb_actions.h:581
static TOOL_ACTION copyPadSettings
Copy the selected pad's settings to the board design settings.
Definition: pcb_actions.h:500
static TOOL_ACTION layerAlphaDec
Definition: pcb_actions.h:363
static TOOL_ACTION routerRouteSelectedFromEnd
Definition: pcb_actions.h:251
static TOOL_ACTION routerHighlightMode
Actions to enable switching modes via hotkey assignments.
Definition: pcb_actions.h:259
static TOOL_ACTION routerWalkaroundMode
Definition: pcb_actions.h:261
static TOOL_ACTION routerShoveMode
Definition: pcb_actions.h:260
static TOOL_ACTION convertToLines
Definition: pcb_actions.h:573
static TOOL_ACTION drawZoneCutout
Definition: pcb_actions.h:207
static TOOL_ACTION genPushEdit
Definition: pcb_actions.h:274
static TOOL_ACTION drawPolygon
Definition: pcb_actions.h:185
static TOOL_ACTION placePad
Activation of the drawing tool (placing a PAD)
Definition: pcb_actions.h:480
static TOOL_ACTION hideNetInRatsnest
Definition: pcb_actions.h:554
static TOOL_ACTION hideLocalRatsnest
Definition: pcb_actions.h:557
static TOOL_ACTION distributeHorizontallyGaps
Definition: pcb_actions.h:299
static TOOL_ACTION zoneDisplayFilled
Definition: pcb_actions.h:319
static TOOL_ACTION layerInner24
Definition: pcb_actions.h:352
static TOOL_ACTION viaSizeDec
Definition: pcb_actions.h:378
static TOOL_ACTION showNetInRatsnest
Definition: pcb_actions.h:555
static TOOL_ACTION drawRadialDimension
Definition: pcb_actions.h:201
static TOOL_ACTION genStartEdit
Definition: pcb_actions.h:272
static TOOL_ACTION tuneSingleTrack
Definition: pcb_actions.h:242
static TOOL_ACTION zoneFill
Definition: pcb_actions.h:387
static TOOL_ACTION cleanupTracksAndVias
Definition: pcb_actions.h:406
static TOOL_ACTION viaDisplayMode
Definition: pcb_actions.h:318
static TOOL_ACTION editTextAndGraphics
Definition: pcb_actions.h:403
static TOOL_ACTION properties
Activation of the edit tool.
Definition: pcb_actions.h:163
static TOOL_ACTION drawLeader
Definition: pcb_actions.h:203
static TOOL_ACTION editFpInFpEditor
Definition: pcb_actions.h:431
static TOOL_ACTION moveWithReference
move with a reference point
Definition: pcb_actions.h:109
static TOOL_ACTION toggleLock
Definition: pcb_actions.h:523
static TOOL_ACTION swap
Swapping of selected items.
Definition: pcb_actions.h:126
static TOOL_ACTION toggleLastNetHighlight
Definition: pcb_actions.h:548
static TOOL_ACTION layerInner29
Definition: pcb_actions.h:357
static TOOL_ACTION * LayerIDToAction(PCB_LAYER_ID aLayerID)
Translate a layer ID into the action that switches to that layer.
static TOOL_ACTION drillResetOrigin
Definition: pcb_actions.h:532
static TOOL_ACTION deleteDesignBlock
Definition: pcb_actions.h:446
static TOOL_ACTION placeCharacteristics
Definition: pcb_actions.h:209
static TOOL_ACTION pluginsShowFolder
Scripting Actions.
Definition: pcb_actions.h:398
static TOOL_ACTION viaSizeInc
Definition: pcb_actions.h:377
static TOOL_ACTION routerAutorouteSelected
Definition: pcb_actions.h:252
static TOOL_ACTION moveExact
Activation of the exact move tool.
Definition: pcb_actions.h:166
static TOOL_ACTION autoplaceOffboardComponents
Definition: pcb_actions.h:566
static TOOL_ACTION layerInner11
Definition: pcb_actions.h:339
static TOOL_ACTION routerDiffPairDialog
Definition: pcb_actions.h:256
static TOOL_ACTION explodePad
Definition: pcb_actions.h:482
static TOOL_ACTION routerContinueFromEnd
Definition: pcb_actions.h:248
static TOOL_ACTION zoneUnfill
Definition: pcb_actions.h:390
static TOOL_ACTION intersectPolygons
Intersection of multiple polygons.
Definition: pcb_actions.h:160
static TOOL_ACTION pointEditorMoveCorner
Definition: pcb_actions.h:288
static TOOL_ACTION layerAlphaInc
Definition: pcb_actions.h:362
static TOOL_ACTION saveBoardAsDesignBlock
Definition: pcb_actions.h:442
static TOOL_ACTION layerPairPresetsCycle
Definition: pcb_actions.h:365
static TOOL_ACTION distributeHorizontallyCenters
Definition: pcb_actions.h:298
static TOOL_ACTION inspectConstraints
Definition: pcb_actions.h:541
static TOOL_ACTION generatePosFile
Definition: pcb_actions.h:422
static TOOL_ACTION globalDeletions
Definition: pcb_actions.h:405
static TOOL_ACTION newFootprint
Definition: pcb_actions.h:453
static TOOL_ACTION genRemove
Definition: pcb_actions.h:276
static TOOL_ACTION drillOrigin
Definition: pcb_actions.h:531
static TOOL_ACTION selectOnSheetFromEeschema
Select all components on sheet from Eeschema crossprobing.
Definition: pcb_actions.h:91
static TOOL_ACTION layerInner16
Definition: pcb_actions.h:344
static TOOL_ACTION defaultPadProperties
Definition: pcb_actions.h:469
static TOOL_ACTION selectConnection
Select tracks between junctions or expands an existing selection to pads or the entire connection.
Definition: pcb_actions.h:73
static TOOL_ACTION assignNetClass
Definition: pcb_actions.h:384
static TOOL_ACTION packAndMoveFootprints
Pack and start moving selected footprints.
Definition: pcb_actions.h:129
static TOOL_ACTION alignRight
Definition: pcb_actions.h:295
static TOOL_ACTION tuneSkew
Definition: pcb_actions.h:244
static TOOL_ACTION copyWithReference
copy command with manual reference point selection
Definition: pcb_actions.h:112
static TOOL_ACTION layerInner26
Definition: pcb_actions.h:354
static TOOL_ACTION layerInner18
Definition: pcb_actions.h:346
static TOOL_ACTION incWidth
Increase width of currently drawn line.
Definition: pcb_actions.h:218
static TOOL_ACTION repairBoard
Definition: pcb_actions.h:538
static TOOL_ACTION layerInner14
Definition: pcb_actions.h:342
static TOOL_ACTION healShapes
Connect selected shapes, possibly extending or cutting them, or adding extra geometry.
Definition: pcb_actions.h:147
static TOOL_ACTION selectPointInteractively
Definition: pcb_actions.h:309
static TOOL_ACTION trackDisplayMode
Definition: pcb_actions.h:316
static TOOL_ACTION showNetInspector
Definition: pcb_actions.h:435
static TOOL_ACTION selectLayerPair
Definition: pcb_actions.h:175
static TOOL_ACTION magneticSnapToggle
Definition: pcb_actions.h:232
static TOOL_ACTION microwaveCreateStubArc
Definition: pcb_actions.h:513
static TOOL_ACTION layerInner6
Definition: pcb_actions.h:334
static TOOL_ACTION dragFreeAngle
Definition: pcb_actions.h:181
static TOOL_ACTION positionRelativeInteractively
Definition: pcb_actions.h:305
static TOOL_ACTION clearHighlight
Definition: pcb_actions.h:546
static TOOL_ACTION generateGerbers
Definition: pcb_actions.h:420
static TOOL_ACTION inspectClearance
Definition: pcb_actions.h:540
static TOOL_ACTION convertToZone
Definition: pcb_actions.h:571
static TOOL_ACTION ddImportFootprint
Definition: pcb_actions.h:579
static TOOL_ACTION generatorsShowManager
Definition: pcb_actions.h:278
static TOOL_ACTION zoneDisplayTriangulated
Definition: pcb_actions.h:322
static TOOL_ACTION genUpdateEdit
Definition: pcb_actions.h:273
static TOOL_ACTION generateReportFile
Definition: pcb_actions.h:423
static TOOL_ACTION updateLocalRatsnest
Definition: pcb_actions.h:558
static TOOL_ACTION spacingDecrease
Definition: pcb_actions.h:195
static TOOL_ACTION updateFootprints
Definition: pcb_actions.h:409
static TOOL_ACTION importFootprint
Definition: pcb_actions.h:465
static TOOL_ACTION autoplaceSelectedComponents
Definition: pcb_actions.h:567
static TOOL_ACTION layerInner22
Definition: pcb_actions.h:350
static TOOL_ACTION placeDesignBlock
Definition: pcb_actions.h:440
static TOOL_ACTION alignBottom
Definition: pcb_actions.h:293
static TOOL_ACTION selectUnconnected
Select unconnected footprints from ratsnest of selection.
Definition: pcb_actions.h:85
static TOOL_ACTION placeImportedGraphics
Definition: pcb_actions.h:212
static TOOL_ACTION layerInner5
Definition: pcb_actions.h:333
static TOOL_ACTION removeUnusedPads
Definition: pcb_actions.h:413
static TOOL_ACTION zoneDisplayFractured
Definition: pcb_actions.h:321
static TOOL_ACTION ratsnestModeCycle
Definition: pcb_actions.h:315
static TOOL_ACTION drawVia
Definition: pcb_actions.h:205
static TOOL_ACTION regenerateAll
Definition: pcb_actions.h:269
static TOOL_ACTION applyPadSettings
Copy the default pad settings to the selected pad.
Definition: pcb_actions.h:503
static TOOL_ACTION alignLeft
Definition: pcb_actions.h:294
static TOOL_ACTION drawArc
Definition: pcb_actions.h:188
static TOOL_ACTION deleteFull
Definition: pcb_actions.h:173
static TOOL_ACTION runDRC
Definition: pcb_actions.h:429
static TOOL_ACTION convertToPoly
Definition: pcb_actions.h:570
static TOOL_ACTION zoneDuplicate
Duplicate zone onto another layer.
Definition: pcb_actions.h:395
static TOOL_ACTION regenerateAllTuning
Generator tool.
Definition: pcb_actions.h:268
static TOOL_ACTION graphicsOutlines
Display footprint graphics as outlines.
Definition: pcb_actions.h:492
static TOOL_ACTION importNetlist
Definition: pcb_actions.h:415
static TOOL_ACTION generatePlacementRuleAreas
Definition: pcb_actions.h:582
static TOOL_ACTION layerInner20
Definition: pcb_actions.h:348
static TOOL_ACTION layerInner7
Definition: pcb_actions.h:335
static TOOL_ACTION layerInner27
Definition: pcb_actions.h:355
static TOOL_ACTION diffFootprint
Definition: pcb_actions.h:542
static TOOL_ACTION moveIndividually
move items one-by-one
Definition: pcb_actions.h:106
static TOOL_ACTION changeFootprints
Definition: pcb_actions.h:411
static TOOL_ACTION outsetItems
Create outset items from selection.
Definition: pcb_actions.h:153
static TOOL_ACTION drawSimilarZone
Definition: pcb_actions.h:208
static TOOL_ACTION pointEditorArcKeepEndpoint
Definition: pcb_actions.h:286
static TOOL_ACTION syncSelection
Sets selection to specified items, zooms to fit, if enabled.
Definition: pcb_actions.h:63
static TOOL_ACTION boardSetup
Definition: pcb_actions.h:401
static TOOL_ACTION showEeschema
Definition: pcb_actions.h:535
static TOOL_ACTION loadFpFromBoard
Definition: pcb_actions.h:473
static TOOL_ACTION showDesignBlockPanel
Definition: pcb_actions.h:441
static TOOL_ACTION decWidth
Decrease width of currently drawn line.
Definition: pcb_actions.h:221
static TOOL_ACTION drawCenterDimension
Definition: pcb_actions.h:200
static TOOL_ACTION zoneUnfillAll
Definition: pcb_actions.h:391
static TOOL_ACTION pasteFootprint
Definition: pcb_actions.h:464
static TOOL_ACTION zoneFillDirty
Definition: pcb_actions.h:389
static TOOL_ACTION chamferLines
Chamfer (i.e. adds a straight line) all selected straight lines by a user defined setback.
Definition: pcb_actions.h:143
static TOOL_ACTION appendBoard
Definition: pcb_actions.h:534
static TOOL_ACTION netColorModeCycle
Definition: pcb_actions.h:314
static TOOL_ACTION selectSameSheet
Select all components on the same sheet as the selected footprint.
Definition: pcb_actions.h:94
static TOOL_ACTION layerInner1
Definition: pcb_actions.h:329
static TOOL_ACTION layerInner10
Definition: pcb_actions.h:338
static TOOL_ACTION dogboneCorners
Add "dogbone" corners to selected lines to allow routing with a cutter radius.
Definition: pcb_actions.h:145
static TOOL_ACTION microwaveCreateStub
Definition: pcb_actions.h:511
static TOOL_ACTION selectNet
Select all connections belonging to a single net.
Definition: pcb_actions.h:79
static TOOL_ACTION filletTracks
Fillet (i.e. adds an arc tangent to) all selected straight tracks by a user defined radius.
Definition: pcb_actions.h:138
static TOOL_ACTION layerInner15
Definition: pcb_actions.h:343
static TOOL_ACTION simplifyPolygons
Simplify polygon outlines.
Definition: pcb_actions.h:151
static TOOL_ACTION arcPosture
Switch posture when drawing arc.
Definition: pcb_actions.h:224
static TOOL_ACTION microwaveCreateLine
Definition: pcb_actions.h:517
static TOOL_ACTION footprintProperties
Definition: pcb_actions.h:468
static TOOL_ACTION layerInner17
Definition: pcb_actions.h:345
static TOOL_ACTION flipBoard
Definition: pcb_actions.h:372
static TOOL_ACTION layerBottom
Definition: pcb_actions.h:359
static TOOL_ACTION zoneDisplayOutline
Definition: pcb_actions.h:320
static TOOL_ACTION ratsnestLineMode
Definition: pcb_actions.h:313
static TOOL_ACTION showFootprintAssociations
Definition: pcb_actions.h:543
static TOOL_ACTION layerInner19
Definition: pcb_actions.h:347
static TOOL_ACTION layerInner9
Definition: pcb_actions.h:337
static TOOL_ACTION fpAutoZoom
Definition: pcb_actions.h:325
static TOOL_ACTION pointEditorChamferCorner
Definition: pcb_actions.h:283
static TOOL_ACTION textOutlines
Display texts as lines.
Definition: pcb_actions.h:495
static TOOL_ACTION showPadNumbers
Definition: pcb_actions.h:324
static TOOL_ACTION checkFootprint
Definition: pcb_actions.h:471
static TOOL_ACTION filletLines
Fillet (i.e. adds an arc tangent to) all selected straight lines by a user defined radius.
Definition: pcb_actions.h:141
static TOOL_ACTION highlightNetSelection
Definition: pcb_actions.h:550
static TOOL_ACTION microwaveCreateFunctionShape
Definition: pcb_actions.h:515
static TOOL_ACTION saveSelectionToDesignBlock
Definition: pcb_actions.h:445
static TOOL_ACTION editLibFpInFpEditor
Definition: pcb_actions.h:432
static TOOL_ACTION zoneMerge
Definition: pcb_actions.h:392
static TOOL_ACTION duplicateFootprint
Definition: pcb_actions.h:459
static TOOL_ACTION closeOutline
Definition: pcb_actions.h:215
static TOOL_ACTION changeFootprint
Definition: pcb_actions.h:410
static TOOL_ACTION routerInlineDrag
Activation of the Push and Shove router (inline dragging mode)
Definition: pcb_actions.h:265
static TOOL_ACTION pointEditorRemoveCorner
Definition: pcb_actions.h:282
static TOOL_ACTION positionRelative
Definition: pcb_actions.h:304
static TOOL_ACTION skip
Definition: pcb_actions.h:132
static TOOL_ACTION amplIncrease
Definition: pcb_actions.h:196
static TOOL_ACTION move
move or drag an item
Definition: pcb_actions.h:103
static TOOL_ACTION mirrorV
Definition: pcb_actions.h:123
static TOOL_ACTION cutFootprint
Definition: pcb_actions.h:462
static TOOL_ACTION amplDecrease
Definition: pcb_actions.h:197
static TOOL_ACTION drillSetOrigin
Definition: pcb_actions.h:533
static TOOL_ACTION unlock
Definition: pcb_actions.h:525
static TOOL_ACTION lengthTunerSettings
Definition: pcb_actions.h:198
static TOOL_ACTION mergePolygons
Merge multiple polygons into a single polygon.
Definition: pcb_actions.h:156
static TOOL_ACTION syncSelectionWithNets
Sets selection to specified items with connected nets, zooms to fit, if enabled.
Definition: pcb_actions.h:66
static TOOL_ACTION spacingIncrease
Definition: pcb_actions.h:194
static TOOL_ACTION layerInner30
Definition: pcb_actions.h:358
static TOOL_ACTION boardReannotate
Definition: pcb_actions.h:537
static TOOL_ACTION subtractPolygons
Subtract polygons from other polygons.
Definition: pcb_actions.h:158
static TOOL_ACTION layerTop
Definition: pcb_actions.h:328
static TOOL_ACTION cycleRouterMode
Definition: pcb_actions.h:262
static TOOL_ACTION regenerateSelected
Definition: pcb_actions.h:270
static TOOL_ACTION convertToArc
Definition: pcb_actions.h:574
static TOOL_ACTION layerInner4
Definition: pcb_actions.h:332
static TOOL_ACTION repairFootprint
Definition: pcb_actions.h:539
static TOOL_ACTION flip
Flipping of selected objects.
Definition: pcb_actions.h:119
static TOOL_ACTION alignCenterX
Definition: pcb_actions.h:296
static TOOL_ACTION placeFootprint
Definition: pcb_actions.h:211
static TOOL_ACTION pointEditorAddCorner
Definition: pcb_actions.h:281
static TOOL_ACTION routeSingleTrack
Activation of the Push and Shove router.
Definition: pcb_actions.h:237
static TOOL_ACTION layerInner13
Definition: pcb_actions.h:341
static TOOL_ACTION layerInner21
Definition: pcb_actions.h:349
static TOOL_ACTION selectItemInteractively
Selection of reference points/items.
Definition: pcb_actions.h:308
static TOOL_ACTION createArray
Tool for creating an array of objects.
Definition: pcb_actions.h:489
static TOOL_ACTION saveBoardToDesignBlock
Definition: pcb_actions.h:444
static TOOL_ACTION boardStatistics
Definition: pcb_actions.h:536
static TOOL_ACTION saveFpToBoard
Definition: pcb_actions.h:474
static TOOL_ACTION deselectNet
Remove all connections belonging to a single net from the active selection.
Definition: pcb_actions.h:82
static TOOL_ACTION editTeardrops
Definition: pcb_actions.h:404
static TOOL_ACTION layerNext
Definition: pcb_actions.h:360
static TOOL_ACTION showPythonConsole
Definition: pcb_actions.h:436
static TOOL_ACTION copyFootprint
Definition: pcb_actions.h:463
static TOOL_ACTION extendLines
Extend selected lines to meet at a point.
Definition: pcb_actions.h:149
static TOOL_ACTION drawLine
Definition: pcb_actions.h:184
static TOOL_ACTION distributeVerticallyGaps
Definition: pcb_actions.h:301
static TOOL_ACTION placeStackup
Definition: pcb_actions.h:210
static TOOL_ACTION localRatsnestTool
Definition: pcb_actions.h:556
static TOOL_ACTION routerRouteSelected
Definition: pcb_actions.h:250
static TOOL_ACTION cleanupGraphics
Definition: pcb_actions.h:407
static TOOL_ACTION rotateCw
Rotation of selected objects.
Definition: pcb_actions.h:115
static TOOL_ACTION rotateCcw
Definition: pcb_actions.h:116
static TOOL_ACTION drawAlignedDimension
Definition: pcb_actions.h:199
static TOOL_ACTION genRevertEdit
Definition: pcb_actions.h:275
static TOOL_ACTION layerInner23
Definition: pcb_actions.h:351
static TOOL_ACTION distributeVerticallyCenters
Definition: pcb_actions.h:300
static TOOL_ACTION drawZone
Definition: pcb_actions.h:204
static TOOL_ACTION alignCenterY
Definition: pcb_actions.h:297
static TOOL_ACTION importSpecctraSession
Definition: pcb_actions.h:417
static TOOL_ACTION selectOnSchematic
Select symbols/pins on schematic corresponding to selected footprints/pads.
Definition: pcb_actions.h:97
static TOOL_ACTION lock
Definition: pcb_actions.h:524
static TOOL_ACTION layerInner28
Definition: pcb_actions.h:356
static const TOOL_EVENT & SnappingModeChangedByKeyEvent()
Hotkey feedback.
static const TOOL_EVENT & LayerPairPresetChangedByKeyEvent()
Build up the properties of a TOOL_ACTION in an incremental manner that is static-construction safe.
Definition: tool_action.h:118
Define a group that can be used to group actions (and their events) of similar operations.
Definition: tool_action.h:79
Represent a single user action.
Definition: tool_action.h:304
Generic, UI-independent tool event.
Definition: tool_event.h:168
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
@ In22_Cu
Definition: layer_ids.h:87
@ In11_Cu
Definition: layer_ids.h:76
@ In29_Cu
Definition: layer_ids.h:94
@ In30_Cu
Definition: layer_ids.h:95
@ In17_Cu
Definition: layer_ids.h:82
@ In9_Cu
Definition: layer_ids.h:74
@ In19_Cu
Definition: layer_ids.h:84
@ In7_Cu
Definition: layer_ids.h:72
@ In28_Cu
Definition: layer_ids.h:93
@ In26_Cu
Definition: layer_ids.h:91
@ B_Cu
Definition: layer_ids.h:65
@ In21_Cu
Definition: layer_ids.h:86
@ In23_Cu
Definition: layer_ids.h:88
@ In15_Cu
Definition: layer_ids.h:80
@ In2_Cu
Definition: layer_ids.h:67
@ In10_Cu
Definition: layer_ids.h:75
@ In4_Cu
Definition: layer_ids.h:69
@ In16_Cu
Definition: layer_ids.h:81
@ In24_Cu
Definition: layer_ids.h:89
@ In1_Cu
Definition: layer_ids.h:66
@ In13_Cu
Definition: layer_ids.h:78
@ In8_Cu
Definition: layer_ids.h:73
@ In14_Cu
Definition: layer_ids.h:79
@ In12_Cu
Definition: layer_ids.h:77
@ In27_Cu
Definition: layer_ids.h:92
@ In6_Cu
Definition: layer_ids.h:71
@ In5_Cu
Definition: layer_ids.h:70
@ In3_Cu
Definition: layer_ids.h:68
@ In20_Cu
Definition: layer_ids.h:85
@ F_Cu
Definition: layer_ids.h:64
@ In18_Cu
Definition: layer_ids.h:83
@ In25_Cu
Definition: layer_ids.h:90
@ RM_MarkObstacles
Ignore collisions, mark obstacles.
@ RM_Walkaround
Only walk around.
@ RM_Shove
Only shove.
@ PNS_MODE_ROUTE_SINGLE
Definition: pns_router.h:63
@ PNS_MODE_ROUTE_DIFF_PAIR
Definition: pns_router.h:64
@ PNS_MODE_TUNE_DIFF_PAIR
Definition: pns_router.h:66
@ PNS_MODE_TUNE_SINGLE
Definition: pns_router.h:65
@ PNS_MODE_TUNE_DIFF_PAIR_SKEW
Definition: pns_router.h:67
@ DM_ANY
Definition: pns_router.h:77
#define _(s)
Definition: pcb_actions.cpp:46
@ SIMILAR
Add a new zone with the same settings as an existing one.
@ CUTOUT
Make a cutout to an existing zone.
@ ADD
Add a new zone/keepout with fresh settings.
@ TOGGLE
Action is a toggle button on the toolbar.
@ AS_GLOBAL
Global action (toolbar/main menu event, global shortcut)
Definition: tool_action.h:49
@ AS_CONTEXT
Action belongs to a particular tool (i.e. a part of a pop-up menu)
Definition: tool_action.h:47
@ AF_ACTIVATE
Action activates a tool.
Definition: tool_action.h:56
@ AF_NOTIFY
Action is a notification (it is by default passed to all tools)
Definition: tool_action.h:57
@ AF_NONE
Definition: tool_action.h:55
@ TA_ACTION
Tool action (allows one to control tools).
Definition: tool_event.h:112
@ TC_MESSAGE
Definition: tool_event.h:58
@ MD_ALT
Definition: tool_event.h:145
@ MD_CTRL
Definition: tool_event.h:144
@ MD_SHIFT
Definition: tool_event.h:143
VECTOR2< int32_t > VECTOR2I
Definition: vector2d.h:695