120 lines
3.6 KiB
C++
120 lines
3.6 KiB
C++
/*
|
|
* 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/log.h>
|
|
#include <wx/string.h>
|
|
#include <wx/window.h>
|
|
#include <wx/msgdlg.h>
|
|
|
|
#include <windows.h>
|
|
#include <strsafe.h>
|
|
#include <config.h>
|
|
#include <VersionHelpers.h>
|
|
|
|
|
|
bool KIPLATFORM::APP::Init()
|
|
{
|
|
#if defined( _MSC_VER ) && defined( DEBUG )
|
|
// wxWidgets turns on leak dumping in debug but its "flawed" and will falsely dump
|
|
// for half a hour _CRTDBG_ALLOC_MEM_DF is the usual default for MSVC.
|
|
_CrtSetDbgFlag( _CRTDBG_ALLOC_MEM_DF );
|
|
#endif
|
|
|
|
#if defined( PYTHON_VERSION_MAJOR ) && ( ( PYTHON_VERSION_MAJOR == 3 && PYTHON_VERSION_MINOR >= 8 ) \
|
|
|| PYTHON_VERSION_MAJOR > 3 )
|
|
// Python 3.8 switched to Windows 8+ API, we do not support Windows 7 and will not
|
|
// attempt to hack around it. Gracefully inform the user and refuse to start (because
|
|
// python will crash us if we continue).
|
|
if( !IsWindows8OrGreater() )
|
|
{
|
|
wxMessageBox( _( "Windows 7 and older is no longer supported by KiCad and its "
|
|
"dependencies." ), _( "Unsupported Operating System" ),
|
|
wxOK | wxICON_ERROR );
|
|
return false;
|
|
}
|
|
#endif
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool KIPLATFORM::APP::RegisterApplicationRestart( const wxString& aCommandLine )
|
|
{
|
|
// Ensure we don't exceed the maximum allowable size
|
|
if( aCommandLine.length() > RESTART_MAX_CMD_LINE - 1 )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
hr = ::RegisterApplicationRestart( aCommandLine.wc_str(), RESTART_NO_PATCH );
|
|
|
|
return SUCCEEDED( hr );
|
|
}
|
|
|
|
|
|
bool KIPLATFORM::APP::UnregisterApplicationRestart()
|
|
{
|
|
// Note, this isn't required to be used on Windows if you are just closing the program
|
|
return SUCCEEDED( ::UnregisterApplicationRestart() );
|
|
}
|
|
|
|
|
|
bool KIPLATFORM::APP::SupportsShutdownBlockReason()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
void KIPLATFORM::APP::RemoveShutdownBlockReason( wxWindow* aWindow )
|
|
{
|
|
// Destroys any block reason that may have existed
|
|
ShutdownBlockReasonDestroy( aWindow->GetHandle() );
|
|
}
|
|
|
|
|
|
void KIPLATFORM::APP::SetShutdownBlockReason( wxWindow* aWindow, const wxString& aReason )
|
|
{
|
|
// Sets up the pretty message on the shutdown page on why it's being "blocked"
|
|
// This is used in conjunction with handling WM_QUERYENDSESSION (wxCloseEvent)
|
|
// ShutdownBlockReasonCreate does not block by itself
|
|
|
|
ShutdownBlockReasonDestroy( aWindow->GetHandle() ); // Destroys any existing or nonexisting reason
|
|
|
|
ShutdownBlockReasonCreate( aWindow->GetHandle(), aReason.wc_str() );
|
|
}
|
|
|
|
|
|
void KIPLATFORM::APP::ForceTimerMessagesToBeCreatedIfNecessary()
|
|
{
|
|
// Taken from https://devblogs.microsoft.com/oldnewthing/20191108-00/?p=103080
|
|
MSG msg;
|
|
PeekMessage( &msg, nullptr, WM_TIMER, WM_TIMER, PM_NOREMOVE );
|
|
}
|
|
|
|
|
|
void KIPLATFORM::APP::AddDynamicLibrarySearchPath( const wxString& aPath )
|
|
{
|
|
SetDllDirectoryA( aPath.c_str() );
|
|
}
|