summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Forward.h
diff options
context:
space:
mode:
authorTom <tomut@yahoo.com>2021-06-14 21:19:56 -0600
committerAndreas Kling <kling@serenityos.org>2021-06-20 14:57:26 +0200
commitaa15bf81e48637cf6365f15f4eaada645eae4040 (patch)
tree04cca8b2cb92c0d0b7f60817529d1649845c0e40 /Userland/Libraries/LibGUI/Forward.h
parent34394044b3dd0852aa58910aa7b1b7b897e6ebb8 (diff)
downloadserenity-aa15bf81e48637cf6365f15f4eaada645eae4040.zip
WindowServer: Add API to set/get screen layouts
This sets the stage so that DisplaySettings can configure the screen layout and set various screen resolutions in one go. It also allows for an easy "atomic" revert of the previous settings.
Diffstat (limited to 'Userland/Libraries/LibGUI/Forward.h')
-rw-r--r--Userland/Libraries/LibGUI/Forward.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGUI/Forward.h b/Userland/Libraries/LibGUI/Forward.h
index 156fd60b8f..a12e0e9f68 100644
--- a/Userland/Libraries/LibGUI/Forward.h
+++ b/Userland/Libraries/LibGUI/Forward.h
@@ -85,3 +85,7 @@ enum class ModelRole;
enum class SortOrder;
}
+
+namespace WindowServer {
+class ScreenLayout;
+}