diff options
Diffstat (limited to 'src/win.h')
-rw-r--r-- | src/win.h | 24 |
1 files changed, 14 insertions, 10 deletions
@@ -19,16 +19,20 @@ struct PuglWorldInternalsImpl { }; struct PuglInternalsImpl { - PuglWinPFD pfd; - int pfId; - HWND hwnd; - HCURSOR cursor; - HDC hdc; - PuglBlob clipboard; - PuglSurface* surface; - double scaleFactor; - bool flashing; - bool mouseTracked; + PuglWinPFD pfd; + int pfId; + HWND hwnd; + HCURSOR cursor; + HDC hdc; + WINDOWPLACEMENT oldPlacement; + PuglBlob clipboard; + PuglSurface* surface; + double scaleFactor; + bool flashing; + bool mouseTracked; + bool minimized; + bool maximized; + bool fullscreen; }; PUGL_API |