1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:07:35 +00:00

WindowServer+LibGUI: Add "wait" cursor

This commit is contained in:
Linus Groh 2020-07-07 20:23:40 +01:00 committed by Andreas Kling
parent b8a8e417f1
commit 899dcba158
7 changed files with 8 additions and 0 deletions

View file

@ -133,6 +133,7 @@ public:
const Cursor& disallowed_cursor() const { return *m_disallowed_cursor; }
const Cursor& move_cursor() const { return *m_move_cursor; }
const Cursor& drag_cursor() const { return *m_drag_cursor; }
const Cursor& wait_cursor() const { return *m_wait_cursor; }
void invalidate(const Gfx::IntRect&);
void invalidate();
@ -216,6 +217,7 @@ private:
RefPtr<Cursor> m_disallowed_cursor;
RefPtr<Cursor> m_move_cursor;
RefPtr<Cursor> m_drag_cursor;
RefPtr<Cursor> m_wait_cursor;
InlineLinkedList<Window> m_windows_in_order;