54#define URL_GET_INVOLVED wxS( "https://go.kicad.org/contribute/" )
55#define URL_DONATE wxS( "https://go.kicad.org/app-donate" )
56#define URL_DOCUMENTATION wxS( "https://go.kicad.org/docs/" )
61 wxS(
"https://gitlab.com/kicad/code/kicad/-/issues/new?issuable_template=bare&issue"
80 m_frame->ShowPreferences( wxEmptyString, wxEmptyString );
165 if( aFrame->IsIconized() )
166 aFrame->Iconize(
false );
172 if( wxWindow::FindFocus() != aFrame )
178 blocking_win->Raise();
179 blocking_win->SetFocus();
190 wxCHECK_MSG(
editor !=
nullptr, 0, wxT(
"Cannot open/create the editor frame" ) );
203 m_frame->Kiway().OnKiCadExit();
227 bool isKicadBinary =
false;
233 isKicadBinary =
true;
236 long pid =
ExecuteFile( aExecutible, aParam, callback, isKicadBinary );
243 script.Printf( wxS(
"tell application \"System Events\" to tell application process \"%s\"\n"
244 " set frontmost to true\n"
250 wxExecute( wxString::Format(
"osascript -e '%s'", script ) );
270 wxFAIL_MSG(
"Execute(): unexpected request" );
272 if( execFile.IsEmpty() )
275 return Execute( execFile, param );
301 +
Pgm().
GetLocale()->GetName().BeforeLast(
'_' ) + wxT(
"/" );
312 const wxChar* names[2] = {
313 wxT(
"getting_started_in_kicad" ),
314 wxT(
"Getting_Started_in_KiCad" )
319 for(
auto&
name : names )
323 if( !helpFile.IsEmpty() )
329 msg = wxString::Format(
_(
"Help file '%s' or\n'%s' could not be found.\n"
330 "Do you want to access the KiCad online help?" ),
331 names[0], names[1] );
333 wxYES_NO | wxNO_DEFAULT | wxCANCEL );
335 if( dlg.ShowModal() != wxID_YES )
338 helpFile = baseUrl + names[0] + wxS(
"/" );
343 wxString base_name =
m_frame->help_name();
349 msg = wxString::Format(
_(
"Help file '%s' could not be found.\n"
350 "Do you want to access the KiCad online help?" ),
353 wxYES_NO | wxNO_DEFAULT | wxCANCEL );
355 if( dlg.ShowModal() != wxID_YES )
358 helpFile = baseUrl + base_name + wxS(
"/" );
387 msg.Printf(
_(
"Could not launch the default browser.\n"
388 "For information on how to help the KiCad project, visit %s" ),
390 wxMessageBox( msg,
_(
"Get involved with KiCad" ), wxOK,
m_frame );
402 msg.Printf(
_(
"Could not launch the default browser.\n"
403 "To donate to the KiCad project, visit %s" ),
405 wxMessageBox( msg,
_(
"Donate to KiCad" ), wxOK,
m_frame );
426 wxLaunchDefaultBrowser( url_string );
435 if(
Pgm().GetCommonSettings()->m_Api.enable_server )
437 std::shared_ptr<REPORTER> reporter;
440 reporter = std::make_shared<STATUSBAR_WARNING_REPORTER>( statusBar, wxS(
"plugin" ) );
442 Pgm().GetPluginManager().ReloadPlugins( std::nullopt, reporter );
void ShowAboutDialog(EDA_BASE_FRAME *aParent)
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 showCalculatorTools
static TOOL_ACTION reportBug
static TOOL_ACTION pluginsReload
static TOOL_ACTION showSymbolLibTable
static TOOL_ACTION showSymbolEditor
static TOOL_ACTION showSymbolBrowser
static TOOL_ACTION donate
static TOOL_ACTION listHotKeys
static TOOL_ACTION openPreferences
static TOOL_ACTION getInvolved
static TOOL_ACTION showFootprintLibTable
static TOOL_ACTION showDesignBlockLibTable
static TOOL_ACTION showFootprintEditor
static TOOL_ACTION configurePaths
static TOOL_ACTION showProjectManager
static TOOL_ACTION gettingStarted
static TOOL_ACTION showFootprintBrowser
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 Quit(const TOOL_EVENT &aEvent)
int ReloadPlugins(const TOOL_EVENT &aEvent)
Sets up handlers for various events.
int About(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 ShowProjectManager(const TOOL_EVENT &aEvent)
int Execute(const TOOL_EVENT &aEvent)
int ReportBug(const TOOL_EVENT &aEvent)
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.
The base frame for deriving all KiCad main window classes.
std::string Escape(const std::string &aUrl)
Escapes a string for use as a URL.
KIWAY & Kiway() const
Return a reference to the KIWAY that this object has an opportunity to participate in.
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
wxWindow * GetBlockingDialog()
Gets the window pointer to the blocking dialog (to send it signals)
virtual wxLocale * GetLocale()
void OnTerminate(int pid, int status) override
TERMINATE_HANDLER(const wxString &appName)
bool WarnUserIfOperatingSystemUnsupported()
Checks if the operating system is explicitly unsupported and displays a disclaimer message box.
#define URL_DOCUMENTATION
void showFrame(EDA_BASE_FRAME *aFrame)
This file is part of the common library.
#define KICAD_MESSAGE_DIALOG
bool GetAssociatedDocument(wxWindow *aParent, const wxString &aDocName, PROJECT *aProject, SEARCH_STACK *aPaths, std::vector< EMBEDDED_FILES * > aFilesStack)
Open a document (file) with the suitable browser.
This file is part of the common library.
const wxString EESCHEMA_EXE
const wxString GERBVIEW_EXE
const wxString PL_EDITOR_EXE
const wxString BITMAPCONVERTER_EXE
const wxString PCBNEW_EXE
const wxString PCB_CALCULATOR_EXE
FRAME_T
The set of EDA_BASE_FRAME derivatives, typically stored in EDA_BASE_FRAME::m_Ident.
@ DIALOG_PCB_LIBRARY_TABLE
@ DIALOG_SCH_LIBRARY_TABLE
@ DIALOG_DESIGN_BLOCK_LIBRARY_TABLE
int ExecuteFile(const wxString &aEditorName, const wxString &aFileName, wxProcess *aCallback, bool aFileForKicad)
Call the executable file aEditorName with the parameter aFileName.
void DisplayHotkeyList(EDA_BASE_FRAME *aParent)
Display the current hotkey list.
PGM_BASE & Pgm()
The global program "get" accessor.
wxString SearchHelpFileFullPath(const wxString &aBaseName)
Return the help file's full path.
Implement a participant in the KIWAY alchemy.
IFACE KIFACE_BASE kiface("pcb_test_frame", KIWAY::FACE_PCB)
KIBIS top(path, &reporter)