mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
This shortcut has the same effect as pressing the "Show Desktop" button in the taskbar. This shortcut already exists in Windows.
43 lines
1.7 KiB
C++
43 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibIPC/ConnectionToServer.h>
|
|
#include <WindowServer/ScreenLayout.h>
|
|
#include <WindowServer/WindowManagerClientEndpoint.h>
|
|
#include <WindowServer/WindowManagerServerEndpoint.h>
|
|
|
|
namespace GUI {
|
|
|
|
class ConnectionToWindowManagerServer final
|
|
: public IPC::ConnectionToServer<WindowManagerClientEndpoint, WindowManagerServerEndpoint>
|
|
, public WindowManagerClientEndpoint {
|
|
IPC_CLIENT_CONNECTION(ConnectionToWindowManagerServer, "/tmp/portal/wm")
|
|
|
|
public:
|
|
static ConnectionToWindowManagerServer& the();
|
|
|
|
private:
|
|
ConnectionToWindowManagerServer(NonnullOwnPtr<Core::Stream::LocalSocket> socket)
|
|
: IPC::ConnectionToServer<WindowManagerClientEndpoint, WindowManagerServerEndpoint>(*this, move(socket))
|
|
{
|
|
}
|
|
|
|
virtual void window_removed(i32, i32, i32) override;
|
|
virtual void window_state_changed(i32, i32, i32, i32, i32, u32, u32, bool, bool, bool, bool, i32, String const&, Gfx::IntRect const&, Optional<i32> const&) override;
|
|
virtual void window_icon_bitmap_changed(i32, i32, i32, Gfx::ShareableBitmap const&) override;
|
|
virtual void window_rect_changed(i32, i32, i32, Gfx::IntRect const&) override;
|
|
virtual void applet_area_size_changed(i32, Gfx::IntSize const&) override;
|
|
virtual void super_key_pressed(i32) override;
|
|
virtual void super_space_key_pressed(i32) override;
|
|
virtual void super_d_key_pressed(i32) override;
|
|
virtual void super_digit_key_pressed(i32, u8) override;
|
|
virtual void workspace_changed(i32, u32, u32) override;
|
|
virtual void keymap_changed(i32, String const&) override;
|
|
};
|
|
|
|
}
|