summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/FontPicker.h
blob: 5b8e4d5b2d37659e576e0ec1e8cfeaadfea69f5e (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibGUI/Dialog.h>
#include <LibGfx/Font.h>
#include <LibGfx/Forward.h>

namespace GUI {

class FontPicker final : public GUI::Dialog {
    C_OBJECT(FontPicker);

public:
    virtual ~FontPicker() override;

    RefPtr<Gfx::Font> font() const { return m_font; }
    void set_font(const Gfx::Font*);

private:
    FontPicker(Window* parent_window = nullptr, const Gfx::Font* current_font = nullptr, bool fixed_width_only = false);

    void update_font();

    const bool m_fixed_width_only;

    RefPtr<Gfx::Font> m_font;

    RefPtr<ListView> m_family_list_view;
    RefPtr<ListView> m_weight_list_view;
    RefPtr<ListView> m_size_list_view;
    RefPtr<SpinBox> m_size_spin_box;
    RefPtr<Label> m_sample_text_label;

    Vector<String> m_families;
    Vector<int> m_weights;
    Vector<int> m_sizes;

    Optional<String> m_family;
    Optional<int> m_weight;
    Optional<int> m_size;
};

}