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 The 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, see <https://www.gnu.org/licenses/>.
19 */
20
21#include <tool/tool_action.h>
22#include <bitmaps.h>
23#include <eda_item.h>
25
26#include "tools/pl_actions.h"
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// PL_DRAWING_TOOLS
37//
39 .Name( "plEditor.InteractiveDrawing.drawLine" )
40 .Scope( AS_GLOBAL )
41 .FriendlyName( _( "Draw Lines" ) )
42 .ToolbarState( TOOLBAR_STATE::TOGGLE )
44 .Flags( AF_ACTIVATE )
45 .Parameter( DS_DATA_ITEM::DS_SEGMENT ) );
46
48 .Name( "plEditor.InteractiveDrawing.drawRectangle" )
49 .Scope( AS_GLOBAL )
50 .FriendlyName( _( "Draw Rectangles" ) )
51 .ToolbarState( TOOLBAR_STATE::TOGGLE )
53 .Flags( AF_ACTIVATE )
54 .Parameter( DS_DATA_ITEM::DS_RECT ) );
55
57 .Name( "plEditor.InteractiveDrawing.placeText" )
58 .Scope( AS_GLOBAL )
59 .FriendlyName( _( "Draw Text" ) )
60 .ToolbarState( TOOLBAR_STATE::TOGGLE )
61 .Icon( BITMAPS::text )
62 .Flags( AF_ACTIVATE )
63 .Parameter( DS_DATA_ITEM::DS_TEXT ) );
64
66 .Name( "plEditor.InteractiveDrawing.placeImage" )
67 .Scope( AS_GLOBAL )
68 .FriendlyName( _( "Place Bitmaps" ) )
69 .ToolbarState( TOOLBAR_STATE::TOGGLE )
70 .Icon( BITMAPS::image )
71 .Flags( AF_ACTIVATE )
72 .Parameter( DS_DATA_ITEM::DS_BITMAP ) );
73
74
75// PL_EDIT_TOOL
76//
78 .Name( "plEditor.InteractiveMove.move" )
79 .Scope( AS_GLOBAL )
80 .DefaultHotkey( 'M' )
81 .LegacyHotkeyName( "Move Item" )
82 .FriendlyName( _( "Move" ) )
83 .Icon( BITMAPS::move )
84 .Flags( AF_ACTIVATE ) );
85
87 .Name( "plEditor.InteractiveEdit.appendWorksheet" )
88 .Scope( AS_GLOBAL )
89 .FriendlyName( _( "Append Existing Drawing Sheet..." ) )
90 .Tooltip( _( "Append an existing drawing sheet file to the current file" ) )
91 .ToolbarState( TOOLBAR_STATE::TOGGLE )
92 .Icon( BITMAPS::import )
93 .Flags( AF_ACTIVATE ) );
94
95
96// PL_EDITOR_CONTROL
97//
99 .Name( "plEditor.EditorControl.ShowInspector" )
100 .Scope( AS_GLOBAL )
101 .FriendlyName( _( "Show Design Inspector" ) )
102 .Icon( BITMAPS::spreadsheet ) );
103
105 .Name( "plEditor.EditorControl.PreviewSettings" )
106 .Scope( AS_GLOBAL )
107 .FriendlyName( _( "Page Preview Settings..." ) )
108 .Tooltip( _( "Edit preview data for page size and title block" ) )
109 .Icon( BITMAPS::sheetset ) );
110
112 .Name( "plEditor.EditorControl.LayoutNormalMode" )
113 .Scope( AS_GLOBAL )
114 .FriendlyName( _( "Show Title Block in Preview Mode" ) )
115 .Tooltip( _( "Text placeholders will be replaced with preview data" ) )
116 .ToolbarState( TOOLBAR_STATE::TOGGLE )
118
120 .Name( "plEditor.EditorControl.LayoutEditMode" )
121 .Scope( AS_GLOBAL )
122 .FriendlyName( _( "Show Title Block in Edit Mode" ) )
123 .Tooltip( _( "Text placeholders are shown as ${keyword} tokens" ) )
124 .ToolbarState( TOOLBAR_STATE::TOGGLE )
@ pagelayout_normal_view_mode
@ add_rectangle
@ pagelayout_special_view_mode
@ add_graphical_segments
static TOOL_ACTION placeImage
Definition pl_actions.h:37
static TOOL_ACTION drawRectangle
Definition pl_actions.h:38
static TOOL_ACTION showInspector
Definition pl_actions.h:50
static TOOL_ACTION previewSettings
Definition pl_actions.h:51
static TOOL_ACTION layoutNormalMode
Definition pl_actions.h:45
static TOOL_ACTION placeText
Definition pl_actions.h:36
static TOOL_ACTION layoutEditMode
Definition pl_actions.h:46
static TOOL_ACTION appendImportedDrawingSheet
Definition pl_actions.h:40
static TOOL_ACTION move
Definition pl_actions.h:43
static TOOL_ACTION drawLine
Definition pl_actions.h:39
Build up the properties of a TOOL_ACTION in an incremental manner that is static-construction safe.
Represent a single user action.
#define _(s)
@ TOGGLE
Action is a toggle button on the toolbar.
Definition tool_action.h:60
@ AS_GLOBAL
Global action (toolbar/main menu event, global shortcut)
Definition tool_action.h:45
@ AF_ACTIVATE
Action activates a tool.
Definition tool_action.h:52