Chatterino
GeneralPage.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 
5 class QLabel;
6 class QCheckBox;
7 class QComboBox;
8 
9 namespace chatterino {
10 
11 class GeneralPageView;
12 class DescriptionLabel;
13 struct DropdownArgs;
14 
15 class GeneralPage : public SettingsPage
16 {
17  Q_OBJECT
18 
19 public:
20  GeneralPage();
21 
22  bool filterElements(const QString &query);
23 
24 private:
25  void initLayout(GeneralPageView &layout);
26  void initExtra();
27 
28  QString getFont(const DropdownArgs &args) const;
29 
30  DescriptionLabel *cachePath_{};
31  GeneralPageView *view_{};
32 };
33 
34 } // namespace chatterino
Definition: GeneralPage.hpp:15
Definition: Application.cpp:48
Definition: SettingsPage.hpp:49
Definition: GeneralPageView.hpp:87
GeneralPage()
Definition: GeneralPage.cpp:88
bool filterElements(const QString &query)
Definition: GeneralPage.cpp:105
Definition: GeneralPageView.hpp:81
Definition: GeneralPageView.hpp:61