KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
tool_action.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 <optional>
27#include <tool/tool_action.h>
28#include <tool/tool_event.h>
29#include <tool/action_manager.h>
30
31#include <algorithm>
32#include <bitmaps.h>
33#include <hotkeys_basic.h>
34
35#include <core/wx_stl_compat.h>
36#include <wx/string.h>
37#include <wx/translation.h>
38
39TOOL_ACTION::TOOL_ACTION( const std::string& aName, TOOL_ACTION_SCOPE aScope,
40 int aDefaultHotKey, const std::string& aLegacyHotKeyName,
41 const wxString& aLabel, const wxString& aTooltip,
42 BITMAPS aIcon, TOOL_ACTION_FLAGS aFlags ) :
43 m_name( aName ),
44 m_scope( aScope ),
45 m_group( std::nullopt ),
46 m_defaultHotKey( aDefaultHotKey ),
47 m_defaultHotKeyAlt( 0 ),
48 m_legacyName( aLegacyHotKeyName ),
49 m_menuLabel( aLabel ),
50 m_tooltip( aTooltip ),
51 m_icon( aIcon ),
52 m_id( -1 ),
53 m_flags( aFlags )
54{
55 SetHotKey( aDefaultHotKey );
56 ACTION_MANAGER::GetActionList().push_back( this );
57}
58
59
61 m_scope( AS_GLOBAL ),
62 m_group( std::nullopt ),
63 m_defaultHotKey( 0 ),
64 m_defaultHotKeyAlt( 0 ),
65 m_id( -1 ),
66 m_flags( AF_NONE )
67{
68 SetHotKey( 0 );
69}
70
71
73 m_name( aArgs.m_name.value_or( "" ) ),
74 m_scope( aArgs.m_scope.value_or( AS_CONTEXT ) ),
75 m_defaultHotKey( aArgs.m_defaultHotKey.value_or( 0 ) ),
76 m_defaultHotKeyAlt( aArgs.m_defaultHotKeyAlt.value_or( 0 ) ),
77 m_hotKey( aArgs.m_defaultHotKey.value_or( 0 ) ),
78 m_hotKeyAlt( 0 ),
79 m_legacyName( aArgs.m_legacyName.value_or( "" ) ),
80 m_friendlyName( TowxString( aArgs.m_friendlyName.value_or( "" ) ) ),
81 m_tooltip( TowxString( aArgs.m_tooltip.value_or( "" ) ) ),
82 m_id( -1 ),
83 m_uiid( std::nullopt ),
84 m_flags( aArgs.m_flags.value_or( AF_NONE ) )
85{
86 // Action name is the only mandatory part
87 assert( !m_name.empty() );
88
89 if( aArgs.m_menuText.has_value() )
90 m_menuLabel = TowxString( aArgs.m_menuText.value() );
91
92 if( aArgs.m_uiid.has_value() )
93 m_uiid = aArgs.m_uiid.value();
94
95 if( aArgs.m_param.has_value() )
96 m_param = aArgs.m_param;
97
98 if( aArgs.m_description.has_value() )
99 m_description = TowxString( aArgs.m_description.value() );
100
101 if( aArgs.m_group.has_value() )
102 m_group = aArgs.m_group;
103
104 if( aArgs.m_icon.has_value() )
105 m_icon = aArgs.m_icon.value();
106
107 if( aArgs.m_toolbarState.has_value() )
108 m_toolbarState = aArgs.m_toolbarState.value();
109
110 // If there is no icon, then the action should be hidden from the toolbar
111 if( !m_icon.has_value() )
112 m_toolbarState.set( static_cast<size_t>( TOOLBAR_STATE::HIDDEN ) );
113
114 ACTION_MANAGER::GetActionList().push_back( this );
115}
116
117
119{
120 ACTION_MANAGER::GetActionList().remove( this );
121}
122
123
125{
126 TOOL_EVENT evt;
127
128 if( IsActivation() )
130 else if( IsNotification() )
132 else
134
135 if( m_group.has_value() )
136 {
137 evt.SetActionGroup( m_group.value() );
138 }
139
140 if( m_param.has_value() )
141 evt.SetParameter( m_param );
142
143 return evt;
144}
145
146
148{
149 if( m_friendlyName.empty() )
150 return wxEmptyString;
151
152 return wxGetTranslation( m_friendlyName );
153}
154
155
157{
158 if( m_menuLabel.has_value() )
159 return wxGetTranslation( m_menuLabel.value() );
160
161 return GetFriendlyName();
162}
163
164
166{
167 wxString label = GetMenuLabel();
168 label.Replace( wxS( "&" ), wxS( "&&" ) );
169 return AddHotkeyName( label, m_hotKey, IS_HOTKEY );
170}
171
172
174{
175 // If no description provided, use the tooltip without a hotkey
176 if( !m_description.has_value() )
177 return GetTooltip( false );
178
179 return wxGetTranslation( m_description.value() );
180}
181
182
183wxString TOOL_ACTION::GetTooltip( bool aIncludeHotkey ) const
184{
185 wxString tooltip = wxGetTranslation( m_tooltip );
186
187 if( aIncludeHotkey && GetHotKey() )
188 tooltip += wxString::Format( wxT( " (%s)" ), KeyNameFromKeyCode( GetHotKey() ) );
189
190 return tooltip;
191}
192
193
195{
196 // We don't show button text so use the action name as the first line of the tooltip
197 wxString tooltip = GetFriendlyName();
198
199 if( GetHotKey() )
200 tooltip += wxString::Format( wxT( " (%s)" ), KeyNameFromKeyCode( GetHotKey() ) );
201
202 if( !GetTooltip( false ).IsEmpty() )
203 tooltip += '\n' + GetTooltip( false );
204
205 return tooltip;
206}
207
208
209void TOOL_ACTION::SetHotKey( int aKeycode, int aKeycodeAlt )
210{
211 m_hotKey = aKeycode;
212 m_hotKeyAlt = aKeycodeAlt;
213}
214
215
216std::string TOOL_ACTION::GetToolName() const
217{
218 int dotCount = std::count( m_name.begin(), m_name.end(), '.' );
219
220 switch( dotCount )
221 {
222 case 0:
223 assert( false ); // Invalid action name format
224 return "";
225
226 case 1:
227 return m_name;
228
229 case 2:
230 return m_name.substr( 0, m_name.rfind( '.' ) );
231
232 default:
233 assert( false ); // TODO not implemented
234 return "";
235 }
236}
BITMAPS
A list of all bitmap identifiers.
Definition: bitmaps_list.h:33
static std::list< TOOL_ACTION * > & GetActionList()
Return list of TOOL_ACTIONs.
Build up the properties of a TOOL_ACTION in an incremental manner that is static-construction safe.
Definition: tool_action.h:118
std::optional< std::string_view > m_description
Definition: tool_action.h:281
std::optional< int > m_uiid
Definition: tool_action.h:273
std::optional< TOOL_ACTION_GROUP > m_group
Definition: tool_action.h:285
std::optional< BITMAPS > m_icon
Definition: tool_action.h:283
std::optional< TOOLBAR_STATE_FLAGS > m_toolbarState
Definition: tool_action.h:287
std::optional< std::string_view > m_menuText
Definition: tool_action.h:279
std::optional< wxString > m_description
Description of the action.
Definition: tool_action.h:504
wxString GetMenuLabel() const
Return the translated label for the action.
wxString GetTooltip(bool aIncludeHotkey=true) const
std::optional< wxString > m_menuLabel
Menu label.
Definition: tool_action.h:502
TOOL_ACTION_SCOPE m_scope
Definition: tool_action.h:489
bool IsActivation() const
Return true if the action is intended to activate a tool.
Definition: tool_action.h:441
void SetHotKey(int aKeycode, int aKeycodeAlt=0)
std::string GetToolName() const
Return name of the tool associated with the action.
std::optional< int > m_uiid
ID to use when interacting with the UI (if empty, generate one).
Definition: tool_action.h:509
wxString m_friendlyName
User-friendly name.
Definition: tool_action.h:501
bool IsNotification() const
Return true if the action is a notification.
Definition: tool_action.h:449
std::optional< BITMAPS > m_icon
Icon for the menu entry.
Definition: tool_action.h:506
wxString m_tooltip
User facing tooltip help text.
Definition: tool_action.h:503
int m_hotKeyAlt
The alternate hotkey (post-user-settings-application).
Definition: tool_action.h:498
TOOLBAR_STATE_FLAGS m_toolbarState
Toolbar state behavior for the action.
Definition: tool_action.h:511
wxString GetDescription() const
wxString GetMenuItem() const
int GetHotKey() const
Return the hotkey keycode which initiates the action.
Definition: tool_action.h:348
ki::any m_param
Generic parameter.
Definition: tool_action.h:514
int m_hotKey
The current hotkey (post-user-settings-application).
Definition: tool_action.h:495
TOOL_EVENT MakeEvent() const
Return the event associated with the action (i.e.
std::string m_name
Name of the action (convention is "app.tool.actionName")
Definition: tool_action.h:488
wxString GetFriendlyName() const
Return the translated user-friendly name of the action.
wxString GetButtonTooltip() const
std::optional< TOOL_ACTION_GROUP > m_group
Optional group for the action to belong to.
Definition: tool_action.h:491
Generic, UI-independent tool event.
Definition: tool_event.h:168
void SetActionGroup(const TOOL_ACTION_GROUP &aGroup)
Definition: tool_event.h:535
void SetParameter(T aParam)
Set a non-standard parameter assigned to the event.
Definition: tool_event.h:520
bool has_value() const noexcept
Report whether there is a contained object or not.
Definition: ki_any.h:312
wxString AddHotkeyName(const wxString &aText, int aHotKey, HOTKEY_ACTION_TYPE aStyle)
wxString KeyNameFromKeyCode(int aKeycode, bool *aIsFound)
Return the key name from the key code.
@ IS_HOTKEY
Definition: hotkeys_basic.h:81
STL namespace.
TOOL_ACTION_SCOPE
Scope of tool actions.
Definition: tool_action.h:46
@ 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
TOOL_ACTION_FLAGS
Flags for tool actions.
Definition: tool_action.h:54
@ AF_NONE
Definition: tool_action.h:55
@ TA_ACTIVATE
Tool activation event.
Definition: tool_event.h:115
@ TA_ACTION
Tool action (allows one to control tools).
Definition: tool_event.h:112
@ TA_NONE
Definition: tool_event.h:66
@ TC_COMMAND
Definition: tool_event.h:57
@ TC_MESSAGE
Definition: tool_event.h:58
wxString TowxString(const std::string_view &view)