KiCad PCB EDA Suite
Loading...
Searching...
No Matches
common_control.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) 2014-2016 CERN
5 * Copyright (C) 2021-2022 KiCad Developers, see AUTHORS.txt for contributors.
6 * @author Maciej Suminski <[email protected]>
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// kicad_curl_easy.h must be included before wxWidgets because on Windows (msys2), there are
26// collision with wx headers and curl.h defs
28
29#include <bitmaps.h>
30#include <build_version.h>
31#include <common.h> // for SearchHelpFileFullPath
32#include <pgm_base.h>
33#include <tool/actions.h>
34#include <tool/tool_manager.h>
35#include <eda_draw_frame.h>
36#include <view/view.h>
38#include <base_screen.h>
39#include <tool/common_control.h>
40#include <id.h>
41#include <kiface_base.h>
43#include <eda_doc.h>
44#include <wx/msgdlg.h>
45
46#define URL_GET_INVOLVED wxS( "https://kicad.org/contribute/" )
47#define URL_DONATE wxS( "https://go.kicad.org/app-donate" )
48#define URL_DOCUMENTATION wxS( "https://docs.kicad.org/" )
49
50
53 wxS( "https://gitlab.com/kicad/code/kicad/-/issues/new?issuable_template=bare&issue[description]=%s" );
54
55
58 "```\n"
59 "%s\n"
60 "```" );
61
62
64{
65 m_frame = getEditFrame<EDA_BASE_FRAME>();
66}
67
68
70{
71 wxCommandEvent dummy;
72
74
75 return 0;
76}
77
78
80{
81 // If _pcbnew.kiface is running have it put up the dialog so the 3D paths can also
82 // be edited
84
85 if( pcbnew )
86 {
87 try
88 {
89 pcbnew->CreateKiWindow( m_frame, DIALOG_CONFIGUREPATHS, &m_frame->Kiway() );
90 }
91 catch( ... )
92 {
93 // Do nothing here.
94 // A error message is displayed after trying to load _pcbnew.kiface.
95 }
96 }
97 else
98 {
100
101 if( dlg.ShowModal() == wxID_OK )
102 m_frame->Kiway().CommonSettingsChanged( true, false );
103 }
104
105 return 0;
106}
107
108
110{
112 {
113 try // Sch frame was not available, try to start it
114 {
116
117 if( kiface )
118 kiface->CreateKiWindow( m_frame, DIALOG_SCH_LIBRARY_TABLE, &m_frame->Kiway() );
119 }
120 catch( ... )
121 {
122 // _eeschema.kiface is not available: it contains the library table dialog.
123 // Do nothing here.
124 // A error message is displayed after trying to load _eeschema.kiface.
125 }
126 }
127 else if( aEvent.IsAction( &ACTIONS::showFootprintLibTable ) )
128 {
129
130 try // Pcb frame was not available, try to start it
131 {
133
134 if( kiface )
135 kiface->CreateKiWindow( m_frame, DIALOG_PCB_LIBRARY_TABLE, &m_frame->Kiway() );
136 }
137 catch( ... )
138 {
139 // _pcbnew.kiface is not available: it contains the library table dialog.
140 // Do nothing here.
141 // A error message is displayed after trying to load _pcbnew.kiface.
142 }
143 }
144
145 return 0;
146}
147
148
150{
151 FRAME_T playerType = aEvent.Parameter<FRAME_T>();
152 KIWAY_PLAYER* editor = m_frame->Kiway().Player( playerType, true );
153
154 // editor can be null if Player() fails:
155 wxCHECK_MSG( editor != nullptr, 0, wxT( "Cannot open/create the editor frame" ) );
156
157 // Needed on Windows, other platforms do not use it, but it creates no issue
158 if( editor->IsIconized() )
159 editor->Iconize( false );
160
161 editor->Raise();
162
163 // Raising the window does not set the focus on Linux. This should work on
164 // any platform.
165 if( wxWindow::FindFocus() != editor )
166 editor->SetFocus();
167
168 // If the player is currently blocked, focus the user attention on the correct window
169 if( wxWindow* blocking_win = editor->Kiway().GetBlockingDialog() )
170 {
171 blocking_win->Raise();
172 blocking_win->SetFocus();
173 }
174
175 return 0;
176}
177
178
180{
181 wxString helpFile;
182 wxString msg;
183
184 // the URL of help files is "https://docs.kicad.org/<version>/<language>/<name>/"
185 const wxString baseUrl = URL_DOCUMENTATION + GetMajorMinorVersion() + wxT( "/" )
186 + Pgm().GetLocale()->GetName().BeforeLast( '_' ) + wxT( "/" );
187
188 /* We have to get document for beginners,
189 * or the full specific doc
190 * if event id is wxID_INDEX, we want the document for beginners.
191 * else the specific doc file (its name is in Kiface().GetHelpFileName())
192 * The document for beginners is the same for all KiCad utilities
193 */
194 if( aEvent.IsAction( &ACTIONS::gettingStarted ) )
195 {
196 // List of possible names for Getting Started in KiCad
197 const wxChar* names[2] = {
198 wxT( "getting_started_in_kicad" ),
199 wxT( "Getting_Started_in_KiCad" )
200 };
201
202 // Search for "getting_started_in_kicad.html" or "getting_started_in_kicad.pdf"
203 // or "Getting_Started_in_KiCad.html" or "Getting_Started_in_KiCad.pdf"
204 for( auto& name : names )
205 {
206 helpFile = SearchHelpFileFullPath( name );
207
208 if( !helpFile.IsEmpty() )
209 break;
210 }
211
212 if( !helpFile )
213 {
214 msg = wxString::Format( _( "Help file '%s' or\n'%s' could not be found.\n"
215 "Do you want to access the KiCad online help?" ),
216 names[0], names[1] );
217 wxMessageDialog dlg( nullptr, msg, _( "File Not Found" ),
218 wxYES_NO | wxNO_DEFAULT | wxCANCEL );
219
220 if( dlg.ShowModal() != wxID_YES )
221 return -1;
222
223 helpFile = baseUrl + names[0] + wxS( "/" );
224 }
225 }
226 else
227 {
228 wxString base_name = m_frame->help_name();
229
230 helpFile = SearchHelpFileFullPath( base_name );
231
232 if( !helpFile )
233 {
234 msg = wxString::Format( _( "Help file '%s' could not be found.\n"
235 "Do you want to access the KiCad online help?" ),
236 base_name );
237 wxMessageDialog dlg( nullptr, msg, _( "File Not Found" ),
238 wxYES_NO | wxNO_DEFAULT | wxCANCEL );
239
240 if( dlg.ShowModal() != wxID_YES )
241 return -1;
242
243 helpFile = baseUrl + base_name + wxS( "/" );
244 }
245 }
246
247 GetAssociatedDocument( m_frame, helpFile, &m_frame->Prj() );
248 return 0;
249}
250
251
253{
255 return 0;
256}
257
258
260{
261 if( !wxLaunchDefaultBrowser( URL_GET_INVOLVED ) )
262 {
263 wxString msg;
264 msg.Printf( _( "Could not launch the default browser.\n"
265 "For information on how to help the KiCad project, visit %s" ),
267 wxMessageBox( msg, _( "Get involved with KiCad" ), wxOK, m_frame );
268 }
269
270 return 0;
271}
272
273
275{
276 if( !wxLaunchDefaultBrowser( URL_DONATE ) )
277 {
278 wxString msg;
279 msg.Printf( _( "Could not launch the default browser.\n"
280 "To donate to the KiCad project, visit %s" ),
281 URL_DONATE );
282 wxMessageBox( msg, _( "Donate to KiCad" ), wxOK, m_frame );
283 }
284
285 return 0;
286}
287
288
290{
292 return 0;
293
294 wxString version = GetVersionInfoData( m_frame->GetUntranslatedAboutTitle(), false, true );
295
296 wxString message;
297 message.Printf( m_bugReportTemplate, version );
298
299 KICAD_CURL_EASY kcurl;
300 wxString url_string;
301 url_string.Printf( m_bugReportUrl, kcurl.Escape( std::string( message.utf8_str() ) ) );
302
303 wxLaunchDefaultBrowser( url_string );
304
305 return 0;
306}
307
308
310{
319
326}
327
328
const char * name
Definition: DXF_plotter.cpp:56
BASE_SCREEN class implementation.
wxString GetMajorMinorVersion()
Get only the major and minor version in a string major.minor.
wxString GetVersionInfoData(const wxString &aTitle, bool aHtml, bool aBrief)
Create a version info string for bug reports and the about dialog.
static TOOL_ACTION reportBug
Cursor control event types.
Definition: actions.h:188
static TOOL_ACTION showSymbolLibTable
Definition: actions.h:181
static TOOL_ACTION showSymbolEditor
Definition: actions.h:165
static TOOL_ACTION showSymbolBrowser
Definition: actions.h:164
static TOOL_ACTION donate
Definition: actions.h:186
static TOOL_ACTION listHotKeys
Definition: actions.h:185
static TOOL_ACTION openPreferences
Definition: actions.h:179
static TOOL_ACTION getInvolved
Definition: actions.h:187
static TOOL_ACTION showFootprintLibTable
Definition: actions.h:182
static TOOL_ACTION showFootprintEditor
Definition: actions.h:167
static TOOL_ACTION configurePaths
Definition: actions.h:180
static TOOL_ACTION gettingStarted
Definition: actions.h:183
static TOOL_ACTION showFootprintBrowser
Definition: actions.h:166
static TOOL_ACTION help
Definition: actions.h:184
int ConfigurePaths(const TOOL_EVENT &aEvent)
int ShowHelp(const TOOL_EVENT &aEvent)
EDA_BASE_FRAME * m_frame
< Pointer to the currently used edit frame.
int ShowLibraryTable(const TOOL_EVENT &aEvent)
int ListHotKeys(const TOOL_EVENT &aEvent)
static wxString m_bugReportUrl
URL to launch a new issue with pre-populated description.
int GetInvolved(const TOOL_EVENT &aEvent)
int ReportBug(const TOOL_EVENT &aEvent)
Sets up handlers for various events.
int ShowPlayer(const TOOL_EVENT &aEvent)
int Donate(const TOOL_EVENT &aEvent)
void Reset(RESET_REASON aReason) override
Bring the tool to a known, initial state.
int OpenPreferences(const TOOL_EVENT &aEvent)
static wxString m_bugReportTemplate
Issue template to use for reporting bugs (this should not be translated)
void setTransitions() override
This method is meant to be overridden in order to specify handlers for events.
virtual wxString help_name()
const wxString & GetUntranslatedAboutTitle() const
void OnPreferences(wxCommandEvent &event)
Displays the preferences and settings of all opened editors paged dialog.
std::string Escape(const std::string &aUrl)
Escapes a string for use as a URL.
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
KIWAY & Kiway() const
Return a reference to the KIWAY that this object has an opportunity to participate in.
Definition: kiway_holder.h:53
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
Definition: kiway_player.h:66
virtual void CommonSettingsChanged(bool aEnvVarsChanged, bool aTextVarsChanged)
Call CommonSettingsChanged() on all KIWAY_PLAYERs.
Definition: kiway.cpp:633
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
Definition: kiway.cpp:432
virtual KIFACE * KiFACE(FACE_T aFaceId, bool doLoad=true)
Return the KIFACE* given a FACE_T.
Definition: kiway.cpp:202
@ FACE_SCH
eeschema DSO
Definition: kiway.h:286
@ FACE_PCB
pcbnew DSO
Definition: kiway.h:287
RESET_REASON
Determine the reason of reset for a tool.
Definition: tool_base.h:78
Generic, UI-independent tool event.
Definition: tool_event.h:156
T Parameter() const
Return a non-standard parameter assigned to the event.
Definition: tool_event.h:442
bool IsAction(const TOOL_ACTION *aAction) const
Test if the event contains an action issued upon activation of the given TOOL_ACTION.
Definition: tool_event.cpp:81
void Go(int(T::*aStateFunc)(const TOOL_EVENT &), const TOOL_EVENT_LIST &aConditions=TOOL_EVENT(TC_ANY, TA_ANY))
Define which state (aStateFunc) to go when a certain event arrives (aConditions).
bool WarnUserIfOperatingSystemUnsupported()
Checks if the operating system is explicitly unsupported and displays a disclaimer message box.
Definition: common.cpp:654
The common library.
#define URL_DONATE
#define URL_DOCUMENTATION
#define URL_GET_INVOLVED
return & kiface
Definition: cvpcb.cpp:112
#define _(s)
bool GetAssociatedDocument(wxWindow *aParent, const wxString &aDocName, PROJECT *aProject, SEARCH_STACK *aPaths)
Open a document (file) with the suitable browser.
Definition: eda_doc.cpp:74
This file is part of the common library.
FRAME_T
The set of EDA_BASE_FRAME derivatives, typically stored in EDA_BASE_FRAME::m_Ident.
Definition: frame_type.h:33
@ DIALOG_PCB_LIBRARY_TABLE
Definition: frame_type.h:105
@ DIALOG_SCH_LIBRARY_TABLE
Definition: frame_type.h:104
@ DIALOG_CONFIGUREPATHS
Definition: frame_type.h:103
void DisplayHotkeyList(EDA_BASE_FRAME *aParent)
Display the current hotkey list.
see class PGM_BASE
wxString SearchHelpFileFullPath(const wxString &aBaseName)
Return the help file's full path.
KIWAY Kiway & Pgm(), KFCTL_STANDALONE
The global Program "get" accessor.
Definition: single_top.cpp:115
std::vector< FAB_LAYER_COLOR > dummy
Implement a participant in the KIWAY alchemy.
Definition: kiway.h:151