mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 02:55:49 +03:00
8ac0d4abe1
This allows you to view, edit, and apply changes to the system fonts.
26 lines
388 B
C++
26 lines
388 B
C++
/*
|
|
* 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();
|
|
};
|
|
|
|
}
|