2020-06-03 14:58:54 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 Ian McInerney <Ian.S.McInerney at ieee.org>
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2021-04-03 00:16:25 +00:00
|
|
|
#include <windows.h>
|
2021-04-03 00:13:10 +00:00
|
|
|
|
2020-06-03 14:58:54 +00:00
|
|
|
#include <kiplatform/ui.h>
|
|
|
|
|
2020-10-08 00:50:28 +00:00
|
|
|
#include <wx/cursor.h>
|
2020-06-03 14:58:54 +00:00
|
|
|
#include <wx/nonownedwnd.h>
|
|
|
|
#include <wx/window.h>
|
2020-10-10 18:15:30 +00:00
|
|
|
#include <wx/msw/registry.h>
|
2020-06-03 14:58:54 +00:00
|
|
|
|
2020-09-19 23:32:23 +00:00
|
|
|
|
|
|
|
bool KIPLATFORM::UI::IsDarkTheme()
|
|
|
|
{
|
2020-10-10 18:15:30 +00:00
|
|
|
// NOTE: Disabled for now because we can't yet react to dark mode in Windows reasonably:
|
|
|
|
// Windows 10 dark mode does not change the values returned by wxSystemSettings::GetColour()
|
|
|
|
// so our window backgrounds, text colors, etc will stay in "light mode" until either wxWidgets
|
|
|
|
// implements something or we apply a custom theme ourselves.
|
|
|
|
#ifdef NOTYET
|
|
|
|
const wxString lightModeKey = wxT( "AppsUseLightTheme" );
|
|
|
|
|
|
|
|
// Note: registry used because there is not yet an official API for this yet.
|
|
|
|
// This may stop working on future Windows versions
|
|
|
|
wxRegKey themeKey( wxRegKey::HKCU,
|
|
|
|
wxT( "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize" ) );
|
|
|
|
|
|
|
|
if( !themeKey.Exists() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( !themeKey.HasValue( lightModeKey ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
long val = 0;
|
2020-10-17 21:55:38 +00:00
|
|
|
|
2020-10-10 18:15:30 +00:00
|
|
|
if( !themeKey.QueryValue( lightModeKey, &val ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return ( val == 0 );
|
|
|
|
#else
|
2021-03-14 19:39:19 +00:00
|
|
|
wxColour bg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW );
|
|
|
|
|
|
|
|
// Weighted W3C formula
|
|
|
|
double brightness = ( bg.Red() / 255.0 ) * 0.299 +
|
|
|
|
( bg.Green() / 255.0 ) * 0.587 +
|
|
|
|
( bg.Blue() / 255.0 ) * 0.117;
|
|
|
|
|
|
|
|
return brightness < 0.5;
|
2020-10-10 18:15:30 +00:00
|
|
|
#endif
|
2020-09-19 23:32:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-09 11:19:43 +00:00
|
|
|
wxColour KIPLATFORM::UI::GetDialogBGColour()
|
|
|
|
{
|
|
|
|
return wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-03 14:58:54 +00:00
|
|
|
void KIPLATFORM::UI::ForceFocus( wxWindow* aWindow )
|
|
|
|
{
|
|
|
|
aWindow->SetFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-04-02 23:04:33 +00:00
|
|
|
bool KIPLATFORM::UI::IsWindowActive( wxWindow* aWindow )
|
|
|
|
{
|
2021-04-26 22:22:03 +00:00
|
|
|
if(! aWindow )
|
|
|
|
{
|
2021-06-07 22:20:47 +00:00
|
|
|
return false;
|
2021-04-26 22:22:03 +00:00
|
|
|
}
|
|
|
|
|
2021-04-02 23:04:33 +00:00
|
|
|
return ( aWindow->GetHWND() == GetForegroundWindow() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-03 14:58:54 +00:00
|
|
|
void KIPLATFORM::UI::ReparentQuasiModal( wxNonOwnedWindow* aWindow )
|
|
|
|
{
|
|
|
|
// Not needed on this platform
|
|
|
|
}
|
2020-06-04 21:26:15 +00:00
|
|
|
|
|
|
|
|
2020-06-04 21:44:03 +00:00
|
|
|
void KIPLATFORM::UI::FixupCancelButtonCmdKeyCollision( wxWindow *aWindow )
|
2020-06-04 21:26:15 +00:00
|
|
|
{
|
|
|
|
// Not needed on this platform
|
|
|
|
}
|
2020-10-08 00:50:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool KIPLATFORM::UI::IsStockCursorOk( wxStockCursor aCursor )
|
|
|
|
{
|
|
|
|
switch( aCursor )
|
|
|
|
{
|
|
|
|
case wxCURSOR_BULLSEYE:
|
|
|
|
case wxCURSOR_HAND:
|
|
|
|
case wxCURSOR_ARROW:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
2020-10-17 21:55:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-04-12 14:22:04 +00:00
|
|
|
void KIPLATFORM::UI::LargeChoiceBoxHack( wxChoice* aChoice )
|
|
|
|
{
|
|
|
|
// Not implemented
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-17 21:55:38 +00:00
|
|
|
void KIPLATFORM::UI::EllipsizeChoiceBox( wxChoice* aChoice )
|
|
|
|
{
|
|
|
|
// Not implemented
|
|
|
|
}
|
2021-02-23 01:38:27 +00:00
|
|
|
|
|
|
|
|
2023-02-22 05:15:14 +00:00
|
|
|
double KIPLATFORM::UI::GetPixelScaleFactor( const wxWindow* aWindow )
|
2021-02-23 01:38:27 +00:00
|
|
|
{
|
|
|
|
return aWindow->GetContentScaleFactor();
|
|
|
|
}
|
2021-12-16 04:56:21 +00:00
|
|
|
|
|
|
|
|
2023-02-22 05:15:14 +00:00
|
|
|
double KIPLATFORM::UI::GetContentScaleFactor( const wxWindow* aWindow )
|
|
|
|
{
|
|
|
|
return aWindow->GetDPIScaleFactor();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-12-16 04:56:21 +00:00
|
|
|
wxSize KIPLATFORM::UI::GetUnobscuredSize( const wxWindow* aWindow )
|
|
|
|
{
|
|
|
|
return aWindow->GetClientSize();
|
|
|
|
}
|
2022-01-31 15:45:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
void KIPLATFORM::UI::SetOverlayScrolling( const wxWindow* aWindow, bool overlay )
|
|
|
|
{
|
|
|
|
// Not implemented
|
|
|
|
}
|
2022-02-07 18:26:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool KIPLATFORM::UI::AllowIconsInMenus()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2022-06-24 16:54:28 +00:00
|
|
|
|
|
|
|
|
2023-09-18 03:13:09 +00:00
|
|
|
wxPoint KIPLATFORM::UI::GetMousePosition()
|
|
|
|
{
|
|
|
|
return wxGetMousePosition();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-09-22 02:10:42 +00:00
|
|
|
bool KIPLATFORM::UI::WarpPointer( wxWindow* aWindow, int aX, int aY )
|
2022-06-24 16:54:28 +00:00
|
|
|
{
|
|
|
|
aWindow->WarpPointer( aX, aY );
|
2023-09-22 02:10:42 +00:00
|
|
|
return true;
|
2022-06-24 16:54:28 +00:00
|
|
|
}
|
2023-05-10 00:30:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
void KIPLATFORM::UI::ImmControl( wxWindow* aWindow, bool aEnable )
|
|
|
|
{
|
|
|
|
if ( !aEnable )
|
|
|
|
{
|
2023-07-17 01:53:05 +00:00
|
|
|
ImmAssociateContext( aWindow->GetHWND(), NULL );
|
2023-05-10 00:30:15 +00:00
|
|
|
}
|
2023-05-10 01:27:14 +00:00
|
|
|
else
|
2023-05-10 00:30:15 +00:00
|
|
|
{
|
2023-07-17 01:53:05 +00:00
|
|
|
ImmAssociateContextEx( aWindow->GetHWND(), 0, IACE_DEFAULT );
|
2023-05-10 00:30:15 +00:00
|
|
|
}
|
2023-09-17 17:41:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-03-12 07:31:23 +00:00
|
|
|
bool KIPLATFORM::UI::InfiniteDragPrepareWindow( wxWindow* aWindow )
|
2023-09-17 17:41:58 +00:00
|
|
|
{
|
2024-03-12 07:31:23 +00:00
|
|
|
return true;
|
2023-09-17 17:41:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void KIPLATFORM::UI::InfiniteDragReleaseWindow()
|
|
|
|
{
|
|
|
|
// Not needed on this platform
|
|
|
|
}
|
2024-04-26 04:47:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
void KIPLATFORM::UI::SetFloatLevel( wxWindow* aWindow )
|
|
|
|
{
|
|
|
|
}
|