| 560 | } |
| 561 | |
| 562 | void WindowsWindow::FlashWindow() |
| 563 | { |
| 564 | ASSERT(HasHWND()); |
| 565 | |
| 566 | if (IsFocused()) |
| 567 | return; |
| 568 | |
| 569 | ::FlashWindow(_handle, FALSE); |
| 570 | } |
| 571 | |
| 572 | void WindowsWindow::GetScreenInfo(int32& x, int32& y, int32& width, int32& height) const |
| 573 | { |
nothing calls this directly
no test coverage detected