1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:07:45 +00:00

DisplaySettings: Add "Fonts" tab

This allows you to view, edit, and apply changes to the system fonts.
This commit is contained in:
Andreas Kling 2021-05-21 18:55:30 +02:00
parent c778130d63
commit 8ac0d4abe1
5 changed files with 166 additions and 0 deletions

View file

@ -0,0 +1,25 @@
/*
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Widget.h>
namespace DisplaySettings {
class FontSettingsWidget : public GUI::Widget {
C_OBJECT(FontSettingsWidget);
public:
virtual ~FontSettingsWidget() override;
void apply_settings();
private:
FontSettingsWidget();
};
}