diff options
author | Simon Wanner <skyrising@pvpctutorials.de> | 2022-04-09 09:28:38 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-09 23:48:18 +0200 |
commit | 206d6ece55e44117fd49525eeca5bd28d83ac5eb (patch) | |
tree | 42f45ba540faffd38608380dad02d7614c6e7e5a /Userland/Services | |
parent | 6f8fd91f225c9eb3e5faeda1aaf6cee1e1f12cc9 (diff) | |
download | serenity-206d6ece55e44117fd49525eeca5bd28d83ac5eb.zip |
LibGfx: Move other font-related files to LibGfx/Font/
Diffstat (limited to 'Userland/Services')
-rw-r--r-- | Userland/Services/NotificationServer/NotificationWindow.cpp | 2 | ||||
-rw-r--r-- | Userland/Services/Taskbar/ClockWidget.cpp | 2 | ||||
-rw-r--r-- | Userland/Services/Taskbar/ShutdownDialog.cpp | 4 | ||||
-rw-r--r-- | Userland/Services/Taskbar/TaskbarButton.cpp | 2 | ||||
-rw-r--r-- | Userland/Services/Taskbar/TaskbarWindow.cpp | 2 | ||||
-rw-r--r-- | Userland/Services/WebContent/ConnectionFromClient.cpp | 2 | ||||
-rw-r--r-- | Userland/Services/WindowServer/Compositor.cpp | 2 | ||||
-rw-r--r-- | Userland/Services/WindowServer/Compositor.h | 2 | ||||
-rw-r--r-- | Userland/Services/WindowServer/Menu.cpp | 2 | ||||
-rw-r--r-- | Userland/Services/WindowServer/Menu.h | 4 | ||||
-rw-r--r-- | Userland/Services/WindowServer/WindowFrame.cpp | 2 | ||||
-rw-r--r-- | Userland/Services/WindowServer/WindowManager.cpp | 2 | ||||
-rw-r--r-- | Userland/Services/WindowServer/WindowSwitcher.cpp | 2 |
13 files changed, 15 insertions, 15 deletions
diff --git a/Userland/Services/NotificationServer/NotificationWindow.cpp b/Userland/Services/NotificationServer/NotificationWindow.cpp index 7ab7847c97..834e4b5346 100644 --- a/Userland/Services/NotificationServer/NotificationWindow.cpp +++ b/Userland/Services/NotificationServer/NotificationWindow.cpp @@ -12,7 +12,7 @@ #include <LibGUI/Label.h> #include <LibGUI/Widget.h> #include <LibGfx/Bitmap.h> -#include <LibGfx/FontDatabase.h> +#include <LibGfx/Font/FontDatabase.h> #include <LibGfx/ShareableBitmap.h> namespace NotificationServer { diff --git a/Userland/Services/Taskbar/ClockWidget.cpp b/Userland/Services/Taskbar/ClockWidget.cpp index 296a5f7909..4ccc1e7361 100644 --- a/Userland/Services/Taskbar/ClockWidget.cpp +++ b/Userland/Services/Taskbar/ClockWidget.cpp @@ -10,7 +10,7 @@ #include <LibGUI/Painter.h> #include <LibGUI/SeparatorWidget.h> #include <LibGUI/Window.h> -#include <LibGfx/FontDatabase.h> +#include <LibGfx/Font/FontDatabase.h> #include <LibGfx/Palette.h> namespace Taskbar { diff --git a/Userland/Services/Taskbar/ShutdownDialog.cpp b/Userland/Services/Taskbar/ShutdownDialog.cpp index 45af703058..e2df096174 100644 --- a/Userland/Services/Taskbar/ShutdownDialog.cpp +++ b/Userland/Services/Taskbar/ShutdownDialog.cpp @@ -13,8 +13,8 @@ #include <LibGUI/Label.h> #include <LibGUI/RadioButton.h> #include <LibGUI/Widget.h> -#include <LibGfx/Font.h> -#include <LibGfx/FontDatabase.h> +#include <LibGfx/Font/Font.h> +#include <LibGfx/Font/FontDatabase.h> struct Option { String title; diff --git a/Userland/Services/Taskbar/TaskbarButton.cpp b/Userland/Services/Taskbar/TaskbarButton.cpp index 00f4c0a6af..38e1923686 100644 --- a/Userland/Services/Taskbar/TaskbarButton.cpp +++ b/Userland/Services/Taskbar/TaskbarButton.cpp @@ -10,7 +10,7 @@ #include <LibGUI/ConnectionToWindowMangerServer.h> #include <LibGUI/ConnectionToWindowServer.h> #include <LibGUI/Painter.h> -#include <LibGfx/Font.h> +#include <LibGfx/Font/Font.h> #include <LibGfx/Palette.h> #include <LibGfx/StylePainter.h> diff --git a/Userland/Services/Taskbar/TaskbarWindow.cpp b/Userland/Services/Taskbar/TaskbarWindow.cpp index bdaa045c9f..cb060b4a61 100644 --- a/Userland/Services/Taskbar/TaskbarWindow.cpp +++ b/Userland/Services/Taskbar/TaskbarWindow.cpp @@ -21,7 +21,7 @@ #include <LibGUI/Menu.h> #include <LibGUI/Painter.h> #include <LibGUI/Window.h> -#include <LibGfx/FontDatabase.h> +#include <LibGfx/Font/FontDatabase.h> #include <LibGfx/Palette.h> #include <serenity.h> #include <stdio.h> diff --git a/Userland/Services/WebContent/ConnectionFromClient.cpp b/Userland/Services/WebContent/ConnectionFromClient.cpp index 48db742020..a8e00d6df6 100644 --- a/Userland/Services/WebContent/ConnectionFromClient.cpp +++ b/Userland/Services/WebContent/ConnectionFromClient.cpp @@ -9,7 +9,7 @@ #include <AK/JsonObject.h> #include <AK/QuickSort.h> #include <LibGfx/Bitmap.h> -#include <LibGfx/FontDatabase.h> +#include <LibGfx/Font/FontDatabase.h> #include <LibGfx/SystemTheme.h> #include <LibJS/Console.h> #include <LibJS/Heap/Heap.h> diff --git a/Userland/Services/WindowServer/Compositor.cpp b/Userland/Services/WindowServer/Compositor.cpp index d8abc2dd07..926472dd6f 100644 --- a/Userland/Services/WindowServer/Compositor.cpp +++ b/Userland/Services/WindowServer/Compositor.cpp @@ -17,7 +17,7 @@ #include <AK/Memory.h> #include <AK/ScopeGuard.h> #include <LibCore/Timer.h> -#include <LibGfx/Font.h> +#include <LibGfx/Font/Font.h> #include <LibGfx/Painter.h> #include <LibGfx/StylePainter.h> #include <LibThreading/BackgroundAction.h> diff --git a/Userland/Services/WindowServer/Compositor.h b/Userland/Services/WindowServer/Compositor.h index 8a9b238fd2..d779f5d15f 100644 --- a/Userland/Services/WindowServer/Compositor.h +++ b/Userland/Services/WindowServer/Compositor.h @@ -11,7 +11,7 @@ #include <LibCore/Object.h> #include <LibGfx/Color.h> #include <LibGfx/DisjointRectSet.h> -#include <LibGfx/Font.h> +#include <LibGfx/Font/Font.h> #include <WindowServer/Overlays.h> namespace WindowServer { diff --git a/Userland/Services/WindowServer/Menu.cpp b/Userland/Services/WindowServer/Menu.cpp index 9529baab06..24bcd4810f 100644 --- a/Userland/Services/WindowServer/Menu.cpp +++ b/Userland/Services/WindowServer/Menu.cpp @@ -16,7 +16,7 @@ #include <AK/CharacterTypes.h> #include <LibGfx/Bitmap.h> #include <LibGfx/CharacterBitmap.h> -#include <LibGfx/Font.h> +#include <LibGfx/Font/Font.h> #include <LibGfx/Painter.h> #include <LibGfx/StylePainter.h> #include <LibGfx/Triangle.h> diff --git a/Userland/Services/WindowServer/Menu.h b/Userland/Services/WindowServer/Menu.h index 4052bfee2e..17cd608062 100644 --- a/Userland/Services/WindowServer/Menu.h +++ b/Userland/Services/WindowServer/Menu.h @@ -10,8 +10,8 @@ #include <AK/String.h> #include <AK/WeakPtr.h> #include <LibCore/Object.h> -#include <LibGfx/Font.h> -#include <LibGfx/FontDatabase.h> +#include <LibGfx/Font/Font.h> +#include <LibGfx/Font/FontDatabase.h> #include <LibGfx/Forward.h> #include <LibGfx/Rect.h> #include <WindowServer/Cursor.h> diff --git a/Userland/Services/WindowServer/WindowFrame.cpp b/Userland/Services/WindowServer/WindowFrame.cpp index 8a66dc84c9..cf848fa081 100644 --- a/Userland/Services/WindowServer/WindowFrame.cpp +++ b/Userland/Services/WindowServer/WindowFrame.cpp @@ -6,7 +6,7 @@ #include "ConnectionFromClient.h" #include <AK/Badge.h> -#include <LibGfx/Font.h> +#include <LibGfx/Font/Font.h> #include <LibGfx/Painter.h> #include <LibGfx/StylePainter.h> #include <LibGfx/WindowTheme.h> diff --git a/Userland/Services/WindowServer/WindowManager.cpp b/Userland/Services/WindowServer/WindowManager.cpp index 097f02d6c9..8aab665ae4 100644 --- a/Userland/Services/WindowServer/WindowManager.cpp +++ b/Userland/Services/WindowServer/WindowManager.cpp @@ -15,7 +15,7 @@ #include <AK/Vector.h> #include <LibGfx/Bitmap.h> #include <LibGfx/CharacterBitmap.h> -#include <LibGfx/Font.h> +#include <LibGfx/Font/Font.h> #include <LibGfx/StylePainter.h> #include <LibGfx/SystemTheme.h> #include <WindowServer/AppletManager.h> diff --git a/Userland/Services/WindowServer/WindowSwitcher.cpp b/Userland/Services/WindowServer/WindowSwitcher.cpp index 0243366838..f62968cf3f 100644 --- a/Userland/Services/WindowServer/WindowSwitcher.cpp +++ b/Userland/Services/WindowServer/WindowSwitcher.cpp @@ -5,7 +5,7 @@ */ #include <LibGfx/Bitmap.h> -#include <LibGfx/Font.h> +#include <LibGfx/Font/Font.h> #include <LibGfx/StylePainter.h> #include <WindowServer/Compositor.h> #include <WindowServer/Event.h> |