mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 03:57:44 +00:00
WindowServer: Add a dedicated drag cursor
This commit is contained in:
parent
8423be2593
commit
39c2d04a9b
6 changed files with 10 additions and 0 deletions
|
@ -103,6 +103,7 @@ public:
|
|||
const WSCursor& i_beam_cursor() const { return *m_i_beam_cursor; }
|
||||
const WSCursor& disallowed_cursor() const { return *m_disallowed_cursor; }
|
||||
const WSCursor& move_cursor() const { return *m_move_cursor; }
|
||||
const WSCursor& drag_cursor() const { return *m_drag_cursor; }
|
||||
|
||||
void invalidate(const WSWindow&);
|
||||
void invalidate(const WSWindow&, const Rect&);
|
||||
|
@ -196,6 +197,7 @@ private:
|
|||
RefPtr<WSCursor> m_i_beam_cursor;
|
||||
RefPtr<WSCursor> m_disallowed_cursor;
|
||||
RefPtr<WSCursor> m_move_cursor;
|
||||
RefPtr<WSCursor> m_drag_cursor;
|
||||
|
||||
Color m_background_color;
|
||||
Color m_active_window_border_color;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue