KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pl_actions.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2019-2023 CERN
5 * Copyright (C) 2019-2023 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#include <tool/tool_action.h>
26#include <bitmaps.h>
27#include <eda_item.h>
29
30#include "tools/pl_actions.h"
31
32// Actions, being statically-defined, require specialized I18N handling. We continue to
33// use the _() macro so that string harvesting by the I18N framework doesn't have to be
34// specialized, but we don't translate on initialization and instead do it in the getters.
35
36#undef _
37#define _(s) s
38
39
40// PL_DRAWING_TOOLS
41//
43 .Name( "plEditor.InteractiveDrawing.drawLine" )
44 .Scope( AS_GLOBAL )
45 .FriendlyName( _( "Add Line" ) )
46 .Tooltip( _( "Add a line" ) )
48 .Flags( AF_ACTIVATE )
49 .Parameter( DS_DATA_ITEM::DS_SEGMENT ) );
50
52 .Name( "plEditor.InteractiveDrawing.drawRectangle" )
53 .Scope( AS_GLOBAL )
54 .FriendlyName( _( "Add Rectangle" ) )
55 .Tooltip( _( "Add a rectangle" ) )
57 .Flags( AF_ACTIVATE )
58 .Parameter( DS_DATA_ITEM::DS_RECT ) );
59
61 .Name( "plEditor.InteractiveDrawing.placeText" )
62 .Scope( AS_GLOBAL )
63 .FriendlyName( _( "Add Text" ) )
64 .Tooltip( _( "Add a text item" ) )
65 .Icon( BITMAPS::text )
66 .Flags( AF_ACTIVATE )
67 .Parameter( DS_DATA_ITEM::DS_TEXT ) );
68
70 .Name( "plEditor.InteractiveDrawing.placeImage" )
71 .Scope( AS_GLOBAL )
72 .FriendlyName( _( "Add Bitmap" ) )
73 .Tooltip( _( "Add a bitmap image" ) )
74 .Icon( BITMAPS::image )
75 .Flags( AF_ACTIVATE )
76 .Parameter( DS_DATA_ITEM::DS_BITMAP ) );
77
78
79// PL_EDIT_TOOL
80//
82 .Name( "plEditor.InteractiveMove.move" )
83 .Scope( AS_GLOBAL )
84 .DefaultHotkey( 'M' )
85 .LegacyHotkeyName( "Move Item" )
86 .FriendlyName( _( "Move" ) )
87 .Tooltip( _( "Moves the selected item(s)" ) )
88 .Icon( BITMAPS::move )
89 .Flags( AF_ACTIVATE ) );
90
92 .Name( "plEditor.InteractiveEdit.appendWorksheet" )
93 .Scope( AS_GLOBAL )
94 .FriendlyName( _( "Append Existing Drawing Sheet..." ) )
95 .Tooltip( _( "Append an existing drawing sheet file to current file" ) )
96 .Icon( BITMAPS::import )
97 .Flags( AF_ACTIVATE ) );
98
99
100// PL_EDITOR_CONTROL
101//
103 .Name( "plEditor.EditorControl.ShowInspector" )
104 .Scope( AS_GLOBAL )
105 .FriendlyName( _( "Show Design Inspector" ) )
106 .Tooltip( _( "Show the list of items in the drawing sheet" ) )
107 .Icon( BITMAPS::spreadsheet ) );
108
110 .Name( "plEditor.EditorControl.PreviewSettings" )
111 .Scope( AS_GLOBAL )
112 .FriendlyName( _( "Page Preview Settings..." ) )
113 .Tooltip( _( "Edit preview data for page size and title block" ) )
114 .Icon( BITMAPS::sheetset ) );
115
117 .Name( "plEditor.EditorControl.LayoutNormalMode" )
118 .Scope( AS_GLOBAL )
119 .FriendlyName( _( "Show Title Block in Preview Mode" ) )
120 .Tooltip( _( "Text placeholders will be replaced with preview data" ) )
122
124 .Name( "plEditor.EditorControl.LayoutEditMode" )
125 .Scope( AS_GLOBAL )
126 .FriendlyName( _( "Show Title Block in Edit Mode" ) )
127 .Tooltip( _( "Text placeholders are shown as ${keyword} tokens" ) )
129
130
131// PL_SELECTION_TOOL
132//
134 .Name( "plEditor.InteractiveSelection" )
135 .Scope( AS_GLOBAL )
136 .Flags( AF_ACTIVATE ) );
137
139 .Name( "plEditor.InteractiveSelection.SelectionMenu" )
140 .Scope( AS_GLOBAL ) );
141
143 .Name( "plEditor.InteractiveSelection.AddItemToSel" )
144 .Scope( AS_GLOBAL ) );
145
147 .Name( "plEditor.InteractiveSelection.AddItemsToSel" )
148 .Scope( AS_GLOBAL ) );
149
151 .Name( "plEditor.InteractiveSelection.RemoveItemFromSel" )
152 .Scope( AS_GLOBAL ) );
153
155 .Name( "plEditor.InteractiveSelection.RemoveItemsFromSel" )
156 .Scope( AS_GLOBAL ) );
157
159 .Name( "plEditor.InteractiveSelection.ClearSelection" )
160 .Scope( AS_GLOBAL ) );
161
162
@ pagelayout_normal_view_mode
@ add_rectangle
@ pagelayout_special_view_mode
@ add_graphical_segments
static TOOL_ACTION clearSelection
Clear the current selection.
Definition: pl_actions.h:43
static TOOL_ACTION placeImage
Definition: pl_actions.h:59
static TOOL_ACTION selectionActivate
Activation of the selection tool.
Definition: pl_actions.h:40
static TOOL_ACTION selectionMenu
Run a selection menu to select from a list of items.
Definition: pl_actions.h:54
static TOOL_ACTION drawRectangle
Definition: pl_actions.h:60
static TOOL_ACTION showInspector
Definition: pl_actions.h:72
static TOOL_ACTION previewSettings
Definition: pl_actions.h:73
static TOOL_ACTION removeItemFromSel
Definition: pl_actions.h:47
static TOOL_ACTION layoutNormalMode
Definition: pl_actions.h:67
static TOOL_ACTION addItemsToSel
Select a list of items (specified as the event parameter)
Definition: pl_actions.h:50
static TOOL_ACTION removeItemsFromSel
Definition: pl_actions.h:51
static TOOL_ACTION addItemToSel
Select an item (specified as the event parameter).
Definition: pl_actions.h:46
static TOOL_ACTION placeText
Definition: pl_actions.h:58
static TOOL_ACTION layoutEditMode
Definition: pl_actions.h:68
static TOOL_ACTION appendImportedDrawingSheet
Definition: pl_actions.h:62
static TOOL_ACTION move
Definition: pl_actions.h:65
static TOOL_ACTION drawLine
Definition: pl_actions.h:61
Build up the properties of a TOOL_ACTION in an incremental manner that is static-construction safe.
Definition: tool_action.h:102
Represent a single user action.
Definition: tool_action.h:269
#define _(s)
Definition: pl_actions.cpp:37
@ AS_GLOBAL
Global action (toolbar/main menu event, global shortcut)
Definition: tool_action.h:48
@ AF_ACTIVATE
Action activates a tool.
Definition: tool_action.h:55