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

WindowServer: Switch menubar based on the currently active window.

This commit is contained in:
Andreas Kling 2019-02-13 00:19:21 +01:00
parent 4f33fb3a1a
commit 732f273949
3 changed files with 21 additions and 5 deletions

View file

@ -20,6 +20,8 @@ public:
explicit WSWindow(WSMenu&);
virtual ~WSWindow() override;
const Process* process() const { return m_process; }
WSWindowType type() const { return m_type; }
int window_id() const { return m_window_id; }