diff options
author | crupest <crupest@outlook.com> | 2022-01-29 21:25:15 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-01-29 21:25:15 +0800 |
commit | a2c2089c8d97b4910d4287c14c82e20d33366c24 (patch) | |
tree | f98eca54fe1856dca136780f345da212f8e3c4c6 /src | |
parent | 30060773b06d93ae08a8c6fa5836c81e595594ed (diff) | |
download | cru-a2c2089c8d97b4910d4287c14c82e20d33366c24.tar.gz cru-a2c2089c8d97b4910d4287c14c82e20d33366c24.tar.bz2 cru-a2c2089c8d97b4910d4287c14c82e20d33366c24.zip |
...
Diffstat (limited to 'src')
-rw-r--r-- | src/win/gui/Window.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/win/gui/Window.cpp b/src/win/gui/Window.cpp index 2bd29476..f30b4e59 100644 --- a/src/win/gui/Window.cpp +++ b/src/win/gui/Window.cpp @@ -281,6 +281,14 @@ void WinNativeWindow::SetCursor(std::shared_ptr<ICursor> cursor) { } } +void WinNativeWindow::SetToForeground() { + if (hwnd_) { + if (!::SetForegroundWindow(hwnd_)) + throw Win32Error(::GetLastError(), + u"Failed to set window to foreground."); + } +} + IInputMethodContext* WinNativeWindow::GetInputMethodContext() { return static_cast<IInputMethodContext*>(input_method_context_.get()); } |