mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:27:35 +00:00
LibGUI+WindowServer: Add a SystemEffects wrapper and helpers
SystemEffects provides a tidy way to work with system-wide visual options passed through IPC.
This commit is contained in:
parent
9d7345d17b
commit
8904a61d71
2 changed files with 124 additions and 0 deletions
17
Userland/Libraries/LibGUI/SystemEffects.h
Normal file
17
Userland/Libraries/LibGUI/SystemEffects.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
* Copyright (c) 2022, the SerenityOS developers.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Services/WindowServer/SystemEffects.h>
|
||||
|
||||
namespace GUI {
|
||||
|
||||
using SystemEffects = WindowServer::SystemEffects;
|
||||
using ShowGeometry = WindowServer::ShowGeometry;
|
||||
using Effects = WindowServer::Effects;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue