/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2020 Mark Roszko * 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 . */ #include #include #include #include #include #include #include #include #if defined( _MSC_VER ) #include // issues on msys2 #endif 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( DEBUG ) // undo wxwidgets trying to hide errors SetErrorMode( 0 ); #else SetErrorMode( SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX ); #endif #if defined( _MSC_VER ) // ensure the WER crash report dialog always appears WerSetFlags( WER_FAULT_REPORTING_ALWAYS_SHOW_UI ); #endif // remove CWD from the dll search paths // just the smallest of security tweaks as we do load DLLs on demand SetDllDirectory( wxT( "" ) ); // Moves the CWD to the end of the search list for spawning processes SetSearchPathMode( BASE_SEARCH_PATH_ENABLE_SAFE_SEARCHMODE | BASE_SEARCH_PATH_PERMANENT ); return true; } bool KIPLATFORM::APP::IsOperatingSystemUnsupported() { #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. A normal user will never get here because the Python DLL // is missing dependencies - and because it is not dynamically loaded, KiCad will not even // start without patching Python or its WinAPI dependency. This is just to create a nag dialog // for those who run patched Python and prevent them from submitting bug reports. return !IsWindows8OrGreater(); #else return false; #endif } 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 ) { SetDllDirectory( aPath.c_str() ); }