diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-12 02:24:05 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-12 02:24:05 +0200 |
commit | 64127e06378259515006f876440ce0ecd5fa7728 (patch) | |
tree | c444dfea758d8572a418165e70651abc620cac26 /Widgets/WindowManager.h | |
parent | 22721e6729633f507a3df6c98ab440b536b1b24a (diff) | |
download | serenity-64127e06378259515006f876440ce0ecd5fa7728.zip |
Very hacky support for dragging a window around.
Diffstat (limited to 'Widgets/WindowManager.h')
-rw-r--r-- | Widgets/WindowManager.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Widgets/WindowManager.h b/Widgets/WindowManager.h index a4c6ce1b10..a81135f0fa 100644 --- a/Widgets/WindowManager.h +++ b/Widgets/WindowManager.h @@ -38,4 +38,9 @@ private: void paintWindowFrame(Window&); HashTable<Window*> m_windows; Widget* m_rootWidget { nullptr }; + + Window* m_dragWindow { nullptr }; + Point m_dragOrigin; + Point m_dragWindowOrigin; + Rect m_lastDragRect; }; |