2020-07-21 00:33:35 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 Mark Roszko <mark.roszko@gmail.com>
|
|
|
|
* Copyright (C) 2020 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <kiplatform/app.h>
|
|
|
|
|
|
|
|
#include <wx/string.h>
|
2023-01-31 17:47:37 +00:00
|
|
|
#include <wx/sysopt.h>
|
2020-07-21 00:33:35 +00:00
|
|
|
|
|
|
|
|
2021-03-23 19:09:57 +00:00
|
|
|
bool KIPLATFORM::APP::Init()
|
2021-03-19 21:26:07 +00:00
|
|
|
{
|
2023-01-31 17:47:37 +00:00
|
|
|
// KiCad relies on showing the file type selector in a few places; force it to be shown
|
|
|
|
wxSystemOptions::SetOption( wxS( "osx.openfiledialog.always-show-types" ), 1 );
|
2021-03-19 21:26:07 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-29 04:05:46 +00:00
|
|
|
bool KIPLATFORM::APP::AttachConsole( bool aTryAlloc )
|
|
|
|
{
|
|
|
|
// Not implemented on this platform
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-06-09 01:02:10 +00:00
|
|
|
bool KIPLATFORM::APP::IsOperatingSystemUnsupported()
|
|
|
|
{
|
2022-01-31 23:57:14 +00:00
|
|
|
// Not implemented on this platform
|
2021-06-09 01:02:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-21 00:33:35 +00:00
|
|
|
bool KIPLATFORM::APP::RegisterApplicationRestart( const wxString& aCommandLine )
|
|
|
|
{
|
|
|
|
// Not implemented on this platform
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool KIPLATFORM::APP::UnregisterApplicationRestart()
|
|
|
|
{
|
|
|
|
// Not implemented on this platform
|
|
|
|
return true;
|
2020-09-01 10:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool KIPLATFORM::APP::SupportsShutdownBlockReason()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void KIPLATFORM::APP::RemoveShutdownBlockReason( wxWindow* aWindow )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void KIPLATFORM::APP::SetShutdownBlockReason( wxWindow* aWindow, const wxString& aReason )
|
|
|
|
{
|
2020-10-12 01:44:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void KIPLATFORM::APP::ForceTimerMessagesToBeCreatedIfNecessary()
|
|
|
|
{
|
2021-03-19 21:26:07 +00:00
|
|
|
}
|
2021-03-21 13:16:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
void KIPLATFORM::APP::AddDynamicLibrarySearchPath( const wxString& aPath )
|
|
|
|
{
|
|
|
|
}
|