KiCad PCB EDA Suite
Loading...
Searching...
No Matches
wxmsw/ui.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2020 Ian McInerney <Ian.S.McInerney at ieee.org>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include <windows.h>
22
23#include <kiplatform/ui.h>
24
25#include <wx/cursor.h>
26#include <wx/nonownedwnd.h>
27#include <wx/window.h>
28#include <wx/msw/registry.h>
29
30
32{
33 // NOTE: Disabled for now because we can't yet react to dark mode in Windows reasonably:
34 // Windows 10 dark mode does not change the values returned by wxSystemSettings::GetColour()
35 // so our window backgrounds, text colors, etc will stay in "light mode" until either wxWidgets
36 // implements something or we apply a custom theme ourselves.
37#ifdef NOTYET
38 const wxString lightModeKey = wxT( "AppsUseLightTheme" );
39
40 // Note: registry used because there is not yet an official API for this yet.
41 // This may stop working on future Windows versions
42 wxRegKey themeKey( wxRegKey::HKCU,
43 wxT( "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize" ) );
44
45 if( !themeKey.Exists() )
46 return false;
47
48 if( !themeKey.HasValue( lightModeKey ) )
49 return false;
50
51 long val = 0;
52
53 if( !themeKey.QueryValue( lightModeKey, &val ) )
54 return false;
55
56 return ( val == 0 );
57#else
58 wxColour bg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW );
59
60 // Weighted W3C formula
61 double brightness = ( bg.Red() / 255.0 ) * 0.299 +
62 ( bg.Green() / 255.0 ) * 0.587 +
63 ( bg.Blue() / 255.0 ) * 0.117;
64
65 return brightness < 0.5;
66#endif
67}
68
69
71{
72 return wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE );
73}
74
75
76void KIPLATFORM::UI::GetInfoBarColours( wxColour& aFGColour, wxColour& aBGColour )
77{
78 aBGColour = wxSystemSettings::GetColour( wxSYS_COLOUR_INFOBK );
79 aFGColour = wxSystemSettings::GetColour( wxSYS_COLOUR_INFOTEXT );
80}
81
82
83void KIPLATFORM::UI::ForceFocus( wxWindow* aWindow )
84{
85 aWindow->SetFocus();
86}
87
88
89bool KIPLATFORM::UI::IsWindowActive( wxWindow* aWindow )
90{
91 if(! aWindow )
92 {
93 return false;
94 }
95
96 return ( aWindow->GetHWND() == GetForegroundWindow() );
97}
98
99
100void KIPLATFORM::UI::ReparentModal( wxNonOwnedWindow* aWindow )
101{
102 // Not needed on this platform
103}
104
105
107{
108 // Not needed on this platform
109}
110
111
112bool KIPLATFORM::UI::IsStockCursorOk( wxStockCursor aCursor )
113{
114 switch( aCursor )
115 {
116 case wxCURSOR_BULLSEYE:
117 case wxCURSOR_HAND:
118 case wxCURSOR_ARROW:
119 return true;
120 default:
121 return false;
122 }
123}
124
125
126void KIPLATFORM::UI::LargeChoiceBoxHack( wxChoice* aChoice )
127{
128 // Not implemented
129}
130
131
132void KIPLATFORM::UI::EllipsizeChoiceBox( wxChoice* aChoice )
133{
134 // Not implemented
135}
136
137
138double KIPLATFORM::UI::GetPixelScaleFactor( const wxWindow* aWindow )
139{
140 return aWindow->GetContentScaleFactor();
141}
142
143
144double KIPLATFORM::UI::GetContentScaleFactor( const wxWindow* aWindow )
145{
146 return aWindow->GetDPIScaleFactor();
147}
148
149
150wxSize KIPLATFORM::UI::GetUnobscuredSize( const wxWindow* aWindow )
151{
152 return aWindow->GetClientSize();
153}
154
155
156void KIPLATFORM::UI::SetOverlayScrolling( const wxWindow* aWindow, bool overlay )
157{
158 // Not implemented
159}
160
161
163{
164 return true;
165}
166
167
169{
170 return wxGetMousePosition();
171}
172
173
174bool KIPLATFORM::UI::WarpPointer( wxWindow* aWindow, int aX, int aY )
175{
176 aWindow->WarpPointer( aX, aY );
177 return true;
178}
179
180
181void KIPLATFORM::UI::ImmControl( wxWindow* aWindow, bool aEnable )
182{
183 if ( !aEnable )
184 {
185 ImmAssociateContext( aWindow->GetHWND(), NULL );
186 }
187 else
188 {
189 ImmAssociateContextEx( aWindow->GetHWND(), 0, IACE_DEFAULT );
190 }
191}
192
193
194void KIPLATFORM::UI::ImeNotifyCancelComposition( wxWindow* aWindow )
195{
196 const HIMC himc = ImmGetContext( aWindow->GetHWND() );
197 ImmNotifyIME( himc, NI_COMPOSITIONSTR, CPS_CANCEL, 0 );
198 ImmReleaseContext( aWindow->GetHWND(), himc );
199}
200
201
202bool KIPLATFORM::UI::InfiniteDragPrepareWindow( wxWindow* aWindow )
203{
204 return true;
205}
206
207
209{
210 // Not needed on this platform
211}
212
213
214void KIPLATFORM::UI::SetFloatLevel( wxWindow* aWindow )
215{
216}
bool AllowIconsInMenus()
If the user has disabled icons system-wide, we check that here.
Definition: wxgtk/ui.cpp:266
void SetFloatLevel(wxWindow *aWindow)
Intended to set the floating window level in macOS on a window.
Definition: wxgtk/ui.cpp:395
void GetInfoBarColours(wxColour &aFGColour, wxColour &aBGColour)
Return the background and foreground colors for info bars in the current scheme.
Definition: wxgtk/ui.cpp:67
void EllipsizeChoiceBox(wxChoice *aChoice)
Configure a wxChoice control to ellipsize the shown text in the button with the ellipses placed at th...
Definition: wxgtk/ui.cpp:211
void FixupCancelButtonCmdKeyCollision(wxWindow *aWindow)
Definition: wxgtk/ui.cpp:151
void SetOverlayScrolling(const wxWindow *aWindow, bool overlay)
Used to set overlay/non-overlay scrolling mode in a window.
Definition: wxgtk/ui.cpp:259
wxPoint GetMousePosition()
Returns the mouse position in screen coordinates.
Definition: wxgtk/ui.cpp:677
void ImmControl(wxWindow *aWindow, bool aEnable)
Configures the IME mode of a given control handle.
Definition: wxgtk/ui.cpp:376
double GetPixelScaleFactor(const wxWindow *aWindow)
Tries to determine the pixel scaling factor currently in use for the window.
Definition: wxgtk/ui.cpp:232
void InfiniteDragReleaseWindow()
On Wayland, allows the cursor to freely move again after a drag (see InfiniteDragPrepareWindow).
Definition: wxgtk/ui.cpp:671
bool IsStockCursorOk(wxStockCursor aCursor)
Checks if we designated a stock cursor for this OS as "OK" or else we may need to load a custom one.
Definition: wxgtk/ui.cpp:157
double GetContentScaleFactor(const wxWindow *aWindow)
Tries to determine the content scaling factor currently in use for the window.
Definition: wxgtk/ui.cpp:245
void ImeNotifyCancelComposition(wxWindow *aWindow)
Asks the IME to cancel.
Definition: wxgtk/ui.cpp:381
void LargeChoiceBoxHack(wxChoice *aChoice)
Configure a wxChoice control to support a lot of entries by disabling functionality that makes adding...
Definition: wxgtk/ui.cpp:193
bool WarpPointer(wxWindow *aWindow, int aX, int aY)
Move the mouse cursor to a specific position relative to the window.
Definition: wxgtk/ui.cpp:310
wxColour GetDialogBGColour()
Definition: wxgtk/ui.cpp:61
bool IsWindowActive(wxWindow *aWindow)
Check to see if the given window is the currently active window (e.g.
Definition: wxgtk/ui.cpp:130
wxSize GetUnobscuredSize(const wxWindow *aWindow)
Tries to determine the size of the viewport of a scrollable widget (wxDataViewCtrl,...
Definition: wxgtk/ui.cpp:252
void ForceFocus(wxWindow *aWindow)
Pass the current focus to the window.
Definition: wxgtk/ui.cpp:124
bool InfiniteDragPrepareWindow(wxWindow *aWindow)
On Wayland, restricts the pointer movement to a rectangle slightly bigger than the given wxWindow.
Definition: wxgtk/ui.cpp:664
void ReparentModal(wxNonOwnedWindow *aWindow)
Move a window's parent to be the top-level window and force the window to be on top.
Definition: wxgtk/ui.cpp:145
bool IsDarkTheme()
Determine if the desktop interface is currently using a dark theme or a light theme.
Definition: wxgtk/ui.cpp:48
std::shared_ptr< PNS_LOG_VIEWER_OVERLAY > overlay
Definition: playground.cpp:46