KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
gerbview_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) 2017 Jon Evans <jon@craftyjon.com>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 * Copyright (C) 2023 CERN
7 *
8 * This program is free software: you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include <bitmaps.h>
23#include <tool/tool_action.h>
24#include <tool/tool_manager.h>
26
27
28// Actions, being statically-defined, require specialized I18N handling. We continue to
29// use the _() macro so that string harvesting by the I18N framework doesn't have to be
30// specialized, but we don't translate on initialization and instead do it in the getters.
31
32#undef _
33#define _(s) s
34
35
36// GERBVIEW_CONTROL
37//
39 .Name( "gerbview.Control.openAutodetected" )
40 .Scope( AS_GLOBAL )
41 .FriendlyName( _( "Open Autodetected File(s)..." ) )
42 .Tooltip( _( "Open Autodetected file(s) on a new layer." ) )
43 .Icon( BITMAPS::load_gerber ) );
44
46 .Name( "gerbview.Control.openGerber" )
47 .Scope( AS_GLOBAL )
48 .FriendlyName( _( "Open Gerber Plot File(s)..." ) )
49 .Tooltip( _( "Open Gerber plot file(s) on a new layer." ) )
50 .Icon( BITMAPS::load_gerber ) );
51
53 .Name( "gerbview.Control.openDrillFile" )
54 .Scope( AS_GLOBAL )
55 .FriendlyName( _( "Open Excellon Drill File(s)..." ) )
56 .Tooltip( _( "Open Excellon drill file(s) on a new layer." ) )
57 .Icon( BITMAPS::load_drill ) );
58
60 .Name( "gerbview.Control.openJobFile" )
61 .Scope( AS_GLOBAL )
62 .FriendlyName( _( "Open Gerber Job File..." ) )
63 .Tooltip( _( "Open a Gerber job file and its associated gerber plot files" ) )
64 .Icon( BITMAPS::file_gerber_job ) );
65
67 .Name( "gerbview.Control.openZipFile" )
68 .Scope( AS_GLOBAL )
69 .FriendlyName( _( "Open Zip Archive File..." ) )
70 .Tooltip( _( "Open a zipped archive (Gerber and Drill) file" ) )
71 .Icon( BITMAPS::zip ) );
72
74 .Name( "gerbview.Control.toggleLayerManager" )
75 .Scope( AS_GLOBAL )
76 .FriendlyName( _( "Show Layers Manager" ) )
77 .ToolbarState( TOOLBAR_STATE::TOGGLE )
78 .Icon( BITMAPS::layers_manager ) );
79
81 .Name( "gerbview.Inspection.showDCodes" )
82 .Scope( AS_GLOBAL )
83 .FriendlyName( _( "List DCodes..." ) )
84 .Tooltip( _( "List D-codes defined in Gerber files" ) )
86
88 .Name( "gerbview.Inspection.showSource" )
89 .Scope( AS_GLOBAL )
90 .FriendlyName( _( "Show Source..." ) )
91 .Tooltip( _( "Show source file for the current layer" ) )
92 .Icon( BITMAPS::tools ) );
93
95 .Name( "gerbview.Control.exportToPcbnew" )
96 .Scope( AS_GLOBAL )
97 .FriendlyName( _( "Export to PCB Editor..." ) )
98 .Tooltip( _( "Export data as a KiCad PCB file" ) )
100
102 .Name( "gerbview.Control.clearLayer" )
103 .Scope( AS_GLOBAL )
104 .FriendlyName( _( "Clear Current Layer..." ) )
105 .Icon( BITMAPS::delete_sheet ) );
106
108 .Name( "gerbview.Control.clearAllLayers" )
109 .Scope( AS_GLOBAL )
110 .FriendlyName( _( "Clear All Layers" ) )
111 .Icon( BITMAPS::delete_gerber ) );
112
114 .Name( "gerbview.Control.reloadAllLayers" )
115 .Scope( AS_GLOBAL )
116 .FriendlyName( _( "Reload All Layers" ) )
117 .Icon( BITMAPS::reload ) );
118
120 .Name( "gerbview.Control.layerChanged" )
121 .Scope( AS_GLOBAL )
122 .Flags( AF_NOTIFY ) );
123
125 .Name( "gerbview.Control.highlightClear" )
126 .Scope( AS_GLOBAL )
127 .FriendlyName( _( "Clear Highlight" ) )
128 .Icon( BITMAPS::cancel ) );
129
131 .Name( "gerbview.Control.highlightNet" )
132 .Scope( AS_GLOBAL )
133 .FriendlyName( _( "Highlight Net" ) )
134 .Icon( BITMAPS::general_ratsnest ) );
135
137 .Name( "gerbview.Control.highlightComponent" )
138 .Scope( AS_GLOBAL )
139 .FriendlyName( _( "Highlight Component" ) )
140 .Icon( BITMAPS::module ) );
141
143 .Name( "gerbview.Control.highlightAttribute" )
144 .Scope( AS_GLOBAL )
145 .FriendlyName( _( "Highlight Attribute" ) )
146 .Icon( BITMAPS::flag ) );
147
149 .Name( "gerbview.Control.highlightDCode" )
150 .Scope( AS_GLOBAL )
151 .FriendlyName( _( "Highlight DCode" ) )
152 .Icon( BITMAPS::show_dcodenumber ) );
153
155 .Name( "gerbview.Control.layerNext" )
156 .Scope( AS_GLOBAL )
157 .DefaultHotkey( WXK_PAGEDOWN )
158 .LegacyHotkeyName( "Switch to Next Layer" )
159 .FriendlyName( _( "Next Layer" ) ) );
160
162 .Name( "gerbview.Control.layerPrev" )
163 .Scope( AS_GLOBAL )
164 .DefaultHotkey( WXK_PAGEUP )
165 .LegacyHotkeyName( "Switch to Previous Layer" )
166 .FriendlyName( _( "Previous Layer" ) ) );
167
169 .Name( "gerbview.Control.moveLayerUp" )
170 .Scope( AS_GLOBAL )
171 .DefaultHotkey( '+' )
172 .FriendlyName( _( "Move Layer Up" ) )
173 .Icon( BITMAPS::up ) );
174
176 .Name( "gerbview.Control.moveLayerDown" )
177 .Scope( AS_GLOBAL )
178 .DefaultHotkey( '-' )
179 .FriendlyName( _( "Move Layer Down" ) )
180 .Icon( BITMAPS::down ) );
181
183 .Name( "gerbview.Control.linesDisplayOutlines" )
184 .Scope( AS_GLOBAL )
185 .DefaultHotkey( 'L' )
186 .LegacyHotkeyName( "Gbr Lines Display Mode" )
187 .FriendlyName( _( "Sketch Lines" ) )
188 .Tooltip( _( "Show lines in outline mode" ) )
189 .ToolbarState( TOOLBAR_STATE::TOGGLE )
190 .Icon( BITMAPS::showtrack ) );
191
193 .Name( "gerbview.Control.flashedDisplayOutlines" )
194 .Scope( AS_GLOBAL )
195 .DefaultHotkey( 'F' )
196 .LegacyHotkeyName( "Gbr Flashed Display Mode" )
197 .FriendlyName( _( "Sketch Flashed Items" ) )
198 .Tooltip( _( "Show flashed items in outline mode" ) )
199 .ToolbarState( TOOLBAR_STATE::TOGGLE )
200 .Icon( BITMAPS::pad_sketch ) );
201
203 .Name( "gerbview.Control.polygonsDisplayOutlines" )
204 .Scope( AS_GLOBAL )
205 .DefaultHotkey( 'P' )
206 .LegacyHotkeyName( "Gbr Polygons Display Mode" )
207 .FriendlyName( _( "Sketch Polygons" ) )
208 .Tooltip( _( "Show polygons in outline mode" ) )
209 .ToolbarState( TOOLBAR_STATE::TOGGLE )
210 .Icon( BITMAPS::opt_show_polygon ) );
211
213 .Name( "gerbview.Control.negativeObjectDisplay" )
214 .Scope( AS_GLOBAL )
215 .LegacyHotkeyName( "Gbr Negative Obj Display Mode" )
216 .FriendlyName( _( "Ghost Negative Objects" ) )
217 .Tooltip( _( "Show negative objects in ghost color" ) )
218 .ToolbarState( TOOLBAR_STATE::TOGGLE )
220
222 .Name( "gerbview.Control.dcodeDisplay" )
223 .Scope( AS_GLOBAL )
224 .DefaultHotkey( 'D' )
225 .LegacyHotkeyName( "DCodes Display Mode" )
226 .FriendlyName( _( "Show DCodes" ) )
227 .Tooltip( _( "Show dcode numbers" ) )
228 .ToolbarState( TOOLBAR_STATE::TOGGLE )
229 .Icon( BITMAPS::show_dcodenumber ) );
230
232 .Name( "gerbview.Control.toggleForceOpacityMode" )
233 .Scope( AS_GLOBAL )
234 .FriendlyName( _( "Show with Forced Opacity Mode" ) )
235 .Tooltip( _( "Show layers using opacity color forced mode" ) )
236 .ToolbarState( TOOLBAR_STATE::TOGGLE )
237 .Icon( BITMAPS::gbr_select_mode1 ) );
238
240 .Name( "gerbview.Control.toggleXORMode" )
241 .Scope( AS_GLOBAL )
242 .FriendlyName( _( "Show in XOR Mode" ) )
243 .Tooltip( _( "Show layers in exclusive-or compare mode" ) )
244 .ToolbarState( TOOLBAR_STATE::TOGGLE )
245 .Icon( BITMAPS::gbr_select_mode2 ) );
246
248 .Name( "gerbview.Control.flipGerberView" )
249 .Scope( AS_GLOBAL )
250 .FriendlyName( _( "Flip Gerber View" ) )
251 .Tooltip( _( "Show as mirror image" ) )
252 .ToolbarState( TOOLBAR_STATE::TOGGLE )
253 .Icon( BITMAPS::flip_board ) );
254
255
256// Drag and drop
257//
259 .Name( "gerbview.Control.loadZipFile" )
260 .Scope( AS_GLOBAL ) );
261
263 .Name( "gerbview.Control.loadGerbFiles" )
264 .Scope( AS_GLOBAL ) );
@ gerbview_show_negative_objects
@ gbr_select_mode2
@ general_ratsnest
@ delete_gerber
@ show_dcodenumber
@ delete_sheet
@ file_gerber_job
@ layers_manager
@ gbr_select_mode1
@ opt_show_polygon
@ export_to_pcbnew
static TOOL_ACTION dcodeDisplay
static TOOL_ACTION negativeObjectDisplay
static TOOL_ACTION flashedDisplayOutlines
static TOOL_ACTION highlightAttribute
static TOOL_ACTION exportToPcbnew
static TOOL_ACTION showDCodes
static TOOL_ACTION highlightNet
static TOOL_ACTION toggleXORMode
static TOOL_ACTION loadZipFile
static TOOL_ACTION toggleLayerManager
static TOOL_ACTION openGerber
static TOOL_ACTION clearAllLayers
static TOOL_ACTION layerNext
static TOOL_ACTION flipGerberView
static TOOL_ACTION openAutodetected
static TOOL_ACTION reloadAllLayers
static TOOL_ACTION toggleForceOpacityMode
static TOOL_ACTION linesDisplayOutlines
static TOOL_ACTION layerPrev
static TOOL_ACTION openDrillFile
static TOOL_ACTION polygonsDisplayOutlines
static TOOL_ACTION highlightComponent
static TOOL_ACTION openZipFile
static TOOL_ACTION highlightDCode
static TOOL_ACTION showSource
static TOOL_ACTION moveLayerUp
static TOOL_ACTION moveLayerDown
static TOOL_ACTION layerChanged
static TOOL_ACTION loadGerbFiles
static TOOL_ACTION openJobFile
static TOOL_ACTION clearLayer
static TOOL_ACTION highlightClear
Build up the properties of a TOOL_ACTION in an incremental manner that is static-construction safe.
Definition: tool_action.h:118
Represent a single user action.
Definition: tool_action.h:304
#define _(s)
@ TOGGLE
Action is a toggle button on the toolbar.
@ AS_GLOBAL
Global action (toolbar/main menu event, global shortcut)
Definition: tool_action.h:49
@ AF_NOTIFY
Action is a notification (it is by default passed to all tools)
Definition: tool_action.h:57