mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
35 lines
568 B
C++
35 lines
568 B
C++
#pragma once
|
|
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
|
|
|
class QLabel;
|
|
class QCheckBox;
|
|
class QComboBox;
|
|
|
|
namespace chatterino {
|
|
|
|
class GeneralPageView;
|
|
class DescriptionLabel;
|
|
struct DropdownArgs;
|
|
|
|
class GeneralPage : public SettingsPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GeneralPage();
|
|
|
|
bool filterElements(const QString &query);
|
|
|
|
private:
|
|
void initLayout(GeneralPageView &layout);
|
|
void initExtra();
|
|
|
|
QString getFont(const DropdownArgs &args) const;
|
|
|
|
DescriptionLabel *cachePath_{};
|
|
GeneralPageView *view_{};
|
|
};
|
|
|
|
} // namespace chatterino
|