blob: 4bd734111e43fcfded5071e59fc501465575e738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Label.h>
#include <LibGUI/Widget.h>
namespace DisplaySettings {
class FontSettingsWidget : public GUI::Widget {
C_OBJECT(FontSettingsWidget);
public:
virtual ~FontSettingsWidget() override;
void apply_settings();
private:
FontSettingsWidget();
RefPtr<GUI::Label> m_default_font_label;
RefPtr<GUI::Label> m_fixed_width_font_label;
};
}
|