1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00
serenity/Userland/Applets/DesktopPicker/DesktopStatusWindow.h
Peter Elliott 01248d28ef Applets: Add DesktopPicker applet
This applet displays a grid of desktops, and shows the user what virtual
desktop they are on. When clicked, the desktop will be changed.
2021-07-19 18:21:40 +02:00

25 lines
448 B
C++

/*
* Copyright (c) 2021, Peter Elliott <pelliott@ualberta.ca>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Window.h>
class DesktopStatusWidget;
class DesktopStatusWindow : public GUI::Window {
C_OBJECT(DesktopStatusWindow);
public:
virtual ~DesktopStatusWindow() override;
virtual void wm_event(GUI::WMEvent&) override;
private:
DesktopStatusWindow();
DesktopStatusWidget* m_widget;
};