| 262 | } |
| 263 | |
| 264 | Rect Win32Window::GetWindowFrame() const |
| 265 | { |
| 266 | RECT box = {}; |
| 267 | GetWindowRect(WindowHandle, &box); |
| 268 | double dpiscale = GetDpiScale(); |
| 269 | return Rect(box.left / dpiscale, box.top / dpiscale, box.right / dpiscale, box.bottom / dpiscale); |
| 270 | } |
| 271 | |
| 272 | Size Win32Window::GetClientSize() const |
| 273 | { |