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:
parent
c778130d63
commit
8ac0d4abe1
5 changed files with 166 additions and 0 deletions
25
Userland/Applications/DisplaySettings/FontSettingsWidget.h
Normal file
25
Userland/Applications/DisplaySettings/FontSettingsWidget.h
Normal 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();
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue